=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
BrainFuck Programming Tutorial by: Katie
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
#!/bin/bash | |
function getpass() { | |
if [[ -f $HOME/.passwd.cpt ]]; then | |
password=$(ccrypt -c $HOME/.passwd.cpt | egrep $1 | cut -f 3 -d ":") | |
else | |
password=$(egrep $1 $HOME/.passwd | cut -f 3 -d ":") | |
fi | |
if [[ $password == "" ]]; then |
import hexchat | |
__module_name__ = "novoice" | |
__module_version__ = "2.0" | |
__module_description__ = "Ignores voice messages from ChanServ" | |
def voice_event(word, word_eol, userdata): | |
return hexchat.EAT_HEXCHAT | |
hexchat.hook_print("Channel Voice", voice_event) |
#!/bin/bash | |
PORT=$(dirname pwd) | |
cat - > Dockerfile <<EOF | |
FROM crux/base | |
VOLUME /usr/ports/contrib/test | |
RUN ports -u && prt-get cache |
#!/usr/bin/env python3 | |
# IRC Server fuzzing, made easy! | |
import time | |
import socket | |
import select | |
import random | |
# settings | |
hostname = '127.0.0.1' |
#!/bin/bash | |
# | |
# Copyright (c) 2008 by Jose V Beneyto, sepen at users dot sourceforge dot net | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |
#!/bin/bash | |
function getpass() { | |
if [[ -f $HOME/.passwd.cpt ]]; then | |
password=$(ccrypt -c $HOME/.passwd.cpt | egrep $1 | cut -f 3 -d ":") | |
else | |
password=$(egrep $1 $HOME/.passwd | cut -f 3 -d ":") | |
fi | |
if [[ $password == "" ]]; then |
package main | |
import ( | |
"bytes" | |
"code.google.com/p/go.crypto/openpgp" | |
"encoding/base64" | |
"io/ioutil" | |
"log" | |
"os" | |
) |
I've been wanting to do a serious project in Go. One thing holding me back has been a my working environment. As a huge PyCharm user, I was hoping the Go IDE plugin for IntelliJ IDEA would fit my needs. However, it never felt quite right. After a previous experiment a few years ago using Vim, I knew how powerful it could be if I put in the time to make it so. Luckily there are plugins for almost anything you need to do with Go or what you would expect form and IDE. While this is no where near comprehensive, it will get you writing code, building and testing with the power you would expect from Vim.
I'm assuming you're coming with a clean slate. For me this was OSX so I used MacVim. There is nothing in my config files that assumes this is the case.
#!/bin/bash | |
############################################################################### | |
# NOTICE: This script is intended to be used in conjunction with a openssl.cnf | |
# template such as this one: | |
# https://gist.github.com/jameskyle/8106d4d5c6dfa5395cef | |
# (C) Copyright 2014 James A. Kyle. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. |