Capo 7 (may be different to you; I use a customized tuning)
Intro
G C Em D
G C Em D
I'm not afraid that we faltered before
Every faEmll we endured made us wantD it all more
| #!/usr/bin/python | |
| import re | |
| import subprocess | |
| import sys | |
| jira_pattern = re.compile(r"[A-Z0-9]+-\d+") | |
| commit_msg_filename = sys.argv[1] | |
| with open(commit_msg_filename) as f: | |
| commit_msg = f.read() |
| import java.util.Date | |
| import akka.actor._ | |
| import scala.concurrent.duration._ | |
| class TimedActor extends Actor with ActorLogging { | |
| override def receive: Receive = onTimer(None, None) | |
| def onTimer(msgReceived: Option[Date], oldTimer: Option[Cancellable]): Receive = { | |
| case msg => | |
| oldTimer foreach (_.cancel()) |
| function untar_into() { | |
| [[ -z "$1" ]] && echo "No tar file specified" && return | |
| [[ -z "$2" ]] && echo "No destination specified" && return | |
| [[ ! -e "$1" ]] && echo "Specified tar file absent: $1" && return | |
| [[ -e "$2" ]] && echo "Destination dir already exists: $2" && return | |
| local archive=$1 | |
| local target=$2 | |
| mkdir -pv $target | |
| mv $archive $target |
| // Place your key bindings in this file to overwrite the defaults | |
| [ | |
| { | |
| "key": "alt+j", | |
| "command": "editor.action.triggerSuggest", | |
| "when": "editorHasCompletionItemProvider && editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+space", | |
| "command": "-editor.action.triggerSuggest", |
| // https://repl.it/@fswerneck/goroutines | |
| package main | |
| import "fmt" | |
| func consume(q <-chan interface{}, finish chan<- bool) { | |
| fmt.Println("getting from q") | |
| mydata := <-q | |
| fmt.Printf("got %v from q\n", mydata) |
Regra de linguística geral:
Isso se aplica em qualquer idioma.
A maioria dos advérbios são, por si só, criados a partir de adjetivos.
| /** | |
| * 2018-04-25 | |
| * WaniKani Reorder - wkreorder | |
| * Reorder your review items on the fly | |
| * (Optimized for phones) | |
| * | |
| * With wk-reorder, you're able to - tada - reorder your review items by some criteria. | |
| * As of this script, you're able to reorder them by SRS level, and type. | |
| * The script works by getting your current queue, and applying a sort function to make it | |
| * show items in the order you want them to - either ascendingly or descendingly. |
| /** | |
| * wkrollback - WaniKani Rollback Answer | |
| * Inspired by Wanikani Override userscript on Greasy Fork, | |
| * but aimed at mobiles, as an inline JavaScript bookmarklet. | |
| * This is the unminified code; use the minified version on | |
| * your browser. | |
| * | |
| * Author: Fabricio da Silva Werneck | |
| * Date: 2018-04-01 19:24 -0300 | |
| * |