Skip to content

Instantly share code, notes, and snippets.

View netoneko's full-sized avatar

Kirill Maksimov netoneko

  • Tel Aviv, Israel
View GitHub Profile
@strizhechenko
strizhechenko / porno.md
Last active June 13, 2023 19:24
Код ниже генерирует прекрасные названия, не знаю для чего, новые жанры порно или названия программных проектов.
#!/usr/bin/env bash

if [ ! -f /tmp/linux ]; then
    curl -sS https://www.linux.org.ru/ | egrep -o /tag/[0-9a-z-]+ | sed 's|/tag/||' > /tmp/linux
fi
if [ ! -f /tmp/pron ]; then
    curl -sS http://www.xvideos.com/tags  | egrep -o /tags/[a-z0-9-]+ | sed 's|/tags/||' > /tmp/pron
fi
@jamiehodge
jamiehodge / libav.rb
Created December 20, 2012 08:56
Homebrew Libav formula
require 'formula'
class Libav < Formula
homepage 'http://libav.org/'
url 'http://libav.org/releases/libav-9_beta2.tar.xz'
sha1 'acb7ffbcded06e5f04e8fd0f7dbcc923fd95df3f'
head 'git://git.libav.org/libav.git'
option "without-x264", "Disable H264 encoder"
@cypriss
cypriss / README.md
Last active June 18, 2018 11:57
Rails 2.3.14 Ruby 1.9.3 - Monkey Patches

How we upgraded UserVoice, a Rails 2.3.14 app, to Ruby 1.9.3.

Blog post here