Skip to content

Instantly share code, notes, and snippets.

View rscnt's full-sized avatar
👁️‍🗨️

raul rscnt

👁️‍🗨️
View GitHub Profile
@rscnt
rscnt / arXiv popularity scoring.ipynb
Last active September 6, 2015 21:34 — forked from nebw/arXiv popularity scoring.ipynb
Popularity scoring for arXiv publications
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rscnt
rscnt / .Xdefaults
Created March 15, 2016 15:14 — forked from msimpson/.Xdefaults
Darken
urxvt.termName: rxvt
urxvt.loginShell: true
urxvt*urlLauncher: /usr/bin/chromium
urxvt*perl-lib: /usr/lib/urxvt/perl/
urxvt*perl-ext-common: default,matcher,searchable-scrollback
urxvt*font: xft:DejaVu Sans Mono:pixelsize=10
urxvt*boldFont: xft:DejaVu Sans Mono:pixelsize=10
urxvt.scrollBar: false
urxvt.saveLines: 65535
urxvt.secondaryScroll: true
@rscnt
rscnt / introrx.md
Created November 15, 2016 22:32 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@rscnt
rscnt / gitflow-breakdown.md
Last active January 31, 2022 15:47 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop main

Connect to the remote repository