Skip to content

Instantly share code, notes, and snippets.

View applicato's full-sized avatar

applicato

  • Ireland
View GitHub Profile

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
### Keybase proof
I hereby claim:
* I am botessa on github.
* I am akkuraten (https://keybase.io/akkuraten) on keybase.
* I have a public key ASA7CohaYryVSLyiY15EP54a_hokN5Y1dIt34U5gP17Mrwo
To claim this, I am signing this object:
@applicato
applicato / checklist.md
Created July 20, 2018 20:23 — forked from askd/checklist.md
Чеклист спикера

Общее

  1. Представься: краткая информация о себе – имя, место работы, чем занимаешься, можно фото для тех, кто будет смотреть слайды отдельно
  2. План доклада: несколько пунктов (лучше не более 5) о чём будет доклад. Это могут быть главы доклада (кстати, составление плана может помочь грамотнее структурировать доклад ещё при создании)
  3. Зачем: кратко рассказать, чем то, о чем рассказываешь в докладе, может быть полезно остальным – и разработчикам, и руководителям, и клиентам (можно акцентироваться на аудитории конкретной конфы – например если там есть дизайнеры, бэкенды, то упомянуть, что они могут узнать из доклада)
  4. Итоги: в конце доклада ещё раз пройтись по плану и подвести итог по каждому пункту – что узнали, чему научились
  5. Контакты: как слушатель и тот кто смотрит слайды может связаться и задать вопрос

Оформление

Радость

(^ω^) (´∀`) (-‿‿-) ☆*:.。.o(≧▽≦)o.。.:*☆

(o^▽^o) (⌒▽⌒)☆ <( ̄︶ ̄)> 。.:☆*:・'(⌒―⌒)))

ヽ(・∀・)ノ (´。• ω •。`) ( ̄ω ̄) `;:゛;`;・(゜ε゜ )

(o・ω・o) (@^-^) ヽ(*・ω・)ノ (o_ _)ノ彡☆

@applicato
applicato / vpn_psk_bingo.md
Created July 8, 2018 23:50 — forked from kennwhite/vpn_psk_bingo.md
Most VPN Services are Terrible

Most VPN Services are Terrible

Short version: I strongly do not recommend using any of these providers. You are, of course, free to use whatever you like. My TL;DR advice: Roll your own and use Algo or Streisand. For messaging & voice, use Signal. For increased anonymity, use Tor for desktop (though recognize that doing so may actually put you at greater risk), and Onion Browser for mobile.

This mini-rant came on the heels of an interesting twitter discussion: https://twitter.com/kennwhite/status/591074055018582016

# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@applicato
applicato / Foo.test.js
Created July 6, 2018 11:31 — forked from mweibel/Foo.test.js
Mock react-beautiful-dnd
// mocks react-beautiful-dnd Droppable without the need of a DragDropContext etc.
jest.mock('react-beautiful-dnd', () => ({
Droppable: jest.fn(
// params to children are `provider`, `snapshot`
({children}) => children({}, {})
)
}));
@applicato
applicato / gist:ede2c880704f8bf9d65f32504d3bb88e
Created July 2, 2018 15:35 — forked from mikehaertl/gist:3258427
Learn you a Haskell - In a nutshell

Learn you a Haskell - In a nutshell

This is a summary of the "Learn You A Haskell" online book under http://learnyouahaskell.com/chapters.


1. Introduction

  • Haskell is a functional programming language.