curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | bash -s
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
| d3.demo = {}; | |
| d3.demo.currentScale = 1; | |
| d3.demo.app = function() { | |
| "use strict"; | |
| var width = 600, | |
| height = 900, | |
| margin = {top: 0, right: 0, bottom: 0, left: 0}, | |
| base = null, |
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
| module.exports = function (wallaby) { | |
| const compilerOptions = require('./src/tsconfig.json').compilerOptions; | |
| compilerOptions.noEmitOnError = false; | |
| return { | |
| files: [ | |
| {pattern: 'node_modules/es6-shim/es6-shim.js', instrument: false}, | |
| {pattern: 'node_modules/systemjs/dist/system-polyfills.js', instrument: false}, | |
| {pattern: 'node_modules/reflect-metadata/Reflect.js', instrument: false}, |
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
| // scss-lint:disable QualifyingElement, DuplicateProperty | |
| // Reboot | |
| // | |
| // Global resets to common HTML elements and more for easier usage by Bootstrap. | |
| // Adds additional rules on top of Normalize.css, including several overrides. | |
| // Reset the box-sizing | |
| // |
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 | |
| collect($results)->pluck('Tables_in_DATABASENAME')->each(function($table){ | |
| system('php artisan infyom:scaffold '.$table.' --fromTable --tableName='.$table); | |
| }); |
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
| # DON'T BE STUPID | |
| # THIS SCRIPT IS NOT MEANT TO BE RUN ALL AT ONCE | |
| # DO NOT RUN ANY OF THESE COMMANDS UNLESS YOU KNOW WHAT YOU'RE DOING | |
| # These are some commands I freqently find myself using. I'm saving them here for my own reference. | |
| # Check the current status of System Integrity Protection (SIP) | |
| csrutil status | |
| # Reset Permissions on MacOS Sierra the same way you used to with previous versions of OS X. |
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
| #!/usr/bin/env sh | |
| # Download lists, unpack and filter, write to stdout | |
| curl -s https://www.iblocklist.com/lists.php \ | |
| | sed -n "s/.*value='\(http:.*=bt_.*\)'.*/\1/p" \ | |
| | xargs wget -O - \ | |
| | gunzip \ | |
| | egrep -v '^#' |
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 Macports. | |
| //Install aircrack-ng: | |
| sudo port install aircrack-ng | |
| //Install the latest Xcode, with the Command Line Tools. | |
| //Create the following symlink: | |
| sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/sbin/airport | |
| //Figure out which channel you need to sniff: | |
| sudo airport -s | |
| sudo airport en1 sniff [CHANNEL] |
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
| # Finish headless installation via `ssh pi@192.168.2.x` | |
| # See /boot/config.txt | |
| sudo apt-get update && sudo apt-get --purge dist-upgrade | |
| sudo raspi-config | |
| # Add locale en.us-utf8 (but keep en.gb-utf8) | |
| sudo dpkg-reconfigure locales | |
| # Timezone | |
| sudo dpkg-reconfigure tzdata | |
| # Update firmware |
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
| <!-- General Settings --> | |
| <advancedsettings> | |
| <loglevel hide="true">-1</loglevel> <!-- Comment: Disables logging --> | |
| <playcountminimumpercent>95</playcountminimumpercent> | |
| <skiploopfilter>0</skiploopfilter> <!-- Comment: For RPi or similar use 16 or higher (low CPU usage) --> | |
| <nodvdrom>true</nodvdrom> | |
| <!-- MySQL Library --> | |
| <videodatabase> | |
| <type>mysql</type> |