The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55 will be the first on the list, already selected:
🇧🇷 [pt-BR]
| git checkout <branch> | |
| git fetch <other-fork-alias> | |
| git cherry-pick <commit-hash> | |
| git push <your-fork-alias> |
| #!/usr/bin/env bash | |
| # | |
| # This is sp, the command-line Spotify controller. It talks to a running | |
| # instance of the Spotify Linux client over dbus, providing an interface not | |
| # unlike mpc. | |
| # | |
| # Put differently, it allows you to control Spotify without leaving the comfort | |
| # of your command line, and without a custom client or Premium subscription. | |
| # |
The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55 will be the first on the list, already selected:
🇧🇷 [pt-BR]
| :profile start profile.log | |
| :profile func * | |
| :profile file * | |
| " At this point do slow actions | |
| :profile pause | |
| :noautocmd qall! |
| # Get releases for your repository (change the URL and add user/password if necessary) | |
| # If there's more than one page, you might have to do more requests with `?page=2` etc | |
| curl https://api.github.com/repos/:owner/:repo/releases > releases.json | |
| # Use jq! https://stedolan.github.io/jq/ | |
| # "v" is a prefix to strip from the release names, might not be necessary | |
| jq -r '.[] | "## [" + (.name | ltrimstr("v")) + "] - " + .created_at[:10] + "\n" + .body' releases.json >> CHANGELOG.md | |
| # Now edit the CHANGELOG.md, see here: http://keepachangelog.com/en/1.0.0/ |
Hmm... I don't see any docs for 4.0 on https://webpack.js.org. I guess I'll just wing it.
All I need to do is npm i -D webpack@next, right?
+ webpack@4.0.0-beta.2
| ;; Deve estar em `src/clojurebrasil/core.clj` | |
| ;; Execute `lein repl` na pasta do project.clj e tudo deve funcionar | |
| (ns clojurebrasil.core | |
| (:require [datomic.api :as d] | |
| [cheshire.core :as cheshire] | |
| [io.pedestal.http :as http])) | |
| (def schema | |
| [{:db/doc "id do usuário" |
| set clipboard=unnamed | |
| imap jj <ESC> | |
| nnoremap <Leader>s :%s/\<<C-r><C-w>\>/ | |
| nnoremap <Leader>a :noh<CR> | |
| nnoremap <Leader>c *Nciw | |
| nnoremap <Leader>f :/\%<c-r>=line('.')<cr>l | |
| nnoremap <CR> o<ESC> |
| ;; ~/.config/conjure/conjure.edn | |
| {:conns | |
| ;; My `clj -Aprepl-server` alias spits out a `.socket-port` file when it starts | |
| ;; a prepl server. This configuration allows Conjure to find the prepl server | |
| ;; without needing to specify the port explicitly. | |
| {:cwd {:port #slurp-edn ".socket-port"}}} |
| ;; ~/.config/conjure/conjure.edn | |
| {:conns | |
| ;; My `prepl-server` task spits out a `.socket-port` file when it starts a | |
| ;; prepl server. This configuration allows Conjure to find the prepl server | |
| ;; without needing to specify the port explicitly. | |
| {:cwd {:port #slurp-edn ".socket-port"}}} |