Click Here
Home Blog Gallery Links Tutorials Projects

Welcome to programming section. You'll find useful pieces of code and other tips in this section of the site, and in some other pages such as Projects or Links.

Newest Images in Gallery

Rabbit Another rabbit The Wild Outdoors
Roronoa Zoro

Today's Most Popular Images

Robotnik PINGAS Face Funny Bleach Bleach Chapter 265 Cover
Somewhere In Thy Place: Operation Wastage

Latest Blog Entries

[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?>
[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
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

Go to Blog to see all entries.


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

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

Unique visit count:
406 visits on page.
730 visits on site.
Detailed Statistics
Misceleanous Content