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
var jsonObject = { | |
"latitude":0, | |
"longitude":0, | |
"country":0, | |
"time":0, | |
"isp":0, | |
"h":0, | |
"m":0, | |
"s":0, | |
"browser":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
Yask Srivastava shared Positive Words's photo.Yask Srivastava shared a link.Yask Srivastava shared a link.Yask Srivastava shared The Best Movie Lines's photo.Yask Srivastava shared Varun Agarwal's photo.Yask Srivastava shared a link.Yask Srivastava shared a link.Yask Srivastava shared a link.Yask Srivastava shared a link.Yask Srivastava shared a link.Yask Srivastava shared a link.Yask Srivastava shared a link.Yask Srivastava shared JEEQuery's photo.Yask Srivastava shared Spirit Science's photo.Yask Srivastava shared a link.Yask Srivastava shared Al Pitcher's photo.Yask Srivastava shared a link.Yask Srivastava shared a link.Yask Srivastava shared a link.Yask Srivastava shared a link.% |
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> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title> App Base</title> | |
<script src="bower_components/appbase-js/browser/appbase.js"></script> | |
</head> | |
<body> | |
<h1>Hey</h1> |
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
import requests | |
from bs4 import BeautifulSoup | |
import urllib2 | |
response=urllib2.urlopen('http://jeequery.com/about/') | |
html = response.read() | |
soup = BeautifulSoup(html, 'html.parser') | |
a = soup.find_all('a') |
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
import requests | |
from bs4 import BeautifulSoup | |
import urllib2 | |
response = urllib2.urlopen('https://Facebook.com/yask123') | |
html = response.read() | |
soup = BeautifulSoup(html, 'html.parser') | |
print soup.title.string |
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
function dispatch(target, eventType, char) { | |
var evt = document.createEvent("TextEvent"); | |
evt.initTextEvent (eventType, true, true, window, char, 0, "en-US"); | |
target.focus(); | |
target.dispatchEvent(evt); | |
} | |
dispatch(document.querySelector("#compose-input div"), "textInput", "hello!"); |
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> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title></title> | |
<link rel="stylesheet" href=""> | |
</head> | |
<body> | |
<h1>Hello</h1> |
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
a = document.getElementsByClassName('uiTextareaNoResize uiTextareaAutogrow _1rv'); | |
for(var i = 0;i<10;i++) | |
{ | |
a[0].value='Hey!'; | |
b = document.getElementById("u_jsonp_6_6");// The id name will probably be different from you, check it out from dev-console. | |
b.click(); | |
} | |
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
{% extends theme("layout.html") %} | |
{% import "utils.html" as utils %} | |
{# map meta.action to font awesome classes #} | |
{% set awesome_class = { | |
'REVERT': 'fa fa-undo', | |
'SAVE': 'fa fa-save', | |
'RENAME': 'fa fa-pencil-square-o', | |
'TRASH': 'fa fa-trash-o', | |
} %} |
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
{% extends theme("layout.html") %} | |
{% import "utils.html" as utils %} | |
{# map meta.action to font awesome classes #} | |
{% set awesome_class = { | |
'REVERT': 'fa fa-undo', | |
'SAVE': 'fa fa-save', | |
'RENAME': 'fa fa-pencil-square-o', | |
'TRASH': 'fa fa-trash-o', | |
} %} |