Setting up a Mac for installation
Setting up a Windows machine for installation
ffWorks GUI for the all powerful FFmpeg
easterEgg.BadWorder.list={ | |
"4r5e":1, | |
"5h1t":1, | |
"5hit":1, | |
a55:1, | |
anal:1, | |
anus:1, | |
ar5e:1, | |
arrse:1, | |
arse:1, |
#!/bin/sh | |
### | |
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
### | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
require 'openssl' | |
require 'base64' | |
require 'json' | |
require 'httpclient' | |
http = HTTPClient.new(:agent_name => useragent) | |
key = "" #The Private key | |
login_info = {:guid => "00000000-0000-0000-0000-000000000000", | |
:password => "PASSWORD", | |
:username => "USERNAME", |
/* | |
A userscript to add keyboard shortcuts to the Instagram timeline: | |
- J or space to go to next image | |
- K to go to previous image | |
- L to toggle like on the current image | |
- N to load new posts | |
*/ | |
$(document.body).keypress(function(event) { | |
// ignore keypresses in comment fields |
1) Make a download dir to store the node source and download it. | |
mkdir downloads | |
cd downloads | |
git clone https://github.com/joyent/node.git | |
Find the latest version | |
2) List all of the tags in the repository, and check out the most recent. | |
git tag | |
git checkout v0.9.9 |
Setting up a Mac for installation
Setting up a Windows machine for installation
ffWorks GUI for the all powerful FFmpeg
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# | |
# Description: Sync Plex playlists to shared users. | |
# Author: /u/SwiftPanda16 | |
# Requires: plexapi | |
from plexapi.exceptions import NotFound | |
from plexapi.server import PlexServer |
import React from 'react'; | |
import reconciler from './reconciler'; | |
const App = () => { | |
return <h1>Hello World</h1>; | |
}; | |
const render = (tree, target) => { | |
const container = reconciler.createContainer(target); | |
container.updateContainer(tree, container); |
module.exports = (nextConfig) => { | |
return Object.assign({}, nextConfig, { | |
webpack(webpackConfig, nextContext) { | |
// NOTE: use whatever environment variable you'd like here to determine | |
// what environment should have minimization disabled. | |
if (process.env.NODE_ENV === 'development') { | |
webpackConfig.optimization.minimize = false; | |
webpackConfig.optimization.minimizer = []; | |
} |
The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
import foo from 'foo'
instead of const foo = require('foo')
to import the package. You also need to put "type": "module"
in your package.json and more. Follow the below guide.await import(…)
from CommonJS instead of require(…)
.