Posts

Ouya

Image
I don't tend to buy anything I can't develop on. That means I don't see myself buying any Apple, Sony, or Nintendo products in the near future. It may be a strange justification but my purchase of the Ouya was two fold in that I can play it and program for it. I've been playing with it for a week or two and I like it quite a bit. Naturally there are things that are wrong with it and things that are right. I don't want to rehash the things that others are whining about much so I won't. The only problem I have had with it as a player is when I'm playing the Nintendo 64 emulator and playing Mario 64. The analog stick doesn't always register in the center so Mario tends to do that tiptoe thing like the stick is off center a tiny bit. That's about it. I think that is a hardware problem and not the emulator developer's fault. I've mitigated that a little bit by calibrating that stick slightly off center in the direction Mario try's to walk....

Square Mile Update

http://flatank.blogspot.com/2013/06/super-metroid.html Go look if you are interested. 19 Oct - storyline control mechinism 21 Oct - made the transition between a man and a suited man that is smoother and with a nice flash of light. Tomorrow night - autozoom for boss battles. I may work on the first boss also.

Gah! My Laptop screen is cracked!

Image
I got it that way from a client whose son got mad at it and punched it- It was spontaneously shutting down and he lost his temper. My gain! After removing the ten thousand screws that Toshiba used to hold that thing together, I took the motherboard out to the garage to spend some quality time with the air compressor. This time was used to remove the rug of shmegma that was jammed in the fins of the cpu cooler causing it to overheat. On reassembly, I purposely omitted the reinstall of the screen and viola! A headless laptop! Wee! See picture below!

Raspberry Pi

Image
I got my Raspberry Pi last week. I ordered the clear case with it. It looks like this all put together: Fortuitously, I had an 8 gig sd card laying around to put in it as it won't boot without one. I downloaded Wheezy Raspbian and installed it on the sd with Win32 Disk Imager . I also had one of these laying around: Logitech Wireless Touch Keyboard K400 It's nice because as you can see in the first picture, you only have 2 built in usb ports and that keyboard has a mousepad on it. I didn't want to have my Pi tethered to router with a cat5 cable so I must use a usb wifi dongle. I plugged into my tv with an rca cable, powered it with one of my cellphone chargers, and booted it. After I logged in and started the x window server, I got this: I was not impressed. It looked like a toy and the pixels were jittery. Even so I tried to get a usb wifi adapter working and failed. I gave up for the night and ordered an Edimax ew-7811un at my friend's suggestion be...

Microsoft Works 7.0 Calender Data File

Image
Years ago, on my wife's last computer, I installed Microsoft Works 7.0 specifically for the calender. It turned out to be the best one for her to use as it was nice and simple and would display a pop up for appointments. Outlook does this but it must be open where the Works calender with automatically run on boot to remind you to say.. pay your cellphone bill. After several times of repairing her laptop using the easy bake method, we have begun to lose trust that that computer will continue to run. So the calender file had to be transferred over. Between versions 7 and 8 Microsoft changed the way the appointments were saved from the mswkscal.wcd file to an .ics I believe. Anyways, finding how to transfer the appointments to a new computer was difficult. The files are here: c:\ProgramData\Microsoft\Works\ Just grab that whole folder and put it in the same place on the new computer. Merely searching for the file mswkscal.wcd may yield nothing as that file is hidden. You wil...

Hail of Gunfire: Marine

Image
Hail of Gunfire - except with boats! Do not download if you don't like hard games. The upgrades will help you survive. On Google Play

Lua

Image
For a project I'm working on, I'm learning Lua and I need to strengthen my Linux fu. The "Hello World" that I use for new languages is a count to a million. I use this because I have to have an output and a loop and it shows the speed of the language. In this case, I also included os.clock() which returns the time in seconds since the script started. Here is the script: for n=1,1000000 do print(n,os.clock()) end I named it script.lua in Windows you just double click it(assuming you have Lua already installed) It opens in what looks like a command prompt, after the script is done the window shuts immediately so you don't have time to read all the magical numbers. I added another loop and variable to keep it on the screen long enough for me to ogle it. That looks like this: x=os.clock() for o=1,10000000 do print(x,os.clock()) end In Linux it's a bit more complicated to run it. You type this into a terminal:  lua -i script.lua and it runs right in ...