Starry Night v6 on Windows 7 x64

I was looking to check for visible sky events from my current location, so I tried to install a relatively old piece of software – “Starry Night” http://www.starrynight.com/ – still the very best I ever used, and also ASCOM platform compatible http://ascom-standards.org/.

Unfortunately, the installer is not totally compatible with Windows 7 x64: it reports the install procedure to complete, when in fact it installs nothing. I was about to go and just copy the already installed version I have on Windows XP, when it ocurred to me to run the installation in “compatibility mode”. It worked!

I can NOT communicate with my terrible 2nd hand Meade telescope, but I suppose that is related with not having an old plain serial port available on the computer and the USB-to-serial adapters on the market not doing their job properly. Still, Starry Night is working and – honestly – the virtual sky is more informative, even if light years less romantic.

Battlefield 2 Windows 7 x64

If your Battlefield 2 just crashes to desktop (CtD) when launching any map, then you are probably a victim of the game’s poor installer, which causes a buffer overflow when trying to execute the file BF2VoiceSetup.EXE – related with the software’s Voice Over IP solution – but still goes on to complete with apparent success.

This is almost sure to happen on any Windows 7 x64 setup and was never addressed in any patch, including the final v1.50. In this system users are also prone to a non working “audio” options tab, which again causes CtD.

There is a workaround for playing, but not for an functioning audio tab:

(1) browse to the folder
C:\Users\admin\Documents\Battlefield 2\Profiles\0001

(2)
use notepad or any other text editor to open the file
Audio.Con

(3)
the 1st file will read
AudioSettings.setVoipEnabled 1
meaning VOIP enabled

change it to

AudioSettings.setVoipEnabled 0
meaning VOIP not enabled.

That is it.

BBC ONE HD changes

I was to watch the Canadian F1 GP qualifying broadcast, only to discover that BBC HD and BBC ONE HD have changed.

The full explanation here:
http://www.bbc.co.uk/blogs/bbcinternet/2011/06/changes_to_bbc_hd_channels_on.html

The new location here:
Satellite: Astra 2D tp.50
Frequency: 10,847MHz (vertical polarity)
Modulation: DVB-S2, QPSK
Symbol Rate: 23.0
FEC: 8/9

Most recent Google Talks videos

Health@Google Series – Reset
http://www.youtube.com/watch?v=3QgjSXCd8KM
Health@Google Series – Boosting
http://www.youtube.com/watch?v=vjnpdo_bRgU
Where Did This Code Come From
http://www.youtube.com/watch?v=yuglPicWoyo
Social Networks and Community
http://www.youtube.com/watch?v=Rh4B4m3ouRc
Predator A Visual Tracker that Learns
http://www.youtube.com/watch?v=lmG_FjG4Dy8
Large-scale Image Classification
http://www.youtube.com/watch?v=qdDHp29QVdw
Michel Beaudouin-Lafon_Lessons from
http://www.youtube.com/watch?v=-R_cQSJ0wiI
Near-Optimal Parallel Join Processing
http://www.youtube.com/watch?v=kiuUGXWRzPA
The Middle East and Its Current Political
http://www.youtube.com/watch?v=WENseeo7mvM
Racial Profiling Analysis
http://www.youtube.com/watch?v=Oot0BOaQTZI
Self-Publishing A Googler’s Journey
http://www.youtube.com/watch?v=dJBKoEiy30U
Oakland International High School
http://www.youtube.com/watch?v=UsW-0U348Lc
IMug Mobile App Localization
http://www.youtube.com/watch?v=ujONJmjGRmY
Bufferbloat Dark Buffers in the Internet
http://www.youtube.com/watch?v=qbIozKVz73g
Heath@Google Series When Stress
http://www.youtube.com/watch?v=MVOm9TwM19A
Video Games and the Future of Learning
http://www.youtube.com/watch?v=nit_pSerKtY
How to Create World Peace and Silicon
http://www.youtube.com/watch?v=pVAwlMe7lEo

How to make WordPress accept any file type upload

Just edit the wp-includes\functions.php file source code and add your type to the valid types array.

On its current 3.1.3 version, the relevant part of the functions.php file is at line 2536…

For example, for RAR files, search for something like

‘wp|wpd’ => ‘application/wordperfect’,

and ADD the following line of code:

// other formats of your choice
‘rar’ => ‘application/x-rar-compressed’,< /STRONG >

A mitochondrial match of mine

This is wonderful! Being a FTDNA subscriber
http://www.familytreedna.com/
and a NG’s Genographic contributor
https://genographic.nationalgeographic.com/genographic/index.html
I received a message from a mitochondrial match of mine!

This is not my first mitochondrial match, but this time there are many details. I think I’ll restart the hunt for my ancestors.

iRacing : one solution to the game won’t start problem

iRacing installs a local server, running as a Windows service, that commands the game execution. The server is interacted with by regular localhost http calls, e.g.

http://127.0.0.1:32034/gotesting?local=yes&launch=yes&customerid=YourCustomerId

appended with other parameters that for example identify the track and validate the session call, with all calls done by the official members’ site at http://members.iracing.com/

Unfortunately, in these days of permanent cyber security red alert, the hardware and/or software that users have, can cause the game to NOT launch at all, for multiple reasons, the most basic being a firewall blocking the request.

I was a victim of the “game won’t start” problem, but because of a less trivial issue, related to my network configuration. Basically, when more than one Internet access is available, the user must make sure that:

- iRacing traffic is always routed by the same access;
- if there is a chain of devices between the Internet access device and the [router] device directly connecting to the PC clients, the proper port forwarding rule must be set in place.

In my case,

(1) since the first device that the iRacing servers connect to is NOT the router that indeed connects to the iRacing PC clients, that first device had to configured to do a port forward to the second device.

I found that iRacing local server is always listening on port 32034, so my forward rule, set on the device with direct connection to the desired Internet access, is doing a “single port forward rule” for UDP traffic from port 32034 to the IP address of the second device, e.g.

single port forward all UDP traffic from/to port 32034 to the device at IP <the local network IP address of the device that connects directly to the iRacing PC clients>

And that did it for me.

(2) At a point, I was forcing the clients’ end router – which supports multiple WANs – to route all traffic to iRacing servers to the desired WAN, of more than one available:

the iRacing North America servers are in the range
69.25.205.241 .. 69.25.205.249

But this never worked properly and was more complicated than (1), which is a solution, alone.

One elegant solution for bulk image conversion

I was looking for a tool to do bulk images conversion, e.g. many .PNG files to .JPG.

I considered http://www.command-line-imageconverterplus.com/ but it is NOT free.

Then I found http://sourceforge.net/projects/imgbconvert/. Super simple and elegant. It just does the job, for free. Great!

Yet one more laughable phishing message

I just received a laughable e-mail phishing message: it is written in such bad Portuguese that it is hard to believe that an actual person wrote it – it feels like a very bad automatic translation of some original.

It starts with “querido costureiro”, which I presume was the sender’s translation attempt of “dear costumer”. But “dear costumer” translates to “caro cliente”, while “querido costureiro” actually means something more like “loveable tailor”.

ZScreen for video game capturing

I use ZScreen for regular desktop snapshots, but it also works fine for in-game captures on some games, Crysis 2 included. But not rFactor.

http://code.google.com/p/zscreen/

« Newer Entries - Older Entries »