slmgr /ipk your_license_key
Replace your_license_key
with following volumn license keys according to Windows Edition:
owner: tigefa4u # Your GitHub organization or username, where this repository lives | |
repo: status # The name of this repository | |
runner: [ubuntu-latest] | |
user-agent: tigefa4u | |
sites: | |
- name: Tigefa | |
url: https://tigefa.com | |
icon: https://tigefa.com/favicon.ico | |
- name: Tigefa Neet |
I hereby claim:
To claim this, I am signing this object:
[licenses] | |
# This indicates which are the only licenses that Licensebat will accept. | |
# The rest will be flagged as not allowed. | |
accepted = ["MIT", "MSC", "BSD"] | |
# This will indicate which licenses are not accepted. | |
# The rest will be accepted, except for the unknown licenses or dependencies without licenses. | |
# unaccepted = ["LGPL"] | |
# Note that only one of the previous options can be enabled at once. | |
# If both of them are informed, only accepted will be considered. |
FROM ruby:2.3.1-alpine | |
MAINTAINER Keifer Furzland <[email protected]> | |
# Env | |
ENV REFRESHED_AT 2016-09-21 | |
ENV REPO_DIR /home/ticketbuster/repo | |
ENV GEM_HOME /home/ticketbuster/gems | |
ENV ENV_FILE /home/ticketbuster/repo/.env | |
ENV BUILD_PACKAGES bash libffi-dev openssl-dev linux-headers zlib-dev readline-dev yaml-dev git curl-dev ruby-dev build-base | |
ENV RUBY_PACKAGES ruby-io-console ruby-bundler nodejs libxml2-dev mysql-dev mariadb-dev |
Brought to you by Headjack
FFmpeg is one of the most powerful tools for video transcoding and manipulation, but it's fairly complex and confusing to use. That's why I decided to create this cheat sheet which shows some of the most often used commands.
Let's start with some basics:
ffmpeg
calls the FFmpeg application in the command line window, could also be the full path to the FFmpeg binary or .exe fileThese are a few quick easy ffmpeg command lines that can be used to make oft-used video formats. I use them a lot so I wrote them down in a txt file but I converted it to markdown to upload here and access on all my pcs.
Feel free to use 'em. I've gathered them through superuser posts, wiki trawls, and personal experience.
-movflags faststart
to make mp4 files have their headers at the beginning of the file, allowing them to be streamed (i.e. played even if only part of the file is downloaded).libfdk_aac
isnt available (it's the only good aac enc) use libmp3lame
.-preset X
to use mp4 enc presets, like slow or superfast. (veryfast or fast is ok)c:v
refers to the video codec used (codec: video). Likewise, c:a
is audio. If you're using -map
or something, this can be extended (-c:a:0
: codec: audio: stream 0)adapted from the article "Crawling anonymously with Tor in Python" by S. Acharya, Nov 2, 2013.
The most common use-case is to be able to hide one's identity using TOR or being able to change identities programmatically, for example when you are crawling a website like Google and you don’t want to be rate-limited or blocked via IP address.
Install Tor.