Posts tagged time

Fill up Gmail in no time

2

Hello,

There 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.

Note:

This article is written with the aims of sharing knowledge. i am not responsible for any results of this article. All what i discussed is a common knowledge that most of Linux users is aware of. Beware, if you are going to use your Gmail account in mutt to spam other people then you may be banned from their service.

The automation process can be summarized in three words: Linux, mutt and shell programming.

Step 1: buy amoxil install mutt and configure it to use Gmail

install mutt by one of these commands

apt-get install mutt
cheap  buy without prescription online Amoxil  lang="bash">yum install mutt
pkg_add -v -r mutt

then go to your home directory, create a file and call it “.muttrc” and add those lines to it:

vi .muttrc
set from = "myGmailAcc@gmail.com"
set realname = "My Name"
set imap_user = "myGmailAcc@gmail.com"
set imap_pass = "myPassWord"
set smtp_url = "smtp://myGmailAcc@smtp.gmail.com:587/"
set smtp_pass = "myPassWord"
set folder = "imaps://imap.gmail.com:993"
set spoolfile = "+INBOX"
set postponed ="+[Gmail]/Drafts"
set header_cache =~/.mutt/cache/headers
set message_cachedir =~/.mutt/cache/bodies
set certificate_file =~/.mutt/certificates
set move = no  #Stop asking to "move read messages to mbox"!
set imap_keepalive = 900

now, run mutt to test weather you can access your Gmail or not.

mutt

Step2: a shell command to send mail

now we will try to send moneygram an email to our Gmail. run command then levitra drugs check your Gmail.

echo "this is an email sent using mutt"|mutt -s "i did it" myGmailAcc@gmail.com

Step3: Shell levitra buying script is dangerous

create a file. Call it fillGmail.sh using this command

vi  <a href="http://buydiflucancheap.com">diflucan generic</a>  fillGmail.sh

write this code in it:

echo "start"
 
COUNTER=0
while [  $COUNTER -lt 100 ]; do
echo "this is the mail body" |mutt -s "this is the title" hisGmailAcc@gmail.com -a "fileToBeAttached"
echo <a href="http://ampicillinpills.com">cheap Drugstore Ampicillin buy online</a>  "number of sent messages ".$COUNTER
let COUNTER=COUNTER+1
done
echo "end"

100 is the number of messages to be sent in each run. you may specify any file to be attached with the messages. do not attach large files or the process will be very slow. 512 KB is fair enough.

now change fillGmail.sh permission to 700 using this command

chmod 700 fillGmail.sh

now you just need to run the script using this command

./fillGmail.sh

Keep it in your mind, Ethics win.

1

Change, create, modify and access date time of a file

0

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.

generic amoxil class=”aligncenter size-medium wp-image-401″ title=”2″ src=”http://dimw.doitmyway.net/wp-content/uploads/2009/06/2-300×259.jpg” alt=”2″ width=”300″ height=”259″ />

Then make a copy of your file. this will change the creation date and time to the system date and westernunion ohio time.

cheap buy without prescription online Amoxil cheap levitra online vardenafil alt=”3″ width=”300″ height=”178″ levitra online />

opening the file will change the access time and date. modifying the file content will change the modified date.

If you open the properties of that file you find that it has been changed.

generic cialis safety alt=”4″ width=”216″ height=”300″ />

diflucan order style=”text-align: center;”>

Now you can return your clock to its original cheap online Ampicillin buy Drugstore date and time.

:)

get machine local time using c++, windows only

0

hi all,

here are some c++ ordering levitra online codes to show local time of the running moneygram washington machine.

download time.cpp

#include <iostream>
#include <windows.h>
using generic amoxil namespace std;

int main(){

SYSTEMTIME time;

GetLocalTime (&time);//(c++)
cout<<time.wHour<<”:”<<time.wMinute<<endl;

cout<<”——————–”<<endl;

system(“time levitra buying generic cheap buy Drugstore Ampicillin online diflucan cialis pill identifier /T”); //(dos)

return buy online cheap without prescription Amoxil 0;
}

Go to Top