Image | Name | Link |
---|---|---|
Anonymous Alligator | https://ssl.gstatic.com/docs/common/profile/alligator_lg.png | |
Anonymous Ameisenbär | https://ssl.gstatic.com/docs/common/profile/anteater_lg.png | |
Anonymous Axolotl | https://ssl.gstatic.com/docs/common/profile/axolotl_lg.png | |

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\Traits; | |
trait LockColumns | |
{ | |
/** | |
* Cast locked_columns as a JSON column | |
* | |
* @return void |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Server Status Page</title> | |
<meta property="status" content='{"api":"//example.com/server_status.php?format=json","interval":60,"expand":true,"servers":[{"id":12,"short":"Strawberry","online":true,"error":true,"hostname":"nhalstead.me","statusPageLink":false,"serialNumber":"0000","location":{"building":"X","rack":13,"unit":40}}]}'> | |
<style> | |
a:hover, a:focus, a:active { | |
text-decoration: none; | |
color: inherit; |
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 | |
/** | |
* Array to Text Table Generation Class | |
* | |
* @author Tony Landis <[email protected]> | |
* @link http://www.tonylandis.com/ | |
* @copyright Copyright (C) 2006-2009 Tony Landis | |
* @license http://www.opensource.org/licenses/bsd-license.php | |
*/ |
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 | |
/** | |
* Warning! Read and use at your own risk! | |
* | |
* This tiny proxy script is completely transparent and it passes | |
* all requests and headers without any checking of any kind. | |
* The same happens with JSON data. They are simply forwarded. | |
* | |
* This is just an easy and convenient solution for the AJAX | |
* cross-domain request issue, during development. |
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
/* --------------------------------------------------------------------------- | |
** This software is in the public domain, furnished "as is", without technical | |
** support, and with no warranty, express or implied, as to its usefulness for | |
** any purpose. | |
** | |
** main.cpp | |
** | |
** V4L2 RTSP streamer | |
** | |
** H264 capture using middleware_video |
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 | |
if(!isset($authKey)) { $authKey = "YOUR KEY HERE"; } | |
if(!isset($longURL)) { $longURL = "http://join-shortest.com/ref/46cc802beb?user-type=new"; } | |
$storeShortLink = "linkout"; | |
DEFINE("apiBaseAddress", "https://api.shorte.st/v1/data/url"); | |
function formatURLPostData($url){ return "urlToShorten=".$url; } | |
function http_exist($url) { | |
if (!preg_match("~^(?:f|ht)tps?://~i", $url)) { return "https://" . $url; } | |
else { return $url; } |
NewerOlder