Skip to content

Instantly share code, notes, and snippets.

View evansantos's full-sized avatar
🎯
Focusing

Evandro Cavalcante Santos evansantos

🎯
Focusing
View GitHub Profile
@jdnichollsc
jdnichollsc / index.js
Created February 23, 2019 05:43
Get areas of shapes - Hackerrank
const getArea = (shape, values) => {
let area = -1
switch(shape) {
case "square":
area = Math.pow(values[0], 2);
break;
case "rectangle":
area = values[0] * values[1];
break;
case "circle":
@jdnichollsc
jdnichollsc / ABC.md
Last active April 16, 2024 03:40
The Job Interview Guide

The Job Interview Guide 💼

And English is a Work in Progress ⌛

@dominictarr
dominictarr / readme.md
Created November 26, 2018 22:39
statement on event-stream compromise

Hey everyone - this is not just a one off thing, there are likely to be many other modules in your dependency trees that are now a burden to their authors. I didn't create this code for altruistic motivations, I created it for fun. I was learning, and learning is fun. I gave it away because it was easy to do so, and because sharing helps learning too. I think most of the small modules on npm were created for reasons like this. However, that was a long time ago. I've since moved on from this module and moved on from that thing too and in the process of moving on from that as well. I've written way better modules than this, the internet just hasn't fully caught up.

@broros

otherwise why would he hand over a popular package to a stranger?

If it's not fun anymore, you get literally nothing from maintaining a popular package.

One time, I was working as a dishwasher in a restu

@jevakallio
jevakallio / reactiveconf-slam-poetry.md
Last active July 7, 2021 19:57
#ReactiveConf 2017 Lightning Talk Submission: JavaScript Slam Poetry

TL;DR: If you want to see me perform a spoken word poem about JavaScript in front of 1000 people (and on video), please ⭐ star this gist. If you're on mobile, you'll need to request desktop site.

JavaScript Slam Poetry

Javascript! Slam! Poetry!

@geoffreydhuyvetters
geoffreydhuyvetters / react_fiber.md
Last active January 13, 2023 06:49
What is React Fiber? And how can I try it out today?
@gustavonovaes
gustavonovaes / after-install-antergos.md
Last active February 27, 2018 02:56
Things to do after install Antergos

Update

sudo pacman -Syyu

Core Programs

sudo pacman -S --noconfirm git zsh \
  vlc qt4 \
  dsniff nmap
@eyecatchup
eyecatchup / mr.robot_season-2_easter-egg-sites.md
Last active April 4, 2024 10:39
A collection of "Mr. Robot" Season 2 Easter Egg Sites. #mrrobot #hackingrobot #robotegg
@eyecatchup
eyecatchup / mr.robot_season-2_extra-clips.json
Last active July 28, 2016 17:35
Mr. Robot 5/9 hack related extra video clips - released pre season 2. As found on https://www.whoismrrobot.com/fivenine/assets/main.cf6ea124fbeff9f381f2.js. NOTE: (Except for "clip0.1_cyb3rs3curity.mp4") videos are geo-targeted (I guess, US-only)! #mrrobot #hackingrobot #robotegg
{
id: 0,
name: "Wanted Poster",
filename: "clip0.5_w4n73d.mp4",
thumbnail: "images/thumb06.jpg",
type: "platform",
platformUrl: "https://player.theplatform.com/p/HNK2IC/dd_usa_vod_noauth_duplicate_ssl/select/media/guid/2140458126/3047282?autoPlay=true&pdk=5.6.6"
},
{
id: 1,
@adeekshith
adeekshith / .git-commit-template.txt
Last active February 21, 2024 12:06 — forked from Linell/.git-commit-template.txt
This commit message template helps you write great commit messages and enforce it across teams.
# <type>: (If applied, this commit will...) <subject> (Max 50 char)
# |<---- Using a Maximum Of 50 Characters ---->|
# Explain why this change is being made
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->|
# Provide links or keys to any relevant tickets, articles or other resources
# Example: Github issue #23