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
    
  
  
    
  | # Aliases | |
| #======================== | |
| # I can't spell for shit | |
| alias sl=ls | |
| alias mdkir=mkdir | |
| alias soruce=source | |
| alias souce=source | |
| alias brwe=brew | 
  
    
      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 factor, | |
| offset, | |
| sqrt, | |
| a, | |
| ax, | |
| ay, | |
| b, | |
| bx, | |
| by, | |
| c, | 
  
    
      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 class='square-box'> | |
| <div class='square-content'><div><span>Aspect ratio 1:1</span></div></div> | |
| </div> | |
| <style> | |
| .square-box{ | |
| position: relative; | |
| width: 50%; | |
| overflow: hidden; | |
| background: #4679BD; | 
  
    
      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 CommentController extends Controller | |
| { | |
| // | |
| // public function store(Request $request) | |
| // { | |
| // //on_post, from_user, body | |
| // $input['from_user'] = $request->user()->id; | |
| // $input['on_post'] = $request->input('on_post'); | |
| // $input['body'] = $request->input('body'); | 
  
    
      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 NullifyEmptyStrings | |
| { | |
| protected $nullificationRan = false; | |
| public static function bootNullifyEmptyStrings() | 
  
    
      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>Document</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.1.5/semantic.min.css"> | |
| </head> | |
| <body id="app"> | |
| <div class="ui container"> | |
| <h1>Sample Page</h1> | 
  
    
      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
    
  
  
    
  | perl -i.bak -pe 's/[^[:ascii:]]//g' <filename.ext> | 
  
    
      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
    
  
  
    
  | { | |
| "require": { | |
| "symfony/dom-crawler": "^2.7", | |
| "symfony/css-selector": "^2.7" | |
| } | |
| } | 
  
    
      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
    
  
  
    
  | Route::get('downloadplaceholders', function(){ | |
| $colors = [ | |
| '1abc9c', | |
| '16a085', | |
| 'f1c40f', | |
| 'f39c12', | |
| '2ecc71', | |
| '27ae60', | |
| 'e67e22', | |
| 'd35400', | 
  
    
      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
    
  
  
    
  | $('#my-el[1][name]').val('val'); // will NOT work | |
| $('#my-el\[1\]\[name\]').val('val'); // WILL work | |
| // if grabbing from data attribute or from elsewhere | |
| var target = my-el[1][name]; // can come from anywhere | |
| target = target.replace(/[[]/g, '\\['); | |
| target = target.replace(/[\]]/g, '\\]'); | |
| $('#' + target).val('val'); // WILL work | 
NewerOlder