- 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
| 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
| <?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
| 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
| <?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
| #/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
| #!/bin/bash | |
| git filter-branch --env-filter ' | |
| OLD_EMAIL="user1@example.org" | |
| CORRECT_NAME="Rick Grimes" | |
| CORRECT_EMAIL="rick.grimes@zombyworld.net" | |
| 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 | |
| # | |
| # @see https://youtrack.jetbrains.com/issue/IDEA-129941 | |
| # | |
| # Make sure you have Wi-Fi on and automatic time zone on on your Mac! | |
| sudo codesign --force --deep --sign - /Applications/PhpStorm.app/ |
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>KeepAlive</key> | |
| <true/> | |
| <key>Label</key> | |
| <string>local.automasq</string> | |
| <key>ProgramArguments</key> | |
| <array> |
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
| To embed a video using the `<lj-template>` tag, use the following code: | |
| YouTube: | |
| ```html | |
| <lj-template name="video">http://www.youtube.com/watch?v=example</lj-template> | |
| ``` | |
| Photobucket: | |
| ```html | |
| <lj-template name="video">http://xxx.photobucket.com/albums/xxx/example/?action=view¤t=example.flv | |
| </lj-template> |
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\Myext\Controller; | |
| class MyController { | |
| /** | |
| * @var \DmitryDulepov\Myext\\Domain\Repository\RecordRepository | |
| * @inject | |
| */ | |
| protected $recordRepository; |