| Models | Examples |
|---|---|
| Display ads | Yahoo! |
| Search ads |
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
| watch: { | |
| sass: { | |
| files: settings.template.path + 'scss/*.scss', | |
| tasks: ['sass'] | |
| }, | |
| livereload: { | |
| files: ['assets/js/**/*.js', 'assets/css/**/*.css', settings.template.path + 'images/**/*.{jpg,gif,svg,jpeg,png}'], | |
| options: { | |
| livereload: true | |
| } |
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 ng-repeat="img in item.images"> | |
| <li> | |
| <img ng-src="{{img}}"> | |
| </li> | |
| </div> |
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
| /* | |
| DESCRIPTION | |
| ----------- | |
| Use NodeJS to read RFID ids through the USB serial stream. Code derived from this forum: | |
| http://groups.google.com/group/nodejs/browse_thread/thread/e2b071b6a70a6eb1/086ec7fcb5036699 | |
| CODE REPOSITORY | |
| --------------- | |
| https://gist.github.com/806605 |
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
| Generating autoload files | |
| {"error":{"type":"ErrorException","message":"Invalid argument supplied for foreach()","file":"\/Users\/Jae\/test\/vendor\/ollieread\/multiauth\/src\/Ollieread\/Multiauth\/MultiManager.php","line":15}}{"error":{"type":"ErrorException","message":"Invalid argument supplied for foreach()","file":"\/Users\/Jae\/test\/vendor\/ollieread\/multiauth\/src\/Ollieread\/Multiauth\/MultiManager.php","line":15}}{"error":{"type":"ErrorException","message":"Invalid argument supplied for foreach()","file":"\/Users\/Jae\/test\/vendor\/ollieread\/multiauth\/src\/Ollieread\/Multiauth\/MultiManager.php","line":15}}% |
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
| #Jae Redirect | |
| Options +FollowSymLinks -MultiViews | |
| RewriteEngine On | |
| RewriteBase / | |
| # This will redirect you from http://www.example.com/username.php to http://www.example.com/username externally | |
| RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC] | |
| RewriteRule ^ %1 [R,L] | |
| # This will redirect you from http://www.example.com/username to http://www.example.com/username internally |
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
| Traceback (most recent call last): | |
| File "/var/www/balllive365.com/liveview/viewing.py", line 51, in <module> | |
| schedule.run_pending() | |
| File "/usr/local/lib/python2.7/dist-packages/schedule/__init__.py", line 367, in run_pending | |
| default_scheduler.run_pending() | |
| File "/usr/local/lib/python2.7/dist-packages/schedule/__init__.py", line 64, in run_pending | |
| self._run_job(job) | |
| File "/usr/local/lib/python2.7/dist-packages/schedule/__init__.py", line 96, in _run_job | |
| ret = job.run() | |
| File "/usr/local/lib/python2.7/dist-packages/schedule/__init__.py", line 293, in 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
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Support\Facades\Gate; | |
| use Illuminate\Support\Facades\Auth; | |
| use Illuminate\Auth\EloquentUserProvider; | |
| use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; | |
| class AuthServiceProvider extends ServiceProvider |
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
| ## --- Install Openswan --- | |
| apt-get install openswan=1:2.6.37-3 | |
| ## --- If you ever see in your syslog --- | |
| ipsec__plutorun: 003 "/var/lib/openswan/ipsec.secrets.inc" line 1: error loading RSA private key file | |
| root@:/etc/ipsec.d/private# openssl rsa -in vpn.example.com.key -outform pem -out vpn.example.com.key.new | |
| ## --- Modify the /etc/ipsec.conf --- | |
| ## --- Change SERVER.IP --- | |
| vi /etc/ipsec.conf |
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
| var img = document.querySelector("div.product-briefing.flex.card._2cRTS4 > div._30iQ1- > div.flex.flex-column > div._1eNVDM > div > div._3ZDC1p > div"); | |
| found = img.style["background-image"].match(/"(.*)\"/g); | |
| window.open(found[0].replace(/["']/g, ""),"_blank"); |