Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

Seo Master present to you:
Yaniv
Matthias
By Yaniv Inbar and Matthias Linder, Client APIs Team

Over the last year, we’ve launched a number of developer APIs, such as the Tasks API, the Books API, the Search API for Shopping, and the CustomSearch API. At Google I/O we announced a number of developer tools, such as the APIs Explorer and the APIs Console. Over that time, we have been actively developing a library to support the Microsoft .NET Framework.

Today we are announcing a major milestone by releasing the Beta version of the open source Google APIs Client Library for .NET. This includes service-specific libraries and samples for Google APIs, built on our new client library generation infrastructure. We're now comfortable enough with the stability and features of the library that we want you to start building real production applications. Currently we support Microsoft .NET 3.5 and 4.0 and Mono 2.6.7 (and higher). In the future we hope to also support Windows Phone 7 and Microsoft Silverlight.

To demonstrate how easy to use the library can be, here is a snippet from the goo.gl sample to shorten a URL using the goo.gl service:

// Create an instance of the UrlShortener-service.
var service = new UrlshortenerService();

// Make a "Shorten URL" request.
string urlToShorten = "http://maps.google.com/";
Url response =
  service
.Url.Insert(new Url { LongUrl = urlToShorten }).Fetch();

// Print the shortened url.
string shortUrl = response.Id;
Console.WriteLine(urlToShorten + " -> " + shortUrl);
To use this code, you only have to add references to the Google APIs Client Library for .NET, and the Google.Apis.Urlshortener.v1.dll.

Please send us your feedback on how we can make your experience with the library easier and better suited for your needs.

Since Google I/O 2010, we've been developing APIs that can provide descriptions of themselves via metadata. This new technique makes it easier to create and maintain client libraries that support more languages, work with more APIs, and are easier to use than ever before. This post announces one of several recent major milestones for our client libraries.


Yaniv Inbar is a Senior Software Engineer and Technical Lead of the Google APIs Client Libraries & Tools team. Yaniv has worked at Google for 5 years, and has a total of 12 years industry experience as a software engineer.

Matthias Linder is a Software Engineering Intern. Matthias is interested in game development, microcontrollers, and paragliding.


Posted by Scott Knaster, Editor
2013, By: Seo Master
Seo Master present to you:

Everyone has some confidential files, documents, etc.. which are to be hided from others, especially while using a common computer in home or elsewhere. There is no need for you to search for software to a accomplish this task of locking folder. Just follow the below steps and get it done within a fraction on second! :)


Steps to follow:

Open Notepad and paste the following program in the notepad.

cls
:End
@ECHO OFF
title Folder Locker
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p “cho=>”
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p “pass=>”
if NOT %pass%==harsha goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End


  • In the above code I used harsha as the password of the file.
  • Replace harsha with any password of your desire.
  • Save the file anywhere in the system with a .bat suffix. Eg. something.bat
  • Here I am saving it as mylocker.bat on my system.
  • Double click on the something.bat file which you created, a new folder by name Locker will be created on the same location of bat file you saved.
  • Copy your files to this folder and open bat file again and type y and then enter to lock your folder.
  • To unlock your file again, you need to open the bat file and enter your password.
  • That's it! :)

Feel free to hit Like, Share or Comment if you like this post.

2013, By: Seo Master
Seo Master present to you:
Note: Almost all of these tricks works on Windows XP, But some of these might not work on Windows 7.

1.) Create a log or Dairy:

  • Open the Notepad.
  • On the first line  type “.LOG” (without quotes) and press Enter for new line.
  • Type anything in the second or third line and save the file.
  • Notepad will automatically add a time & date log every time you open this file in the future.

2.) Matrix Effect:

Copy the below text in a notepad :

@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

Save the file with .bat extension. For eg: Matrix.bat

3.) Continually pop out CD Drive:

Copy the below text in a notepad :

Set oWMP = CreateObject(“WMPlayer.OCX.7?)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

Save it as “Something.VBS”.

4.) Continuously Display Messages:

By using this trick you make computer to display messages continuously and annoy user to log off to get rid of this crazy file!

Copy the below text in a notepad :

@ECHO off

:Begin

msg * Hi

msg * Are you having fun?

msg * I am!

msg * Lets have fun together!

msg * Because you have been o-w-n-e-d

GOTO BEGIN

Save the file with .bat extension (for eg Something.bat and open the file to get annoyed!)

5.) Toggle Keyboard Button Simultaneously:

By using this trick you can make your keyboard key (which you mention in the program) to toggle continuously.

Copy the below text in a notepad :

To toggle Capslock key continuously :

Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop

To toggle enter key continuously :

Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop

To toggle Back space continuously :

MsgBox “Lets Rumble”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop

Now save the file with .vbs extention. For eg Something.VBS

That's it! Thanks to (http://www.goharsh.com)

Feel free to hit Like, Share or Comment if you like this post.

2013, By: Seo Master
Powered by Blogger.