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\Http; | |
| /** | |
| * Description of VideoStream | |
| * | |
| * @author Rana | |
| * @link https://gist.github.com/vluzrmos/d5682ad426525196d069 | |
| */ |
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 extra extension to render pure html alongside with php | |
| View::addExtension('html', 'php'); | |
| Route::get('/blog', function() { | |
| return view('Blog'); | |
| }); | |
| //route for inserting | |
| Route::post('/tweets/create', 'BlogController@create'); | |
| //route for deleting | |
| Route::post('/tweets/delete', 'BlogController@delete'); |
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 | |
| // Route: | |
| // {id} required | |
| // {slug} optional | |
| Route::get('blog/{id}/{slug?}', array('as' => 'blog.show', 'uses' => 'PostsController@show')); | |
| // PostsController@show | |
| public function show($id, $slug = '') | |
| { |
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
| 203.131.145 | |
| 203.131.150 to 199.203.131.152 | |
| 163.142.2 to 82.163.142.7 | |
| 163.142.66 to 82.163.142.70 | |
| 163.142.130 to 82.163.142.189 | |
| 163.143.131 to 82.163.143.190 | |
| 211.158.129 to 95.211.158.135 | |
| 211.158.145 to 95.211.158.151 | |
| 163.143.23 to 82.163.143.250 | |
| 88.193.133 to 209.88.193.141 |
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
| http://www.myscriptfont.com/ |
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
| Windows.10.and.Office.2016.gVLK | |
| ##################################################################### | |
| # technet.microsoft.com/en-us/library/jj612867.aspx?lc=1033 # | |
| ##################################################################### | |
| Windows 10 Professional W269N-WFGWX-YVC9B-4J6C9-T83GX | |
| Windows 10 Professional N MH37W-N47XK-V7XM9-C7227-GCQG9 | |
| Windows 10 Education NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 | |
| Windows 10 Education N 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |
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
| <select name="title" id="title"> | |
| <option value="">No Title</option> | |
| <option value="Mr">Mr</option> | |
| <option value="Mrs">Mrs</option> | |
| <option value="Miss">Miss</option> | |
| <option value="Ms">Ms</option> | |
| <option value="Master">Master</option> | |
| <option value="Admiral">Admiral</option> | |
| <option value="Archbsh">Archbishop</option> | |
| <option value="Att Gen">Attorney General</option> |
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 | |
| function list_hooked_functions($tag=false){ | |
| global $wp_filter; | |
| if ($tag) { | |
| $hook[$tag]=$wp_filter[$tag]; | |
| if (!is_array($hook[$tag])) { | |
| trigger_error("Nothing found for '$tag' hook", E_USER_WARNING); | |
| return; | |
| } |
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 | |
| /** | |
| * Gibt den Zeitpunkt der letzten Änderung aller verwendeten | |
| * Dateien als UNIX-Timestamp zurück. | |
| * @return integer | |
| */ | |
| function real_lastmod() | |
| { | |
| $arr_all_files = get_included_files(); | |
| if ( !array_key_exists(1, $arr_all_files) ) |
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 | |
| function is_local() | |
| { | |
| return ( '127.0.0.1' == $_SERVER["REMOTE_ADDR"]) ? TRUE : FALSE; | |
| } |