If your modals are off, be sure to set width & height of container manaully:
$.modal({containerCss { width:200, height:200 }});
Check here for more options: http://www.ericmmartin.com/projects/simplemodal/
Art, Science & Philosophy
If your modals are off, be sure to set width & height of container manaully:
$.modal({containerCss { width:200, height:200 }});
Check here for more options: http://www.ericmmartin.com/projects/simplemodal/
I learned this technique from “4 Hour Workweek” by Tim Farris. I thought it was an amazing idea. I usually make backup photocopies of important documents like passport or driver’s license. Farris recommends taking digital photos of your documents and then storing them on online backup site especially when you travel. Of course, since these are sensitive documents, you will want to encrypt them before storing online or even on your own computer. This way if you travel a lot and lose your ID or some other document, you wil have quicker access to photo of it which may help you get a new one much faster.
I found it in one of my backup, I figure I will repost on new blog.
I took these steps to set up Pentaho BI on Windows Box.
base-url
http://0.0.0.0:8080/pentaho/
I always used xcopy for my backing up my files. However, I always forget to backup my backup script. So after fresh install of Windows XP, I sat down to re-write my script. Then I figured that there got to be some open source simple command line backup script, somewhere. That’s when I found out this excellent vbs script for backing up in Windows.Its very easy to use and alter. Author has extensively documented it.
So easy to ping in .net…
using System.Net.NetworkInformation;
private string pingHost(String hostip)
{
Ping pingSender = new Ping();
PingReply reply = pingSender.Send(hostip);
String str;
if (reply.Status == IPStatus.Success)
{
str = “”. Host is up”";
str += “”, Address: “” + reply.Address.ToString();
str += “”, RoundTrip time: “” + reply.RoundtripTime + “” ms.”";
}
else
str = “”. Host is down.”";
return str;
}
I am moving posts from my old blog and saw this. Its an old game but I thought someone might still be playing this game and may want to use this trick.
Open up AppInit.Jam in any hex editor. Search for “”Nudity”". It should say something like Nudity Setting (Change to 1 for European version): 0. Just change the value to 1 and start the game. Censor bars will be gone. Have fun!
Be careful running this from /.
I usually run it from under a partition which is running out of space.
du -g | sort -n -r