Tag ‘hidden’ » Archiv


8

Animated DIV slide

September
9

I’ve been working with jQuery quite a lot over the past week to get the commentluv settings page up and running and get the new commentluv plugin working as promised. It always amazes me at how incredibly easy it is to get it to do cool things with a web page.

Not just Ajax things, simple effects that allow you to take a page from a digital piece of paper to a digital pop-up book! Click here for an example..

Look at me!

Send me back up

Example explained

(you should have the jQuery library loaded in the head of your document, my wordpress already does this but if yours doesn’t you’ll have to put a line like this in the head of your page) read more… »

Blog News, Code, Wordpress


Comments Off

How to hide a .rar in a jpeg file

September
8

rar in a picHere’s some good old instructions that I found to hide a .rar file in a jpeg so that you can open it as either…

  1. Get your .rar file and put it in the same directory as a jpeg picture (c:\hidden is a good place to put it)
  2. Open up a command prompt by clicking Start/Run and typing “cmd” and click ok.
  3. In the DOS window, type “cd c:\hidden” to navigate to the folder
  4. Type “copy /b input.jpg + input.rar ouput.jpg
    (where input jpeg is the picture you want to show, input.rar is the file you want to hide and output.jpg will be the name of the new combined file)

That’s it! You can double click the new file and it will show it as a picture, BUT… if you open it with winrar, you will see the files contained. The picture above has a secret file in it, right click and save picture to your computer and then open it with Winrar to see what I put in there!

Code