This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
Trasliterate method takes 5 , seaparated english words and transliterates them into Kannada, | |
The result is an array of words in the same order. This uses Non public Google online transliteration API for this. | |
When you run this method give a 10ms seconds gap between each call to be on the safer side. | |
By : Thejesh GN http://thejeshgn.com | |
More: http://thejeshgn.com/2011/02/04/batch-transliterating-names-into-kannada-using-google-api/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"/> | |
<title>Google AJAX Language API - Basic Transliteration</title> | |
<script type="text/javascript" src="//www.google.com/jsapi"></script> | |
<script type="text/javascript"> | |
google.load("language", "1"); | |
google.load("elements", "1", { packages: "transliteration" }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<HEAD> | |
<SCRIPT src="./processing-1.1.0.min.js"></SCRIPT> | |
<SCRIPT src="./init.js"></SCRIPT> | |
<STYLE type="text/css"> | |
html, body { | |
background: #EEE; | |
font-family: PJSMKGS,arial,sans-serif; font-size: 13px; | |
margin: 0; | |
padding: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<!-- STEP 1: put this div content where you want the picture to appear --> | |
<!-- start --> | |
<div id="pictureDiv" width="300px"> | |
<em><span id="pictureHeaderId"></span></em> | |
<span id="pictureContentId"></span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
`http://imagessearchyahoo.com | |
http://imamali8.com | |
http://rahulyadav.com | |
http://hinduhumanrights.org | |
http://nndh.com | |
http://bloodrovaltriped.com | |
http://merrimusings.typepad.com | |
http://thepiratescove.us | |
http://smeisp.cn | |
http://clickatell.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error resolving 'imagessearchyahoo.com'errno=110 (if applicable) | |
Error resolving 'hinduhumanrights.org'errno=110 (if applicable) | |
Error resolving 'bloodrovaltriped.com'errno=110 (if applicable) | |
Error resolving 'merrimusings.typepad.com'errno=110 (if applicable) | |
Error resolving 'thepiratescove.us'errno=110 (if applicable) | |
Error resolving 'commnicator.clickatell.com'errno=110 (if applicable) | |
Error resolving 'mackers-world.com'errno=110 (if applicable) | |
Error resolving 'mypetjawa.mu.nu'errno=110 (if applicable) | |
Error resolving 'jonnyasp.com'errno=110 (if applicable) | |
Error resolving 'google0.ingo'errno=110 (if applicable) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.csv | |
.cache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Borg: | |
__shared_state = {} | |
def __init__(self): | |
self.__dict__ = self.__shared_state | |
# and whatever else you want in your class -- that's all! |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#beautiful logs | |
git log --graph --all --decorate | |
#show all the commits | |
git reflog | |
#reset to particular commit, cleans up the working dir (clears the staged file) | |
#Resets the index and working tree. Any changes to tracked files in the working tree since <commit> are discarded. | |
git reset --hard [commit_hash or tag] |
OlderNewer