Skip to content

Instantly share code, notes, and snippets.

View bayborodin's full-sized avatar
🏠
Looking for a remote job as a Python developer

Nicholas Bayborodin bayborodin

🏠
Looking for a remote job as a Python developer
  • SKAT
  • Khabarovsk, Russia
View GitHub Profile
@bayborodin
bayborodin / css_reset.css
Created February 6, 2018 01:08 — forked from freetonik/css_reset.css
Eric Meyer’s CSS Reset 2.0
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
var readline = require('readline');
process.stdin.setEncoding('utf8');
var rl = readline.createInterface({
input: process.stdin,
terminal: false
});
rl.on('line', readLine);
@bayborodin
bayborodin / coursera.java
Created October 26, 2017 11:40
Coursera template
import java.util.Scanner;
class APlusB {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
int a = s.nextInt();
int b = s.nextInt();
System.out.println(a + b);
}
}
@bayborodin
bayborodin / README-Template.md
Created March 11, 2017 13:34 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites