I hereby claim:
- I am louistakepillz on github.
- I am peelz (https://keybase.io/peelz) on keybase.
- I have a public key ASC8UpbEDLbre_Ah6c18QUxnfAFan0hexNc_UxtmskUyGAo
To claim this, I am signing this object:
| readonly Comparer<Double> doubleComparer = Comparer<Double>.Create((x, y) => | |
| { | |
| long firstValue = BitConverter.DoubleToInt64Bits(x); | |
| long secondValue = BitConverter.DoubleToInt64Bits(y); | |
| // Compare the bit-sign | |
| if (firstValue >> 63 != secondValue >> 63) | |
| return firstValue == secondValue ? 0 : firstValue.CompareTo(secondValue); | |
| long difference = Math.Abs(firstValue - secondValue); |
| open System | |
| open System.Linq | |
| open ArgumentParser | |
| open ArgumentParser.Reflection | |
| open ArgumentParser.Reflection.POSIX | |
| type private GlobalContext() = | |
| static member public Instance = new GlobalContext() | |
| member public this.Test = null | |
| interface IParserContext with |
| #DAEMON=/usr/local/bin/portspoof | |
| #CONFIG=/usr/local/etc/portspoof.conf | |
| #SIGNATURES=/usr/local/etc/portspoof_signatures | |
| PS_UNFILTEREDPORTS="53 80 443 49152:65535" | |
| PS_INTERFACES="eth0" | |
| PS_LISTENPORT=4444 | |
| PS_USER=daemon | |
| # WARNING: do not use the -D (daemon) option, as it will yield the wrong PID | |
| #PS_ARGUMENTS="-c $CONFIG -s $SIGNATURES" |
| #!/bin/bash | |
| DEVICE=/dev/sda1 | |
| IMAGE_PATH='/media/$1/Storage/.veracrypt/volume' | |
| MOUNT_PATH='/mnt/volume' | |
| if [[ "$USER" != "root" ]]; then | |
| gvfs-mount -d $DEVICE | |
| gksu -D $(basename $0) $0 $USER | |
| exit $? |
| var gulp = require('gulp'); | |
| var bowerFiles = require('gulp-main-bower-files'); | |
| var runSequence = require('run-sequence').use(gulp); | |
| // Preprocessor & plugins | |
| var plugins = require('gulp-load-plugins')({ camelize: true, lazy: true }); | |
| var precss = require('precss'); | |
| var autoprefixer = require('autoprefixer'); | |
| var mqpacker = require('css-mqpacker'); | |
| var csswring = require('csswring'); |
| import path from 'path'; | |
| import fs from 'fs'; | |
| import Discord from 'discord.js'; | |
| import request from 'superagent'; | |
| import plugins from '~/plugins'; | |
| import * as utils from '~/utils.js'; | |
| const bot = new Discord.Client(); | |
| function* getCommand(content) { |
| '.source.js': | |
| 'React Component Export': | |
| 'prefix': 'drc6' | |
| 'body': """ | |
| import React, { Component, PropTypes } from 'react'; | |
| export default class $1 extends Component { | |
| render() { | |
| return ( |
| import Crawler from 'crawler'; | |
| import url from 'url'; | |
| const BASE_ADDRESS = 'https://en.wikipedia.org/'; | |
| const COUNTRY_PATTERN = /.*?Visa_requirements_for_(.*?)_citizens.*?/i; | |
| const VISA_REQUIRED_PATTERN = /.*?visa\s+required.*?/i; | |
| const VISA_NOT_REQUIRED_PATTERN = /.*?visa\s+not\s+required.*?/i; | |
| const visaRequirements = {}; |
I hereby claim:
To claim this, I am signing this object:
| " Inspired by https://vi.stackexchange.com/questions/4091/how-to-bind-a-set-of-buffers-to-a-tab | |
| if !exists("g:WindowBufManager") | |
| let g:WindowBufManager= {} | |
| endif | |
| function! InitTabBufferList() | |
| if !has_key(g:WindowBufManager, tabpagenr()) | |
| let g:WindowBufManager[tabpagenr()] = [] | |
| endif | |
| endfunction |