Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex
const rollup = require('rollup'); | |
const esm = require('esm'); | |
const { config } = esm(module)('../rollup.config'); | |
function generateOptions(filePath, name) { | |
return { | |
input: { input: filePath, plugins: config.plugins }, | |
output: { | |
file: `./dist/test/${name}.js`, |
#!/usr/bin/env node | |
const Discord = require('discord.io'); | |
const teamcity = require('teamcity'); | |
const auth = require('../auth.json'); | |
// Create Discord Bot | |
const bot = new Discord.Client({ | |
token: auth.token, | |
autorun: true | |
}); |
const rules = [ | |
{ type: 'space', regex: /^\s/ }, | |
{ type: 'lParen', regex: /^\(/ }, | |
{ type: 'rParen', regex: /^\)/ }, | |
{ type: 'number', regex: /^[0-9\.]+/ }, | |
{ type: 'string', regex: /^".*?"/ }, | |
{ type: 'variable', regex: /^[^\s\(\)]+/ } // take from the beginning 1+ characters until you hit a ' ', '(', or ')' // TODO - support escaped double quote | |
]; | |
Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex
usb_modeswitch
from here http://www.draisberghof.de/usb_modeswitch/ (at the moment of writing this the file appears with the name usb-modeswitch-2.5.2.tar.bz2)make
in the directory of the source you downloadedsudo ./usb_modeswitch -v12d1 -p1505 -X
in the same directoryIf the last step returns an error (I don't remember the error now, but I was getting an error related to usb_modeswitch
not being able to take control of the modem to perfom changes):
sudo ./usb_modeswitch -v12d1 -p1505 -X
repatedly until you get a successful result(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Now located at https://github.com/JeffPaine/beautiful_idiomatic_python.
Github gists don't support Pull Requests or any notifications, which made it impossible for me to maintain this (surprisingly popular) gist with fixes, respond to comments and so on. In the interest of maintaining the quality of this resource for others, I've moved it to a proper repo. Cheers!
-- Remove the history from | |
rm -rf .git | |
-- recreate the repos from the current content only | |
git init | |
git add . | |
git commit -m "Initial commit" | |
-- push to the github remote repos ensuring you overwrite history | |
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git |
import sys | |
import re | |
from llvm.core import Module, Constant, Type, Function, Builder | |
from llvm.ee import ExecutionEngine, TargetData | |
from llvm.passes import FunctionPassManager | |
from llvm.core import FCMP_ULT, FCMP_ONE | |
from llvm.passes import (#PASS_PROMOTE_MEMORY_TO_REGISTER, | |
PASS_INSTCOMBINE, |
#!/usr/bin/python | |
# CLI program to control the mediakeys on OS X. Used to emulate the mediakey on a keyboard with no such keys. | |
# Easiest used in combination with a launcher/trigger software such as Quicksilver. | |
# Main part taken from http://stackoverflow.com/questions/11045814/emulate-media-key-press-on-mac | |
# Glue to make it into cli program by Fredrik Wallner http://www.wallner.nu/fredrik/ | |
import Quartz | |
import sys |