Scratch Programming: Best Programming Language for Kids

Great pedagogy for programming and even mathematics.

Developed by MIT, Scratch is the current favorite programming tool of mine for teaching programming to much younger children.

It used to be Logo. Which I think is still a good teaching tool.

But who could beat MIT. It's easy to pick up, drag and drop, fun.

Though unlike other subjects' tutorials, Scratch's tutorial is one not easy to find online at this time. A good website for learning Scratch: http://learnscratch.org/.

There is a book promoted by Slashdot (one could browse through its rich comments): Super Scratch Programming Adventure!, too bad there isn't a kindle version for android phone at this time. The promo video is very promising. I will just put this in my wishlist, until I finish reading another scratch book which I have just requested from the Queens Library: Scratch Programming for Teens.

Posted in News, Technical | 1 Comment

Barbaric Police Act in China

First it was the Indians, with the rape crime (though Africa responded they have more such cases but hidden from public), and now in China...ever since the push by many younger generation activists on freedom of speech.

"Undercover cops" dumped student into unknown van after he talked to a German reporter.

I think the liberal press should not be too surprised at this sort of things in China. That means that they should be even more prepare to grab special bonus scenes such as this after the student interview.

The reasons India and China are corrupt at this level is due to 1. immense ego, 2. xeno-hate (not xenophobia).

And the reason that motivates the authority to continue and allow such acts is because of borders. This prevents other countries to take justice "into their own hands" which the local perpetrators may accuse them of.

Posted in News | Leave a comment

New MS Access Expressions (VBA)

Tech on the Net is a good resource. Dsum is a useful function:

In Microsoft Access, the DSum function returns the sum of a set of numeric values in a specified set of records (or domain). DSum ( expression, domain, [criteria] )

Doing work for NYGC's database, I almost got stuck with a null problem (Runtime error 94, invalid use of null) while using DSum. Problem solved not with IIf Null, but with another function Nz: Nz function lets you return a value when a variant is null. Nz ( variant, [ value_if_null ] )

And with form properties using combo dropdown lists/boxes with multiple columns of a table but showing just one field that's usually default to the primary index column (or retrieving data from table that has primary index which becomes the main reference point for the other field), but the column is the intended object, use: Me.YourComboBoxName.Column(x) where x is the column number (from 0 to *) of the table sourced.

Posted in Technical | Leave a comment

The Insider Movements

Those who do not profess to public their faith in Christ are considered as "Insiders". These such as Gandhi, and those in this article, inwardly follow Christ from His teachings to even believing His divine lordship, but they do not outwardly call themselves Christians.

The reasons are plenty: Political, fear, etc.

Instead of forcing religion on people, my answer to this confusion is Matthew 20:32. Christ's warning against those who would drag our Lord into their own shyness and cowardice.

Posted in News, Theologization | Leave a comment

Display Driver ATIKMDAG Stopped Responding and Has Recovered

Thus far the best solution for this "Display driver stopped responding and has recovered", atikmdag in particular (flash video playing slowly, error message box shows up when flash video runs in full screen for a while) is to disable Hardware Acceleration in settings by right clicking flash window.

Posted in Technical | Leave a comment

Exporting MS Access data into MS Word

Finally, there is an easy way(filling MS Word fields with Access data) in Access using VBA scripting:

Private Sub cmdPrint_Click()
'Print customer slip for current customer.
Dim appWord As Word.Application
Dim doc As Word.Document
'Avoid error 429, when Word isn't open.
On Error Resume Next
Err.Clear
'Set appWord object variable to running instance of Word.
Set appWord = GetObject(, "Word.Application")
If Err.Number <> 0 Then
'If Word isn't open, create a new instance of Word.
Set appWord = New Word.Application
End If
Set doc = appWord.Documents.Open("C:\WordForms\CustomerSlip.doc", , True)
With doc
.FormFields("fldCustomerID").Result = Me!CustomerID
.FormFields("fldCompanyName").Result = Me!CompanyName
.FormFields("fldContactName").Result = Me!ContactName
.FormFields("fldContactTitle").Result = Me!ContactTitle
.FormFields("fldAddress").Result = Me!Address
.FormFields("fldCity").Result = Me!City
.FormFields("fldRegion").Result = Me!Region
.FormFields("fldPostalCode").Result = Me!PostalCode
.FormFields("fldCountry").Result = Me!Country
.FormFields("fldPhone").Result = Me!Phone
.FormFields("fldFax").Result = Me!Fax
.Visible = True
.Activate
End With
Set doc = Nothing
Set appWord = Nothing
Exit Sub
errHandler:
MsgBox Err.Number & ": " & Err.Description
End Sub

Posted in Technical | Leave a comment

Olber's Paradox

Where under the assumption of an infinite universe with infinite stars, the sky should always be "infinitely" bright.

The answer to this by my coursera professor S. G. Djorgovski in Galaxies and Cosmology, master of hypnosis, is that the universe is finite. Edgar Allan Poe's answer.

Posted in Astronomy | Leave a comment

Gun Advocates the Civilized

Watching Alex Jones and Piers Morgan on the CNN Clip, I can only say: "So the barbarian is the gun advocate?".

Posted in News | Leave a comment

The Incarnation of Christ (Person)

(This entry shares with my other entry and is the main entry of focus)

Before Christmas, there seems to have much talk of this, between Alex, Dr. Tong, East, West.

It is orthodox belief, that Christ is both fully God and fully Man. As man he is vulnerable, limited, flesh, etc.

However, Western theology rarely speaks of Christ being created. Hence the debates arose. As much as the Nestorians and Apollinarianism were wrong in Christology, the God-Man duality has attracted other debates, like that of Witness Lee's and subsequently Alex and Tong.

I myself have not looked into this, so I would place this entry under "Projects" category.

Some references:

http://www.agapebiblestudy.com/documents/heresies.htm

 

Posted in Projects, Theologization | 37 Comments

Free wifi from Downtown Manhattan

Chelsea has already started. Bloomberg is certainly working hard.

The WiFi network runs from 15th to 19th Street and from Eighth to Tenth Avenue, including about a two-block stretch of the High Line. It also extends into several of the neighborhood’s other public spaces.”

That includes the Chelsea Triangle at 14th Street and Ninth Avenue as well as public plazas in the Meatpacking District and 14th Street Park at Tenth Avenue.

There is also plan to extend this to 34th street.

Posted in News, Technical | Leave a comment