How do I learn Git: http://rogerdudler.github.io/git-guide/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
puts -> () { | |
f = -> () { -> () { -> (n) { -> () { -> (n) { n + 1 }.(1) }.() }.("Hello!") }.() } | |
g = -> () { -> () { f.() }.() } | |
-> () { g.() }.() | |
}.() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
September 2016 | |
--- | |
alpine: 4265 entries | |
archlinux: 9792 entries | |
blender: 0 entries | |
centos: 1028410 entries | |
clonezilla: 4619 entries | |
cpan: 1685 entries | |
cran: 7569 entries | |
ctan: 6547 entries |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "name": "blocked", "color": "8e44ad", "description": "Cannot be worked on until other issues / PRs are resolved" }, | |
{ "name": "breaking", "color": "96281b", "description": "Change will require a major version bump" }, | |
{ "name": "bug", "color": "d73a4a" }, | |
{ "name": "discussion", "color": "6bb9f0" }, | |
{ "name": "documentation", "color": "446cb3" }, | |
{ "name": "duplicate", "color": "cfd3d7" }, | |
{ "name": "engineering", "color": "f7ca18", "description": "Pertains to infrastructure around project (CI, build tools, etc)" }, | |
{ "name": "enhancement", "color": "a2eeef", "description": "Planned feature" }, | |
{ "name": "good first issue", "color": "7057ff", "description": "If you're new to the project, this would be a good issue to try resolving first" }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const yamlParser = require("js-yaml"); | |
const fs = require("fs"); | |
const path = require("path"); | |
const doc = yamlParser.safeLoad( | |
fs.readFileSync(path.join(__dirname, "doc-links.yaml")) | |
); | |
const doc2 = yamlParser.safeLoad( | |
fs.readFileSync(path.join(__dirname, "contributing-links.yaml")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
<style> | |
body { | |
width: 10000px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build on push | |
on: | |
push: | |
paths-ignore: | |
- ".github/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push | |
name: Workflow | |
jobs: | |
work: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- id: base_check | |
name: check if repo is base | |
run: | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
day | hour | value | |
---|---|---|---|
Sun | 0 | 2 | |
Sun | 1 | 2 | |
Sun | 2 | 3 | |
Sun | 3 | 3 | |
Sun | 4 | 4 | |
Sun | 5 | 2 | |
Sun | 6 | 2 | |
Sun | 7 | 2 | |
Sun | 8 | 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs') | |
function readFile(path) { | |
return fs.readFileSync(path, { encoding: 'utf8' }) | |
} | |
module.exports = { | |
readFile | |
} |
OlderNewer