Skip to content

Instantly share code, notes, and snippets.

View r3nya's full-sized avatar
☮️
¯\_(ツ)_/¯

Andrew M. r3nya

☮️
¯\_(ツ)_/¯
View GitHub Profile
import React, { PropTypes, Component, cloneElement, Children } from 'react';
const window = window;
export default class Fullscreen extends Component {
constructor(props) {
super(props);
this.state = this.getDimensions();
}
@r3nya
r3nya / vim.md
Last active January 21, 2016 14:26

Config

" Auto install vim-plug
if empty(glob("~/.vim/autoload/plug.vim"))
  execute '!curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.github.com/junegunn/vim-plug/master/plug.vim'
endif

" Plugins
call plug#begin('~/.vim/plugged')
@r3nya
r3nya / gulpfile.js
Created December 22, 2015 10:31 — forked from c01nd01r/gulpfile.js
Gulp build error to browser
//npm i gulp gulp-stylus gulp-plumber browser-sync bs-fullscreen-message
var gulp = require('gulp');
var stylus = require('gulp-stylus');
var plumber = require('gulp-plumber');
var browserSync = require('browser-sync').create();
//Enable "Fullscreen Messages" plugin in Browsersync Plugins web settings (http://localhost:3001/plugins)
//Notification template
var bsError = function(data) {

Keybase proof

I hereby claim:

  • I am r3nya on github.
  • I am r3nya (https://keybase.io/r3nya) on keybase.
  • I have a public key whose fingerprint is C469 79D4 3260 4D1C 53C5 252C 913F E3A9 45D9 2E6E

To claim this, I am signing this object:

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
#!/usr/bin/env sh
tweetbot_running() {
ps x | grep -v grep | grep Tweetbot > /dev/null
}
clean_tweetbot_cache() {
rm -rf ~/Library/Containers/com.tapbots.TweetbotMac/Data/Library/Caches/com.tapbots.TweetbotMac
}
@r3nya
r3nya / Install_fira.sh
Created February 27, 2015 08:36
Install Fira fonts
#!/bin/bash
cd /tmp
# install unzip just in case the user doesn't already have it.
sudo apt-get install unzip -y
wget "http://www.carrois.com/wordpress/downloads/fira_3_1/FiraFonts3111.zip"
unzip FiraFonts3111.zip
@r3nya
r3nya / gulpfile.js
Last active August 29, 2015 14:16
Translite
var gulp = require('gulp'),
path = require('path'),
rename = require('gulp-rename'),
translit = require('translitit-cyrillic-russian-to-latin');
gulp.task('files', function () {
gulp.src('./файл.txt')
.pipe(rename(function (path) {
path.basename = translit(path.basename);
}))