Skip to content

Instantly share code, notes, and snippets.

View krasnobaev's full-sized avatar
👨‍🔬

Aleksey Krasnobaev krasnobaev

👨‍🔬
View GitHub Profile
@dukeofharen
dukeofharen / dazzamack-edm.txt
Created August 20, 2019 10:33
Dazzamack's original top 1000 favourite EDM tracks (originally from listology.com, but that site is down)
Massive Attack - Unfinished Sympathy [Paul Oakenfold Mix] (1991)
{Downtempo, Trip Hop}
In my opinion, the best electronic track I've heard. A "Massive" tune. From their debut album “Blue Lines”, this Bristol act fused Hip Hop elements & Electronica into a style which would later be known as Trip-Hop. Shara Nelson’s R&B vocals are simply awesome in this tune. Even the music video is superb, with Shara just walking through some crappy US streets singing away, oblivious to all the crap around her. This track was the first of many great tunes by Massive Attack. Tricky from Massive Attack went on to a great solo career and Massive Attack also influenced future trip hop artists like Portishead, DJ Shadow & Sneaker Pimps.
Age Of Love - The Age Of Love [Watch Out For Stella Mix] (1990, 1992)
{Trance}
Originally released in 1990, it is generally accepted, along with Dance 2 Trance’s “We Come In Peace” as the first "true" trance tracks. However, KLF’s 1988 track “What Time Is Love? (Pure Trance 1)” could be consider
@dukeofharen
dukeofharen / darktremor-trance.txt
Last active December 8, 2022 04:45
Darktremor's original top 400 favourite trance tracks (originally from listology.com, but that site is down)
_These are the rules for posting recommendations. If you break one, I will ignore you. Read them before making a suggestion:
1.If you suggest even one track that is already on the list, I will ignore all other tracks in your suggested list. Use edit/find (on this page), or hit control-f to search out tracks before recommending them. Don't just whip your playlist off into the comments, I want you to make sure it's a)better than some of the tracks on this list, and b)NOT ALREADY ON IT, before you suggest I add it. This list is massive, and the base of tracks it was selected out of is even bigger. I don't mean to be a jerk about it, but I don't have the time to sift through records that are already on the list. Plus, that tells me you didn't think about your suggestion.
2.If you've been listening to trance for less than 9 months, you have a DJ Mystik track on your computer anywhere, or you still (seriously) find tracks by typing "trance" or "techno" into a file sharing program, then please don't suggest anythi
@MaxGraey
MaxGraey / Wasm-FAQ-2019.md
Last active January 19, 2024 22:26
WebAssembly FAQ для телеграм сообщества WebAssembly_ru

Введение

Данный FAQ был специально создан для телеграм сообщества https://t.me/WebAssembly_ru.

Он базируется на статье от Andre Weissflog, но так же содержит множество моих дополнений и мыслей, которые могут быть уже не слишком актуальны на момент прочтения. Прошу это учитывать.

0. Какие цели у WebAssembly?

@anis-campos
anis-campos / cross-compile_filebeat_arm.sh
Last active December 15, 2018 22:25
Cross-compile Elastic Filebeat for ARM with docker. Works Raspberry Pi 2
#----- Create a Docker for cross-compilation -----#
mkdir build && cd $_
docker run -it --rm -v `pwd`:/build golang:1.8.3 /bin/bash
#----- Inside docker -----#
go get github.com/elastic/beats
cd /go/src/github.com/elastic/beats/filebeat/
git checkout v5.6.3
GOARCH=arm go build
cp filebeat /build
exit
@muendelezaji
muendelezaji / bash-to-zsh-hist.py
Created October 5, 2016 14:18 — forked from op/bash-history-to-zsh-history.py
Convert Bash history to Zsh history
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This is how I used it:
# $ cat ~/.bash_history | python bash-to-zsh-hist.py >> ~/.zsh_history
import sys
import time
@whophil
whophil / jupyter.service
Last active October 30, 2023 16:33 — forked from doowon/jupyter_systemd
A systemd script for running a Jupyter notebook server.
# After Ubuntu 16.04, Systemd becomes the default.
# It is simpler than https://gist.github.com/Doowon/38910829898a6624ce4ed554f082c4dd
[Unit]
Description=Jupyter Notebook
[Service]
Type=simple
PIDFile=/run/jupyter.pid
ExecStart=/home/phil/Enthought/Canopy_64bit/User/bin/jupyter-notebook --config=/home/phil/.jupyter/jupyter_notebook_config.py
@cvan
cvan / set-up-chromium-keys.md
Last active June 14, 2024 14:29
Launch Chromium with API Keys on Mac OS X and Windows

Last Updated: March 2023

IMPORTANT: Ignore the out-of-date steps below for getting Chromium keys.

Instead, read this up-to-date guide (Jan 2023) written by @LearningToPi.

P.S. Thank you to every contributor below who provided tips over the years on what should be a straightforward process: setting up Chromium for local development.

Long live the web!

@ace-dent
ace-dent / TODAY service
Created April 3, 2015 22:19
Insert today's date in Mac OS X. Add as a Service via Automator using AppleScript, to create a Shortcut.
on run
# TODAY - Returns today's date!
# Create your own Service, to avoid 3rd Party software (WordService, etc.)
# In Automator:
# > Service receives 'no input' in 'any application'
# > Output replaces selected text
# Add Shortcut (e.g. Ctrl+Cmd+T - it's hard to find a free shortcut!):
# > Preferences > Keyboard > Keyboard Shortcuts > Services
# When setting up Keyboard Shortcut, *exit* the target app before testing. (It seems shortcuts are only refreshed when app is launched)
# Adjust 'Short' Date format
@staltz
staltz / introrx.md
Last active July 15, 2024 15:43
The introduction to Reactive Programming you've been missing
@datagrok
datagrok / vendoring.md
Last active November 3, 2023 17:37
"Vendoring" is a vile anti-pattern

"Vendoring" is a vile anti-pattern

What is "vendoring"?

From a comment on StackOverflow:

Vendoring is the moving of all 3rd party items such as plugins, gems and even rails into the /vendor directory. This is one method for ensuring that all files are deployed to the production server the same as the dev environment.

The activity described above, on its own, is fine. It merely describes the deployment location for various resources in an application.