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
Show hidden characters
{ | |
"cmd": ["g++", "${file}", "-o", "${file_path}/${file_base_name}"], | |
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", | |
"working_dir": "${file_path}", | |
"selector": "source.c, source.c++", | |
"variants": | |
[ | |
{ | |
"name": "Run", |
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>PHP server says that curl_exec function is <?php echo function_exists("curl_exec") == true ? 'available' : 'not available'; ?></p> |
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
DELETE FROM `wp_posts` WHERE `post_name` = '188-autosave' |
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 `admin_peoplegroup`.`wp_posts` SET | |
`post_date` = '2013-05-14 10:50:01', | |
`post_date_gmt` = '2013-05-14 10:50:01', | |
`post_modified` = '2013-05-14 10:50:01', | |
`post_modified_gmt` = '2013-05-14 10:50:01' | |
WHERE `wp_posts`.`ID` = 137; |
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
base.breakAfterWhiteSpace = function() { | |
var $el = $(this), | |
text = $el.text(), | |
splitted = text.split(' '), | |
newText = splitted[0]; | |
for(var i=1;i<splitted.length; i++) { | |
newText = newText + '</br>' + splitted[i]; | |
} | |
console.log(newText); | |
$el.html(newText).addClass('splitted'); |
NewerOlder