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
    
  
  
    
  | /** | |
| * @ref https://alistapart.com/article/responsible-javascript-part-1/ | |
| */ | |
| /* Your mobile-first, non-CSS grid styles goes here */ | |
| /* The @supports rule below is ignored by browsers that don't | |
| support CSS grid, _or_ don't support @supports. */ | |
| @supports (display: grid) { | |
| /* Larger screen layout */ | 
  
    
      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 | |
| $class = new ReflectionClass($classInstance); | |
| $property = $class->getProperty("properties"); | |
| $property->setAccessible(true); | |
| $properties = $property->getValue($number); | 
  
    
      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
    
  
  
    
  | <style type="text/css"> | |
| .video-responsive{ | |
| overflow:hidden; | |
| padding-bottom:56.25%; | |
| position:relative; | |
| height:0; | |
| } | |
| .video-responsive iframe{ | |
| left:0; | |
| top:0; | 
  
    
      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
    
  
  
    
  | https://imgur.com/t/funny/aXbcT | |
| https://imgur.com/t/funny/DOnTuLc | |
| https://imgur.com/t/funny/JREJzod | |
| https://imgur.com/t/funny/rOMPLIE | 
  
    
      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
    
  
  
    
  | [core] | |
| autocrlf = false | |
| [alias] | |
| st = status | |
| co = checkout | |
| ci = commit | |
| br = branch | |
| hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short | |
| type = cat-file -t | |
| dump = cat-file -p | 
  
    
      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> | |
| <!--So long and thanks for all the fish--> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
| <title>Pocket Export</title> | |
| </head> | |
| <body> | |
| <h1>Unread</h1> | |
| <ul> | 
  
    
      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
    
  
  
    
  | const puppeteer = require('puppeteer'); | |
| const {TimeoutError} = require('puppeteer/Errors'); | |
| const PAGE_TIMEOUT = 120000; //2 minutes | |
| const PAGE_NAV_OPTIONS = {waitUntil: 'networkidle2', timeout: PAGE_TIMEOUT}; | |
| (async () => { | |
| const browser = await puppeteer.launch({headless: false, slowMo: 150, args: ['--start-maximized']}); | |
| const page = await browser.newPage(); | |
| await page.setViewport({ width: 1366, height: 768}); | 
  
    
      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 | |
| use Monolog\Logger; | |
| use Monolog\ErrorHandler; | |
| use Monolog\Formatter\CustomLineFormatter; | |
| use Monolog\Handler\StreamHandler; | |
| use Monolog\Processor\IntrospectionProcessor; | |
| use Localheinz\Json\Printer\Printer; | |
| //set this to desired log directory | 
  
    
      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
    
  
  
    
  | { | |
| "plus_code" : { | |
| "compound_code" : "JH2W+F3 Northwood, UK", | |
| "global_code" : "9C3XJH2W+F3" | |
| }, | |
| "results" : [ | |
| { | |
| "address_components" : [ | |
| { | |
| "long_name" : "49A", | 
  
    
      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/sh | |
| ### check disk caching | |
| ### @ref https://eventstore.org/blog/20131218/disabling-disk-caching-in-ubuntu/ | |
| sudo hdparm -i /dev/sda |