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
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus nulla nisi, sodales at molestie quis, pharetra non turpis. Aliquam pretium nibh et massa interdum in porta turpis blandit. The quick brown fox jumps over the lazy dog. 1234567890. Quisque at nisl id magna varius vestibulum. Etiam eleifend faucibus arcu, ac porta turpis lacinia ut. Curabitur nisi metus, viverra lacinia adipiscing vel, porttitor id massa. In bibendum, turpis tempus ullamcorper tincidunt, ligula urna gravida dolor, ut consectetur eros augue quis felis. Cozy lumox gives smart squid who asks for job pen!@#$%^&*().Vestibulum eu convallis purus.</p> | |
<p>Aliquam erat volutpat. Maecenas eu urna at ipsum hendrerit suscipit sit amet a mauris. Donec vitae libero ipsum, at condimentum leo. Praesent feugiat eros at justo malesuada commodo. Nullam consequat ligula sem, quis convallis leo. Curabitur ut sapien quis sapien vestibulum tristique in vitae erat. Vestibulum feugiat faucibus enim vitae condimentum. Aliquam porttitor lacus felis. Ves |
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
<ul> | |
<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li> | |
<li>Praesent vitae justo enim, a porttitor enim</li> | |
<li>Quisque consequat lorem eget nibh pellentesque non tempor orci convallis</li> | |
<li>Nunc a tortor eget diam tincidunt egestas</li> | |
</ul> |
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
div#page>div.logo+ul#navigation>li*5>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
{ | |
"auto_upgrade_last_run": 1332860159, | |
"installed_packages": | |
[ | |
"Alignment", | |
"BracketHighlighter", | |
"Case Conversion", | |
"Gist", | |
"jQuery", | |
"Package Control", |
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
git remote rm origin |
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 | |
// create a new curl resource | |
$ch = curl_init(); | |
// set URL and other appropriate options | |
curl_setopt($ch, CURLOPT_URL, "https://api.github.com"); | |
curl_setopt($ch, CURLOPT_HEADER, true); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); |
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
exports.routes = [ | |
{ | |
from: new RegExp('^http://localhost/'), | |
to: 'C:\/lab1521\/xampp\/htdocs/' | |
}, | |
{ | |
from: new RegExp('^http://contextlysitescripts\.contextly\.net/'), | |
to: 'C:\/lab1521\/xampp\/htdocs\/2011\/contextly\.net\/contextlysitescripts/' | |
}, | |
]; |
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
UPDATE wp_options SET option_value = replace(option_value, 'http://www.old.com', 'http://www.new.com') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET guid = replace(guid, 'http://www.old.com','http://www.new.com'); | |
UPDATE wp_posts SET post_content = replace(post_content, 'http://www.old.com', 'http://www.new.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
<link rel="stylesheet" href="/css/global.css" media="all"> | |
<link rel="stylesheet" href="/css/layout.css" media="all and (min-width: 30em)"> | |
<!--[if (lt IE 9)&(!IEMobile)]> | |
<link rel="stylesheet" href="/css/layout.css" media="all"> | |
<![endif]--> |
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 | |
$data = array('description' => "TEST: quick brown fox", | |
'public' => true, | |
'files' => array('gistfile.php' => array('content' => "the quick brown fox jumps over the lazy dog."))); | |
$data_string = json_encode($data); | |
echo '<pre>'.$data_string.'<p>'; | |
var_dump(json_decode('{ | |
"description": "the description for this gist", | |
"public": true, | |
"files": { |
OlderNewer