Category: vbscript
Scripting in Windows using VBScript or Javascript for WSH (Windows Scripting Host) is so convenient. You could write scripts and save them using notepad or any other text-editor as …
To run external program on local computer using WSH (Window Scripting Host), you can create an object WScript.Shell and invoke its Runmethod, e.g.: Dim Obj Set Obj = CreateObject("WScript.Shell") Obj.Run "notepad.exe" To …
Most keyboards for famicom clones are not designed for games, but they are made for programming BASIC e.g. NES F-Basic. The BBG Famicom clone (as described here) is an …
March 10, 2014
6502, 8 bit, algorithms, brute force, code, console, emulator, famicom, hardware, implementation, math, Nintendo Entertainment System, programming languages, tools / utilities, vbscript
The other day I tried computation of on 8-bit Famicom Clone SB-2000, which can be detailed here, here, and here. After I got BBG Famicom Clone and here, I …
Monte-Carlo algorithm is a generalized method that can be used in many applications. It is a randomize approach. To compute the mathematics constant , we can use the method …