This file contains 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
Verifying my Blockstack ID is secured with the address 1H1oJ1V1FTqm5a7ePDCsLczMK1uG6PqeJc https://explorer.blockstack.org/address/1H1oJ1V1FTqm5a7ePDCsLczMK1uG6PqeJc |
This file contains 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
Verifying that +openstream is my blockchain ID. https://onename.com/openstream |
This file contains 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
<!-- Start of XING Events Widget Code --> | |
<style type="text/css"> | |
#xew { | |
border-color: #E4E4E4 #8B9BA1 #8B9BA1 #E4E4E4; | |
border-style: solid; | |
border-width: 1px; | |
background: url("https://www.xing.com/img/widgets/gradient_event.png") repeat-x; | |
font-family: Arial, Helvetica, sans-serif; | |
font-size: 13px; | |
margin: 0; |
This file contains 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 | |
$website = 'domain.com'; | |
$path = '/path/to/htdocs'; | |
$email = '[email protected]'; | |
$git_status = shell_exec('git --git-dir=' . $path . '/.git --work-tree=' . $path . ' status'); | |
$git_log = file_exists($path . '/.git-monitoring.log') ? file_get_contents($path . '/.git-monitoring.log') : ''; | |
if (!preg_match('/working directory clean/ism', $git_status) && $git_log != $git_status) { | |
file_put_contents($path . '/.git-monitoring.log', $git_status); |
This file contains 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
/app/etc/local.xml | |
/downloader/pearlib/cache/ | |
/media/ | |
/shell/log.php | |
/var/ |
This file contains 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
# put it into magento install dir | |
app/code/core/ | |
app/code/community/Phoenix/Moneybookers | |
app/design/adminhtml/default/default/ | |
app/design/frontend/base/default/ | |
app/design/frontend/default/default/ | |
app/design/frontend/default/blank/ | |
app/design/frontend/default/iphone/ |
This file contains 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
// This command is useful if you're e.g. located in Germany, but want to search | |
// Google Switzerland. I'm often in this situation, because I live very close to | |
// the Swiss border and work in both countries | |
CmdUtils.makeSearchCommand({ | |
name: "google-ch", | |
synonyms: ["gch"], | |
url: "http://www.google.ch/search?hl=de&meta=cr%3DcountryCH&q={QUERY}", | |
icon: "http://www.google.ch/favicon.ico", | |
description: "Searches www.google.ch even if you're located elsewhere" |