Skip to content

Instantly share code, notes, and snippets.

View freetonik's full-sized avatar

Rakhim Davletkaliyev freetonik

View GitHub Profile

Нам в Хекслет нужен новый человек.

Задачи:

  • Заниматься продвижением Хекслета в Рунете.
  • Общаться с партнерами (сайты об ИТ, сообщества в соц. сетях, и т.д.), распространять наши материалы и курсы.
  • Проводить рекламные кампании, промо-акции и пр.
  • Анализировать эффективность этих мероприятий (google analytics, adwords analytics, etc).
  • SMM. Публиковать материалы и анализировать конверсии.
  • Общаться с учениками в соц. сетях, чате.
@sam217pa
sam217pa / tufte-book.tex
Last active March 2, 2021 21:57
a template to export from org-mode to latex
\usepackage[scaled=0.95]{roboto}
\usepackage{mathpazo}
\linespread{1.05}
\usepackage{eulervm}
\usepackage[usenames]{xcolor}
%% footnote color
\renewcommand{\thefootnote}{\textcolor{Gray}{\arabic{footnote}}}
\makeatletter
@A
A / fiftyfootshadows.sh
Last active February 20, 2016 11:22
download all awesome desktop wallpapers from fiftyfootshadows.net
mkdir fiftyfootshadows
cd fiftyfootshadows
wget -A zip -rH --level=3 -nd \
--domains=files.fiftyfootshadows.net,fiftyfootshadows.net \
http://fiftyfootshadows.net
for i in `ls`; do unzip $i; done
mv **/*desktop.jpg ~/Pictures
cd ..
rm -rf fiftyfootshadows
@kyrylo
kyrylo / jsfe-1-1.js
Created December 15, 2013 15:03
JavaScript for entertainment 1. Inspired by freetonik.
/*
* By default, `eval` evaluates code in the current context.
*/
var x = 0;
function foo() {
var x = 5;
eval('x = 100');
return x;
}
@ndarville
ndarville / business-models.md
Last active January 13, 2024 17:27
Business models based on the compiled list at http://news.ycombinator.com/item?id=4924647. I find the link very hard to browse, so I made a simple version in Markdown instead.

Business Models

Advertising

Models Examples
Display ads Yahoo!
Search ads Google
@brandonb927
brandonb927 / osx-for-hackers.sh
Last active May 5, 2024 13:30
OSX for Hackers: Yosemite/El Capitan Edition. This script tries not to be *too* opinionated and any major changes to your system require a prompt. You've been warned.
#!/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
@sklppr
sklppr / mac-checklist.md
Created March 30, 2012 11:36
Mac Checkliste

Mac Checklist

Important things when doing a clean install of Mac OS X

Setup

Backup

  • Contacts
  • Calendar
@markbates
markbates / registration.feature
Created March 4, 2011 15:30
Cucumber Story
Feature: Registration
In order to use My Great Application
As a user
I want to be able to register
Scenario: 'Standard Registration'
Given I am not currently logged in
When I am on the signup page
Then I should see "Sign Up"
And I fill in "Name (required)" with "Mickey Dolenz"
@dnagir
dnagir / rspec-syntax-cheat-sheet.rb
Created November 5, 2010 09:29
RSpec 2 syntax cheat sheet by example
# RSpec 2.0 syntax Cheet Sheet by http://ApproachE.com
# defining spec within a module will automatically pick Player::MovieList as a 'subject' (see below)
module Player
describe MovieList, "with optional description" do
it "is pending example, so that you can write ones quickly"
it "is already working example that we want to suspend from failing temporarily" do
pending("working on another feature that temporarily breaks this one")