Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
| library(rtweet) | |
| library(tidyverse) | |
| library(lubridate) | |
| library(gganimate) | |
| # Extraer tweets de Andrea Gomez | |
| reconteo = search_tweets( | |
| q = "angiegomeza AND Actualización AND Diferencia", | |
| include_rts = F | |
| ) |
| #!/bin/bash | |
| if [[ $# -eq 0 ]] ; then | |
| echo 'Give me a parameter :D' | |
| exit 0 | |
| fi |
| require 'rest_client' | |
| class parse_link_headers | |
| def self.parse_link_header(url, params={}) | |
| response = RestClient.get url, params | |
| links = Hash.new | |
| parts = response.headers[:link].split(',') | |
| # Parse each part into a named link | |
| parts.each do |part, index| |
| export const signIn = (email, password) => { | |
| return (dispatch, getState) => { | |
| return new Promise((resolve, reject) => { | |
| return fetch(`${BASE_URL}/auth/sign_in`, { | |
| method: 'POST', | |
| timeout: REQUEST_TIMEOUT, | |
| headers: { | |
| 'Content-Type': 'application/json', | |
| }, | |
| body: JSON.stringify({ |
| require 'minitest/autorun' | |
| require 'minitest/spec' | |
| #:nodoc: | |
| class TestCompensation < Minitest::Test | |
| def setup | |
| @compensation = Compensation.new | |
| end | |
| describe 'when worked less than 12 months' do |
| # config/routes.rb | |
| resources :documents do | |
| scope module: 'documents' do | |
| resources :versions do | |
| post :restore, on: :member | |
| end | |
| resource :lock | |
| end | |
| end |
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.
| ּ_בּ | |
| בּ_בּ | |
| טּ_טּ | |
| כּ‗כּ | |
| לּ_לּ | |
| מּ_מּ | |
| סּ_סּ | |
| תּ_תּ | |
| ٩(×̯×)۶ | |
| ٩(̾●̮̮̃̾•̃̾)۶ |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |