Click Here More Stuff Here
Home Blog Gallery Links Tutorials Projects
Capacitor tester 2012-11-27 17:52

You can check many capacitors with a handy tool creaded from this schematic.
[PHP] Curl: Get contents of a remote file and output it to browser 2012-10-05 14:13
Using this script you can get a file to server and send it to the browser.
Quote:
<?php//get the file (e.g. image) and output it to the browser$ch = curl_init(); //open curl handlecurl_setopt($ch, CURLOPT_URL, $_GET['url']); //set an urlcurl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //do not output directly, use variablecurl_setopt($ch, CURLOPT_BINARYTRANSFER, 1); //do a binary transfercurl_setopt($ch, CURLOPT_FAILONERROR, 1); //stop if an error occurred$file=curl_exec($ch); //store the content in variableif(!curl_errno($ch)){    //send out headers and output    header ("Content-Type: ".curl_getinfo($ch, CURLINFO_CONTENT_TYPE)."");    header ("Content-Length: ".curl_getinfo($ch, CURLINFO_CONTENT_LENGTH_DOWNLOAD)."");    echo $file;} else echo 'Curl error: ' . curl_error($ch);curl_close($ch); //close curl handle?>
Warm Days 2011-07-17 12:53
In recent days you'd probably seen a quite high temperatures outside the window. At least in the city where I'm living it was surely hot.
But that's not a problem. There're alot of ways to spend time at home, more even when internet is fast and capable enough.

Alot of things can be found on Youtube and DeviantArt, and using Google more stuff could be found.

More content I'll probably add later, so that blog and the site would not feel abandoned after a some time.
Enabling Virtual Memory in BartPE with XPE Plugin 2011-07-03 16:02
Some may ask What is BartPE... It's a Windows LiveCD that's based on Windows PE built with a program called PeBuilder.
If you got a PE Builder, get a plugin called XPE to get explorer shell, (you may also nead other plugins for other programs you may use). For XPE, look into http://oss.netfarm.it/winpe/
Once you built BartPE (with XPE included) you will see a desktop environment very similar to preinstalled windows (screenshot below).

Read More...
Using TweakUI to disable autorun on Flash Drives 2011-06-28 13:30
To disable autorun on certain types of removable drives, You nead to get a TweakUI freeware utility from Microsoft.

When you start this program goto Section [Program tweak list]=>[My Computer]=>[Autoplay]=>[Types] and uncheck to disable certain options for added security...


For more tips look in other blog posts or visit later...
[C++] Adding a program to Startup 2011-06-16 16:10
A nice c++ example how to add a program to startup is here. All you nead to add this to your code. it utilizes windows api btw. The example is below.
Quote:
HKEY hkey;
char szBuf[] = "C:\\Windows\\notepad.exe";
RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Microsoft\\Windows\\Currentversion\\Run", 0, KEY_SET_VALUE, &hkey);
RegSetValueEx (hkey, "notepad.exe", 0, REG_SZ, (LPBYTE) szBuf, strlen(szBuf) + 1);
RegCloseKey(hkey);
full code below.
http://pastebin.com/LSHzGJE6
Carmageddon Reincarnation Announced 2011-06-01 15:49
As you read from the title it's a true news for all Carmageddon fans. But recently due to heavy visitors traffic the site was horribly down. It's announded by Stainless Games it seemz it will be the hell of a total remake or alike. Don't forget to check carmageddon.com, you'll find interesting things and a way more :D
There goez some graphix for you :D
Video: Masm32 Hacks: Create an AutoTyper for Notepad 2011-05-30 16:55

In this video you will see how to write a nice hacking program using masm32 assembler. All you need to get it from masm32.com and use some capable text editor to edit source files. You can set or point the editor option of compilation to masm compiler there out.
This is a first implementation of youtube on my site so this gotta do alot :D
The Three Skulls: Carmageddon.com Grand Opening 2011-05-28 16:32
As the title says it will be grand opening of a new site and a publicity for a new game from Carmageddon series. The site will open in the three days from now. The domain is registered by square-enix, it's the company who bought another one that had rights on it. So it seemz taht there will be next carmageddon crash course soon :D
Check out carmageddon.com site, there's a tree skulls image as above and a countdown counting to it's possible opening :D
Running Process as System user in Windows XP 2011-04-27 11:07
Have you ever wondered how to run a program on SYSTEM account on Windows XP? It's pretty easy. For first you nead an account with an Administrator privileges running on your desktop. Next, open command line and type
Quote:
at time /interactive cmd.exe
where time is your current system time plus one minute (e.g. 11:08) and cmd.exe is a program that currently will run. On this way you can run any program with system privilages without any fuss. Happy system hacking :)

Add a Comment

Get Your IP Instantly
Name:
Enter the text from the image below to the text field next to it (text is case sensitive):
Captcha
Email:

Name:
Password:

Enter Captcha (Case Sensitive):
Captcha


Register
English
Lietuviškai

RSS Feed
Main Content
Animation
Carmageddon
Programming
Technology
Electronics
Gaming
Linux
Anything
Site News

Unique visit count:
207 visits on page.
1175 visits on site.
Detailed Statistics
Misceleanous Content