Haptics>sense of technology!

WELCOME

HELLO! !!

Wednesday, November 24, 2010

Convert an .EXE to a .JPEG

Well there have been many tutorials on doing this,but i believe this tutorial is really good.Its not done by,i just edited it.

1. Firstly, create a new folder and make sure that the options 'show hidden files' is checked and ?hide extensions for
known file types? is unchecked. Basically what u need is to see hidden files and see the extension of all your files on
your pc.

2. Paste a copy of your server on the new created folder. let's say it's called server.exe
(that's why you need the extension of files showing, cause you need to see it to change it)

3. Now you?re going to rename this server.exe to whatever you want, let?s say for example picture.jpeg

4. Windows is going to warn you if you really want to change this extension from exe to jpeg, click YES.

5. Now create a shortcut of this picture.jpeg in the same folder.

6. Now that you have a shortcut, rename it to whatever you want, for example, me.jpeg.

7. Go to properties (on file me.jpeg) and now you need to do some changes there.

8. First of all delete all the text on field START IN and leave it empty.

9. Then on field TARGET you need to write the path to open the other file (the server renamed picture.jpeg) so u
have to write this: C:\WINDOWS\system32\cmd.exe /c picture.jpeg

10. The last field, c picture.jpeg is always the name of the first file. If you called the first file soccer.avi you
gotta write C:\WINDOWS\system32\cmd.exe /c soccer.avi got it?

11. So what you?re doing is when someone clicks on me.jpeg, a cmd will execute the other file picture.jpeg and the
server will run.

12. On that file me.jpeg (shortcut), go to properties and you have an option to change the icon.
click that and a
new window will pop up and u have to write this:
%SystemRoot%\system32\SHELL32.dll . Then press OK.

13. You can set the properties HIDDEN for the first file (picture.jpeg) if you think it?s better to get a connection
from someone.



14. But don?t forget one thing, these 2 files must always be together in the same folder and to get connected
to someone they must click on the shortcut created not on the first file. So rename the files to whatever you want
considering the person and the knowledge they have on this matter.

15. For me for example I always want the shortcut showing first so can be the first file to be opened.
So I rename the server to picture2.jpeg and the shortcut to picture 1.jpeg. This way the shortcut will show up first.
If you set hidden properties to the server (picture.jpeg) then u don?t have to bother with this detail but I?m warning
you, the hidden file will always show up inside of a zip file or rar.

16. So the best way to send these files together to someone is compress them into zip or rar.

17. inside the RAR or ZIP file you can see the files properties and even after all this work you can see that the
shortcut is recognized like a shortcut but hopefully the person you sent this too doesn?t know that and is going to
open it.
Posted by Unknown at Wednesday, November 24, 2010 0 comments
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

HTTP Error Codes and what they mean


Web servers will use the following Error Codes when something goes awry. Knowing what they mean enables you to fix the problem, or create custom error pages.

The status codes are returned to the client making the request (typically an Internet Browser) and also recorded in the server's log file. Theses error codes are encoded into decimal ranges:

Error Code Range Type of Error Code Error Code Range Type of Error Code 100 to 199 Informational status codes, rarely used - and generally only written to server logs. 200 to 299 Successful, only 200 frequently used - and generally only written to server logs. 300 to 399 Warning - but the request may still be satisfiable. 400 to 499 Client Error, the request was invalid in some way. 500 to 599 Server Error, the server could not fulfil the (valid) request.

HTTP Error 100

Continue. Not really an "error", this HTTP Status Code means everything is working fine.

HTTP Error 101

Switching Protocols. Again, not really an "error", this HTTP Status Code means everything is working fine.

HTTP Error 200

Success. This HTTP Status Code means everything is working fine. However, if you receive this message on screen, obviously something is not right... Please contact the server's administrator if this problem persists. Typically, this status code (as well as most other 200 Range codes) will only be written to your server logs.

HTTP Error 201
Created. A new resource has been created successfully on the server.

HTTP Error 202
Accepted. Request accepted but not completed yet, it will continue asynchronously.

HTTP Error 203

Non-Authoritative Information. Request probably completed successfully but can't tell from original server.
HTTP Error 204

No Content. The requested completed successfully but the resource requested is empty (has zero length).

HTTP Error 205

Reset Content. The requested completed successfully but the client should clear down any cached information as it may now be invalid.

HTTP Error 206

Partial Content. The request was canceled before it could be fulfilled. Typically the user gave up waiting for data and went to another page. Some download accelerator programs produce this error as they submit multiple requests to download a file at the same time.

HTTP Error 300

Multiple Choices. The request is ambiguous and needs clarification as to which resource was requested.

HTTP Error 301

Moved Permanently. The resource has permanently moved elsewhere, the response indicates where it has gone to.

HTTP Error 302

Moved Temporarily. The resource has temporarily moved elsewhere, the response indicates where it is at present.

HTTP Error 303

See Other/Redirect. A preferred alternative source should be used at present.

HTTP Error 304

Not Modified. The server has identified from the request information that the client's copy of the information is up-to-date and the requested information does not need to be sent again.

HTTP Error 305

Use Proxy. The request must be sent through the indicated proxy server.

HTTP Error 307

Temporary Redirect The resource has temporarily moved elsewhere, the response indicates where it is at present. Client should still use this URL.

HTTP Error 400

Bad Request. Due to malformed syntax, the request could not be understood by the server. The client should not repeat the request without modifications. Please contact the server's administrator if this problem persists.

HTTP Error 401.1

Unauthorized: Logon Failed. This error indicates that the credentials passed to the server do not match the credentials required to log on to the server. Please contact the Web server's administrator to verify that you have permission to access the requested resource.

HTTP Error 401.2

Unauthorized: Logon Failed due to server configuration. This error indicates that the credentials passed to the server do not match the credentials required to log on to the server. This is usually caused by not sending the proper WWW-Authenticate header field. Please contact the Web server's administrator to verify that you have permission to access to requested resource.

HTTP Error 401.3

Unauthorized: Unauthorized due to ACL on resource. This error indicates that the credentials passed by the client do not have access to the particular resource on the server. This resource could be either the page or file listed in the address line of the client, or it could be another file on the server that is needed to process the file listed on the address line of the client. Please make a note of the entire address you were trying to access and then contact the Web server's administrator to verify that you have permission to access the requested resource.

HTTP Error 401.4

Unauthorized: Authorization failed by filter. This error indicates that the Web server has a filter program installed to verify users connecting to the server. The authentication used to connect to the server was denied access by this filter program. Please make a note of the entire address you were trying to access and then contact the Web server's administrator to verify that you have permission to access the requested resource.

HTTP Error 401.5

Unauthorized: Authorization failed by ISAPI/CGIapp. This error indicates that the address on the Web server you attempted to use has an ISAPI or CGI program installed that verifies user credentials before proceeding. The authentication used to connect to the server was denied access by this program. Please make a note of the entire address you were trying to access and then contact the Web server's administrator to verify that you have permission to access the requested resource.

HTTP Error 403.1

Forbidden: Execute Access Forbidden. This error can be caused if you try to execute a CGI, ISAPI, or other executable program from a directory that does not allow programs to be executed. Please contact the Web server's administrator if the problem persists.

HTTP Error 403.2

Forbidden: Read Access Forbidden. This error can be caused if there is no default page available and directory browsing has not been enabled for the directory, or if you are trying to display an HTML page that resides in a directory marked for Execute or Script permissions only. Please contact the Web server's administrator if the problem persists.

HTTP Error 403.3

Forbidden: Write Access Forbidden. This error can be caused if you attempt to upload to, or modify a file in, a directory that does not allow Write access. Please contact the Web server's administrator if the problem persists.

HTTP Error 403.4

Forbidden: SSL required. This error indicates that the page you are trying to access is secured with Secure Sockets Layer (SSL). In order to view it, you need to enable SSL by typing "HTTPs://" at the beginning of the address you are attempting to reach. Please contact the Web server's administrator if the problem persists.

HTTP Error 403.5

Forbidden: SSL 128 required. This error message indicates that the resource you are trying to access is secured with a 128-bit version of Secure Sockets Layer (SSL). In order to view this resource, you need a browser that supports this level of SSL. Please confirm that your browser supports 128-bit SSL security. If it does, then contact the Web server's administrator and report the problem.

HTTP Error 403.6

Forbidden: IP address rejected. This error is caused when the server has a list of IP addresses that are not allowed to access the site, and the IP address you are using is in this list. Please contact the Web server's administrator if the problem persists.

HTTP Error 403.7

Forbidden: Client certificate required. This error occurs when the resource you are attempting to access requires your browser to have a client Secure Sockets Layer (SSL) certificate that the server recognizes. This is used for authenticating you as a valid user of the resource. Please contact the Web server's administrator to obtain a valid client certificate.

HTTP Error 403.8

Forbidden: Site access denied. This error can be caused if the Web server is not servicing requests, or if you do not have permission to connect to the site. Please contact the Web server's administrator.

HTTP Error 403.9

Access Forbidden: Too many users are connected. This error can be caused if the Web server is busy and cannot process your request due to heavy traffic. Please try to connect again later. Please contact the Web server's administrator if the problem persists.

HTTP Error 403.10

Access Forbidden: Invalid Configuration. There is a configuration problem on the Web server at this time. Please contact the Web server's administrator if the problem persists.

HTTP Error 403.11

Access Forbidden: Password Change. This error can be caused if the user has entered the wrong password during authentication. Please refresh the page and try again. Please contact the Web server's administrator if the problem persists.

HTTP Error 403.12

Access Forbidden: Mapper Denied Access. Your client certificate map has been denied access to this Web site. Please contact the site administrator to establish client certificate permissions. You can also change your client certificate and retry, if appropriate.

HTTP Error 403.13

Client certificate revoked: The page you are trying to view requires the use of a valid client certificate. Your client certificate was revoked, or the revocation status could not be determined. The certificate is used for authenticating you as a valid user of the resource. 

HTTP Error 403.14

Directory listing denied: This Virtual Directory does not allow contents to be listed.

HTTP Error 403.15

Client Access Licenses exceeded: There are too many people accessing the Web site at this time.

HTTP Error 403.16

Client certificate untrusted or invalid: The page you are trying to view requires the use of a valid client certificate. Your client certificate is untrusted or invalid. The client certificate is used for authenticating you as a valid user of the resource.

HTTP Error 403.17

Client certificate has expired or is not yet valid: The page you are trying to view requires the use of a valid client certificate. Your client certificate has expired or is not yet valid. The client certificate is used for identifying you as a valid user of the resource.

HTTP Error 404

Not Found: The Web server cannot find the file or script you asked for. Please check the URL to ensure that the path is correct. Please contact the server's administrator if this problem persists.

HTTP Error 404.1

Web site not found. (You can probably change the wording to read "Web site" instead of "Web server". The Web site you are looking for is unavailable due to its identification configuration settings.)

HTTP Error 405

Method Not Allowed: The method specified in the Request Line is not allowed for the resource identified by the request. Please ensure that you have the proper MIME type set up for the resource you are requesting. Please contact the server's administrator if this problem persists.

HTTP Error 406

Not Acceptable: The resource identified by the request can only generate response entities that have content characteristics that are "not acceptable" according to the Accept headers sent in the request. Please contact the server's administrator if this problem persists.

HTTP Error 407

Proxy Authentication Required: You must authenticate with a proxy server before this request can be serviced. Please log on to your proxy server, and then try again. Please contact the Web server's administrator if this problem persists.

HTTP Error 408

Request Time-Out. The client did not send a request within the required time period.

HTTP Error 409

Conflict. There is an internal conflict of access to the resource. Please contact the server's administrator if this problem persists.

HTTP Error 410

Gone. The requested resource used to be on the server but is no longer available. Any robot seeing this response should delete the reference from its information store.

HTTP Error 411

Length Required. The request requires the Content-Length HTTP request field to be specified.

HTTP Error 412

Precondition Failed: The precondition given in one or more of the Request-header fields evaluated to FALSE when it was tested on the server. The client placed preconditions on the current resource meta-information (header field data) to prevent the requested method from being applied to a resource other than the one intended. Please contact the Web server's administrator if the problem persists.

HTTP Error 413

Request Entity Too Large. The URL is too long (possibly too many query strings?).

HTTP Error 414

Request-URI Too Long: The server is refusing to service the request because the Request-URI is too long. This rare condition is likely to occur only in the following situations:
  • A client has improperly converted a POST request to a GET request with long query information.
  • A client has encountered a redirection problem (for example, a redirected URL prefix that points to a suffix of itself).
  • The server is under attack by a client attempting to exploit security holes present in some servers using fixed-length buffers for reading or manipulating the Request-URI.
Please contact the Web server's administrator if this problem persists.

HTTP Error 415

Unsupported Media Type. The server does not support the resource type requested. Frequently found when attempting to serve up content which may require a plug-in.

HTTP Error 416

Requested Range Not Satisfiable. The portion of the resource requested is not available or out of range.

HTTP Error 417


Expectation Failed. The Expect specifier in the HTTP request header can not be met.

HTTP Error 500


Internal Server Error: The Web server is incapable of performing the request. Please try your request again later. Please contact the Web server's administrator if this problem persists.

HTTP Error 500.12


Application restarting: There is a problem with the page you are trying to reach and it cannot be displayed.

HTTP Error 500.13


Server too busy: There is a problem with the page you are trying to reach and it cannot be displayed.

HTTP Error 500.15


Requests for Global.asa not allowed: There is a problem with the page you are trying to reach and it cannot be displayed.

HTTP Error 500-100.asp


ASP error: There is a problem with the page you are trying to reach and it cannot be displayed.

HTTP Error 501


Not Implemented: The Web server does not support the functionality required to fulfill the request. Please check your URL for errors, and contact the Web server's administrator if the problem persists.

HTTP Error 502


Bad Gateway: The server, while acting as a gateway or proxy, received an invalid response from the upstream server it accessed in attempting to fulfill the request. Please contact the Web server's administrator if the problem persists.

HTTP Error 503


Out of Resources. Service temporarily unavailable - typically because it is currently overloaded.

HTTP Error 504


Gateway Time-Out: Unable to connect to origin web server. The web site you are attempting to access is currently unreachable. This may be due to a network outage, or the web site might be experiencing technical difficulties.

HTTP Error 505


HTTP Version not supported. The request uses a version of HTTP that is not supported.

Description: http://i39.tinypic.com/33pczec.jpg

Posted by Unknown at Wednesday, November 24, 2010 0 comments
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

Tuesday, November 23, 2010

Custom Motorcycle by Jean Baptiste Robilliard


If you are planning on being an urban crime fighter but still can’t justify the gas guzzling tendencies of most superhero vehicles, well your ride has (conceptually) arrived. Designer Jean Baptiste Robilliard has rendered up this “CUSTOM BIKE CONCEPT” that would make Bruce Wayne’s attorneys take notice. Jean Baptiste describes it as a “two wheel muscle car”, hiding it’s electrical drivetrain and batteries in the frame. Featuring a FORMULA 1 inspired KINETIC ENERGY RECOVERY SYSTEM (KERS), that essentially coverts your braking into energy.
clip_image001
Originally conceived as a single global design, this customizable creation could be the shape of things to come.
clip_image002

Posted by Unknown at Tuesday, November 23, 2010 0 comments
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

How To Force Stop "not Responding" Programs In Windows Xp, Windows Vista And Windows 7

Unresponsive programs in Windows quoting the dreadful message "Not Responding" are a common if you are a Windows user. These programs simply don’t listen to your commands and even refuse to close. They irritatingly waste your time and stay on the screen until they close which normally takes a long time.

Sometimes these frozen programs force you to open the Task Manager, detect the appropriate process and then end the process manually from there as they do not close on their own. This can be a horrible experience especially if you a Windows Vista user. Thankfully, there is an easier way out to close these frozen programs! Here’s how you do it.

1) Right click on your Desktop and click New>Shortcut.





2) Copy the following location: taskkill.exe /f /fi “status eq not responding” on to the text box in the window that opens.





3) That’s it. You are now done! From now on, anytime some program displays "Not Responding", just clicking on the shortcut will automatically detect and terminate the unresponsive program.

Posted by Unknown at Tuesday, November 23, 2010 0 comments
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

Create an invisible account in XP

Go to the registry key:
HKLM\Software\ Microsoft\ W indowsNT\CurrentVer sion\W inlogon\SpecialAcco unts\U serList

Create a new DWORD, setting its name to the name of the account you wish to hide. Then set its value to 0 to hide it. However, this account isn't completely hidden because it is visible to administrators in Local User and Groups and also the profile is visible in the Documents and Settings. When you are at the welcome screen, and you want to login to this account, then press Ctrl+Alt+Delete twice and it will display the log-on promt style similar to Windows 2000, then type the username, and the password and hit enter.

Posted by Unknown at Tuesday, November 23, 2010 0 comments
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

To Lock a folder in windows XP without any software.....!!!!!!!!

To Lock a folder in windows XP without any software. Follow the steps Below.

Make a Folder in C drive rename it as "abc" without quotes.

Now open Command Prompt from Start Menu.

Type "attrib +s +h C:\abc" without quotes and press enter.

This command will Make your folder invisble and it can not be seen even in hidden files and folders

To make it visible again type "attrib -s -h C:\abc"

You can lock any other folder also by changing the location C:\abc to address of your folder.
Posted by Unknown at Tuesday, November 23, 2010 0 comments
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

Start computer in 10 seconds.,

Click on the start button then press R it will take u to Run well go to runand type Regedit
press enter
this will open Registery Editor
now look for the key


HKEY_LOACAL_MECHINE\SYSTEM\CurrentControlSet\Contr ol\ContentIndex



now there find the Key Called
"Startup Delay"
Double Click On It
Now where its Base
Click Decimal



Now its Default Value Is 4800000
Change The Value To 40000
here u go u have done it
now close the Registery Editor and Restart Your Computer
You'll See The Result
Posted by Unknown at Tuesday, November 23, 2010 1 comments
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

How To Install And Run Internet Explorer on Mac

1. Download Winebottler from this page, then drag both Wine and Winebottler in your applications folder.

2. Now launch WineBottler app, and click on Install Predefined Prefixes in the left column. Choose the version of Internet Explorer you want to install in the right panel. You can install Internet Explorer 6,7 or 8. Then click on Install. Mac may ask you to install DCOM98.EXE from Microsoft. This will come from Wine.

3. Now just wait for a few moments for the installation to finish, then locate Internet Explorer 6.app (or Internet Explorer 7.app or Internet Explorer 8.app) and launch it. There you have IE running on Mac!

How cool!!!!!!!!!!!!!! let me know if this helps you 
Posted by Unknown at Tuesday, November 23, 2010 0 comments
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

One Album Band Aid

The Skinny Player kinda reminds me of the O+ Music Campaign where the promotional kit offers one song in various mediums. The concept here with the Skinny Player is to offer one album space on a portable – Band Aid-esque device. The self-sticking player houses a play/stop button and flexible speakers. Although I am not so sure about the sound quality for the output, but the idea is worth exploring. The user-scenario is for exercise or such places where you want to keep your hands free, but still carry your music with you.

The unique angle to the player is that hopes to use your body heat for powering the device. Now if this is possible or utopian , is left to be seen.
Designers: Chih-Wei Wang & Shou-His Fu

Like this post? What's next?

Posted by Unknown at Tuesday, November 23, 2010 0 comments
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Pages

  • Home

About Me

Unknown
View my complete profile

Followers

Blog Archive

  • ▼  2013 (126)
    • ▼  May (2)
      • ▼  May 17 (1)
        • LG and Google launch the Nexus 4 in India for Rs. ...
      • ►  May 06 (1)
    • ►  April (11)
      • ►  Apr 24 (4)
      • ►  Apr 18 (1)
      • ►  Apr 11 (1)
      • ►  Apr 08 (5)
    • ►  March (7)
      • ►  Mar 29 (1)
      • ►  Mar 27 (2)
      • ►  Mar 21 (3)
      • ►  Mar 15 (1)
    • ►  February (23)
      • ►  Feb 25 (2)
      • ►  Feb 23 (3)
      • ►  Feb 19 (3)
      • ►  Feb 18 (1)
      • ►  Feb 17 (3)
      • ►  Feb 14 (3)
      • ►  Feb 12 (4)
      • ►  Feb 04 (1)
      • ►  Feb 01 (3)
    • ►  January (83)
      • ►  Jan 30 (6)
      • ►  Jan 29 (3)
      • ►  Jan 25 (4)
      • ►  Jan 22 (3)
      • ►  Jan 18 (5)
      • ►  Jan 17 (3)
      • ►  Jan 12 (9)
      • ►  Jan 08 (7)
      • ►  Jan 07 (8)
      • ►  Jan 06 (4)
      • ►  Jan 05 (7)
      • ►  Jan 04 (14)
      • ►  Jan 03 (6)
      • ►  Jan 01 (4)
  • ►  2012 (585)
    • ►  December (71)
      • ►  Dec 30 (4)
      • ►  Dec 28 (1)
      • ►  Dec 26 (6)
      • ►  Dec 25 (7)
      • ►  Dec 22 (6)
      • ►  Dec 21 (1)
      • ►  Dec 20 (9)
      • ►  Dec 19 (1)
      • ►  Dec 18 (3)
      • ►  Dec 17 (6)
      • ►  Dec 14 (2)
      • ►  Dec 13 (1)
      • ►  Dec 12 (5)
      • ►  Dec 11 (2)
      • ►  Dec 10 (4)
      • ►  Dec 09 (2)
      • ►  Dec 07 (1)
      • ►  Dec 06 (2)
      • ►  Dec 03 (8)
    • ►  November (39)
      • ►  Nov 27 (4)
      • ►  Nov 21 (6)
      • ►  Nov 15 (2)
      • ►  Nov 08 (9)
      • ►  Nov 07 (3)
      • ►  Nov 06 (2)
      • ►  Nov 03 (5)
      • ►  Nov 02 (3)
      • ►  Nov 01 (5)
    • ►  October (66)
      • ►  Oct 31 (4)
      • ►  Oct 30 (5)
      • ►  Oct 28 (5)
      • ►  Oct 25 (8)
      • ►  Oct 23 (5)
      • ►  Oct 22 (6)
      • ►  Oct 21 (4)
      • ►  Oct 19 (4)
      • ►  Oct 18 (1)
      • ►  Oct 16 (3)
      • ►  Oct 15 (7)
      • ►  Oct 11 (2)
      • ►  Oct 10 (7)
      • ►  Oct 05 (3)
      • ►  Oct 03 (2)
    • ►  September (44)
      • ►  Sep 30 (2)
      • ►  Sep 29 (8)
      • ►  Sep 27 (2)
      • ►  Sep 26 (3)
      • ►  Sep 24 (1)
      • ►  Sep 22 (3)
      • ►  Sep 20 (1)
      • ►  Sep 19 (8)
      • ►  Sep 16 (5)
      • ►  Sep 15 (2)
      • ►  Sep 12 (1)
      • ►  Sep 07 (4)
      • ►  Sep 05 (4)
    • ►  August (56)
      • ►  Aug 31 (7)
      • ►  Aug 28 (1)
      • ►  Aug 24 (4)
      • ►  Aug 22 (2)
      • ►  Aug 21 (3)
      • ►  Aug 19 (2)
      • ►  Aug 18 (4)
      • ►  Aug 17 (1)
      • ►  Aug 16 (3)
      • ►  Aug 14 (1)
      • ►  Aug 12 (1)
      • ►  Aug 11 (2)
      • ►  Aug 10 (7)
      • ►  Aug 07 (7)
      • ►  Aug 06 (3)
      • ►  Aug 03 (6)
      • ►  Aug 01 (2)
    • ►  July (57)
      • ►  Jul 31 (2)
      • ►  Jul 28 (3)
      • ►  Jul 27 (5)
      • ►  Jul 26 (1)
      • ►  Jul 25 (3)
      • ►  Jul 23 (3)
      • ►  Jul 21 (3)
      • ►  Jul 20 (1)
      • ►  Jul 19 (1)
      • ►  Jul 18 (5)
      • ►  Jul 17 (6)
      • ►  Jul 14 (4)
      • ►  Jul 13 (4)
      • ►  Jul 10 (3)
      • ►  Jul 07 (5)
      • ►  Jul 06 (4)
      • ►  Jul 05 (1)
      • ►  Jul 01 (3)
    • ►  June (88)
      • ►  Jun 29 (4)
      • ►  Jun 28 (1)
      • ►  Jun 26 (1)
      • ►  Jun 25 (1)
      • ►  Jun 22 (13)
      • ►  Jun 21 (2)
      • ►  Jun 20 (2)
      • ►  Jun 19 (2)
      • ►  Jun 18 (2)
      • ►  Jun 16 (5)
      • ►  Jun 14 (3)
      • ►  Jun 13 (5)
      • ►  Jun 12 (5)
      • ►  Jun 10 (3)
      • ►  Jun 09 (5)
      • ►  Jun 08 (2)
      • ►  Jun 07 (7)
      • ►  Jun 06 (1)
      • ►  Jun 05 (2)
      • ►  Jun 04 (4)
      • ►  Jun 03 (3)
      • ►  Jun 02 (3)
      • ►  Jun 01 (12)
    • ►  May (63)
      • ►  May 27 (9)
      • ►  May 25 (6)
      • ►  May 24 (8)
      • ►  May 23 (8)
      • ►  May 22 (2)
      • ►  May 20 (6)
      • ►  May 18 (6)
      • ►  May 17 (3)
      • ►  May 16 (2)
      • ►  May 15 (2)
      • ►  May 14 (2)
      • ►  May 12 (3)
      • ►  May 10 (6)
    • ►  April (4)
      • ►  Apr 23 (1)
      • ►  Apr 17 (2)
      • ►  Apr 16 (1)
    • ►  March (20)
      • ►  Mar 14 (1)
      • ►  Mar 13 (2)
      • ►  Mar 08 (12)
      • ►  Mar 02 (1)
      • ►  Mar 01 (4)
    • ►  February (51)
      • ►  Feb 29 (3)
      • ►  Feb 28 (3)
      • ►  Feb 26 (1)
      • ►  Feb 23 (1)
      • ►  Feb 21 (14)
      • ►  Feb 19 (1)
      • ►  Feb 18 (3)
      • ►  Feb 17 (4)
      • ►  Feb 15 (5)
      • ►  Feb 10 (4)
      • ►  Feb 09 (1)
      • ►  Feb 08 (8)
      • ►  Feb 06 (3)
    • ►  January (26)
      • ►  Jan 30 (2)
      • ►  Jan 26 (1)
      • ►  Jan 24 (7)
      • ►  Jan 19 (1)
      • ►  Jan 10 (7)
      • ►  Jan 06 (1)
      • ►  Jan 04 (7)
  • ►  2011 (152)
    • ►  December (19)
      • ►  Dec 28 (2)
      • ►  Dec 27 (5)
      • ►  Dec 21 (2)
      • ►  Dec 16 (3)
      • ►  Dec 15 (5)
      • ►  Dec 13 (2)
    • ►  July (22)
      • ►  Jul 31 (3)
      • ►  Jul 28 (4)
      • ►  Jul 22 (1)
      • ►  Jul 13 (7)
      • ►  Jul 09 (6)
      • ►  Jul 01 (1)
    • ►  June (35)
      • ►  Jun 30 (7)
      • ►  Jun 26 (1)
      • ►  Jun 23 (2)
      • ►  Jun 22 (4)
      • ►  Jun 20 (5)
      • ►  Jun 17 (1)
      • ►  Jun 13 (1)
      • ►  Jun 12 (2)
      • ►  Jun 10 (1)
      • ►  Jun 09 (1)
      • ►  Jun 08 (2)
      • ►  Jun 06 (1)
      • ►  Jun 02 (3)
      • ►  Jun 01 (4)
    • ►  May (14)
      • ►  May 30 (1)
      • ►  May 26 (2)
      • ►  May 25 (2)
      • ►  May 24 (1)
      • ►  May 20 (3)
      • ►  May 19 (2)
      • ►  May 16 (2)
      • ►  May 05 (1)
    • ►  April (10)
      • ►  Apr 27 (1)
      • ►  Apr 14 (3)
      • ►  Apr 06 (2)
      • ►  Apr 05 (2)
      • ►  Apr 01 (2)
    • ►  March (38)
      • ►  Mar 27 (1)
      • ►  Mar 24 (12)
      • ►  Mar 23 (1)
      • ►  Mar 22 (1)
      • ►  Mar 21 (2)
      • ►  Mar 19 (3)
      • ►  Mar 17 (1)
      • ►  Mar 15 (1)
      • ►  Mar 12 (4)
      • ►  Mar 11 (1)
      • ►  Mar 10 (5)
      • ►  Mar 08 (3)
      • ►  Mar 07 (3)
    • ►  February (5)
      • ►  Feb 17 (2)
      • ►  Feb 08 (2)
      • ►  Feb 03 (1)
    • ►  January (9)
      • ►  Jan 30 (1)
      • ►  Jan 27 (2)
      • ►  Jan 23 (1)
      • ►  Jan 17 (2)
      • ►  Jan 12 (1)
      • ►  Jan 01 (2)
  • ►  2010 (143)
    • ►  December (39)
      • ►  Dec 30 (1)
      • ►  Dec 29 (6)
      • ►  Dec 24 (1)
      • ►  Dec 22 (3)
      • ►  Dec 12 (7)
      • ►  Dec 09 (1)
      • ►  Dec 08 (4)
      • ►  Dec 07 (1)
      • ►  Dec 05 (1)
      • ►  Dec 04 (9)
      • ►  Dec 02 (5)
    • ►  November (104)
      • ►  Nov 30 (2)
      • ►  Nov 27 (5)
      • ►  Nov 26 (4)
      • ►  Nov 25 (8)
      • ►  Nov 24 (7)
      • ►  Nov 23 (7)
      • ►  Nov 22 (11)
      • ►  Nov 21 (9)
      • ►  Nov 20 (5)
      • ►  Nov 19 (44)
      • ►  Nov 18 (2)

Keep in toUch!

Posts
Atom
Posts
All Comments
Atom
All Comments
Picture Window theme. Powered by Blogger.