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
    
  
  
    
  | function tabc() { | |
| NAME=$1; if [ -z "$NAME" ]; then NAME="Broadcast"; fi | |
| # if you have trouble with this, change | |
| # "Default" to the name of your default theme | |
| osascript -e "tell application \"Terminal\" to set current settings of front window to settings set \"$NAME\"" | |
| } | |
| function tab-reset() { | |
| NAME="Broadcast" | |
| osascript -e "tell application \"Terminal\" to set current settings of front window to settings set \"$NAME\"" | 
  
    
      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 amqp = require('amqplib/callback_api'); | |
| // if the connection is closed or fails to be established at all, we will reconnect | |
| var amqpConn = null; | |
| function start() { | |
| amqp.connect(process.env.CLOUDAMQP_URL + "?heartbeat=60", function(err, conn) { | |
| if (err) { | |
| console.error("[AMQP]", err.message); | |
| return setTimeout(start, 1000); | |
| } | 
  
    
      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
    
  
  
    
  | # | |
| # svg hell -- xml bomb generator for svg | |
| # | |
| # for educational use | |
| # please don't allow svg on 8ch.net | |
| # | |
| # usage: python svghell.py > evil.svg | |
| # | |
| import random | 
  
    
      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
    
  
  
    
  | /** | |
| * (c) 2014 Anton Medvedev | |
| * | |
| * SELECT_________________ | |
| * / \ \ | |
| * .___ FROM JOIN | |
| * / \ | / \ | |
| * a city_name people address ON | |
| * | | |
| * =___________ |