- about:blank
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
| #!/bin/bash | |
| git filter-branch --env-filter ' | |
| OLD_EMAIL="[email protected]" | |
| CORRECT_NAME="Rick Grimes" | |
| CORRECT_EMAIL="[email protected]" | |
| if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ] | |
| then |
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
| #/bin/bash | |
| if [ ! -e "$2" ] ; then | |
| echo "Format: `basename $0` url file" | |
| echo "" | |
| echo "Sets the source URL of the file." | |
| echo "" | |
| exit 1 | |
| fi |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>com.noatime.root</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/sbin/mount</string> | |
| <string>-vuwo</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
| add 1000 deny tcp from any to any dst-port 80 recv en0 | |
| add 2000 deny tcp from any to any dst-port 80 recv en1 | |
| add 3000 deny tcp from any to any dst-port 80 recv en3 | |
| # The next one works only if you have tun/tap driver installed for VPN apps. If you do not have it, comment it. | |
| add 4000 deny tcp from any to any dst-port 80 recv tun0 |
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 | |
| namespace My\solrfileindexing\Xclass; | |
| use TYPO3\CMS\Core\Utility\GeneralUtility; | |
| /** | |
| * Requires cc_text* extensions! | |
| */ | |
| class DocumentFactory extends \TYPO3\Solr\Solrfal\Indexing\DocumentFactory { |
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
| 10 = LOAD_REGISTER | |
| moreUrl { | |
| field = linkUrl | |
| listNum = 0 | |
| listNum.splitChar = 32 | |
| } | |
| extraClasses { | |
| field = linkUrl | |
| listNum = 2 |
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
| <lj-userpic remote="remote" /> |
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
| # Note: this is just a fragment that you should put in your ~/.bash_profile | |
| # Tested on Mac only! | |
| # | |
| # If you want a more sophisticated and feature rich solution here are some pointers: | |
| # - https://github.com/cxreg/smartcd | |
| # - http://swapoff.org/ondir.html | |
| function cd_ { | |
| if [ -e .env_off ] ; then | |
| . .env_off |
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
| ogimageNoSlide = FILES | |
| ogimageNoSlide { | |
| references { | |
| table = pages | |
| uid.data = page:uid | |
| fieldName = ogimage | |
| } | |
| maxItems = 1 | |
| renderObj = TEXT | |
| renderObj { |
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 | |
| namespace DmitryDulepov\PowermailConversionFix\Xclass; | |
| /*************************************************************** | |
| * Copyright notice | |
| * | |
| * (c) 2016 Dmity Dulepov <[email protected]> | |
| * All rights reserved | |
| * | |
| * This script is part of the TYPO3 project. The TYPO3 project is | |
| * free software; you can redistribute it and/or modify |