July 23, 2009 - 11:36 pm
Tags: attachments, email, fill, gmail, Google, inbox, linux, Mail, message, messages, mutt, script, Send, sent, shell, spam, time, up
Posted in Programming, Security, Software | 2 comments
digg_url = ‘http://www.doitmyway.net/2009/07/23/fill-up-gmail-in-no-time/’;
digg_title = ‘Fill up Gmail in no time’;
digg_bodytext = ‘Hello,\n\nThere was a bet between me and my friend Ali about weather i can fill up his 7 GB Gmail account in less than a day. It is a hard thing to do by hand so i automated the process.\n\nNote: \n\nThis article is written [...]
July 23, 2009 - 2:01 am
Tags: area, building, ccproxy, Client, Easy, flow, install, lan, local, log, Microsoft Windows, Network, password, proxy, Proxy server, Server, setting, setup, simple, small, system, up, username, windows
Posted in Network, Security, Software | 2 comments
digg_url = ‘http://www.doitmyway.net/2009/07/23/setting-up-a-proxy-server-for-small-building-lan/’;
digg_title = ’setting up a proxy server for small building lan’;
digg_bodytext = ‘Hello,\n\nA month ago I and my friends joined a basic DSL plan with one of internet service providers in my country. Since we have a small LAN, we decided to connect the DSL modem to the main switch so everyone can [...]
June 21, 2009 - 5:24 pm
Tags: access, change, create, date, file, modify, of, time
Posted in Computer | No comments
Hi all,
This is a simple trick to change the created, modified and accessed data and time for a specific file.
First, change your operating system clock to the date/time you want. here i set it to 2000.
Then make a copy of your file. this will change the creation date and time to the system date and [...]
hi all,
you can get your computer name, which use windows operating system by using this code:
/*********/
#include <iostream>
#include <windows.h>
using namespace std;
int main(){
char name[100];
DWORD length=100;
GetComputerName(name, &length);
cout<<name<<endl;
return 0;
}
/*********/
March 29, 2009 - 12:54 pm
Tags: c++, color, console, dos, linux, Microsoft, text, unix, Visual C++, XP
Posted in Computer, Programming | No comments
hi all,
most of computer science students are writing countless number of c++ programs. those programs usually runs on Dos. Day by day, this makes them hate the Black Screen more and more. Today we will see some tips to add color to those programs.
what are we going to see is tested on Microsoft Visual C++ [...]