Skip to content

Instantly share code, notes, and snippets.

@JoanMora
JoanMora / headtail.js
Created July 13, 2021 11:02 — forked from koozdra/headtail.js
head and tail destructuring in javascript
const [head, ...tail] = [1,2,3];
// head 1
// tail [2,3]
@JoanMora
JoanMora / date_range.sql
Created May 3, 2021 13:59 — forked from n0531m/date_range.sql
BigQuery : Generate range of dates
SELECT day
FROM UNNEST(
GENERATE_DATE_ARRAY(DATE('2020-01-01'), DATE('2020-01-31'), INTERVAL 1 DAY)
) as day
Taken from: https://hackerlists.com/hacking-sites/
22 Hacking Sites, CTFs and Wargames To Practice Your Hacking Skills
InfoSec skills are in such high demand right now. As the world continues to turn everything into an app and connect even the most basic devices to the internet, the demand is only going to grow, so it’s no surprise everyone wants to learn hacking these days.
However, almost every day I come across a forum post where someone is asking where they should begin to learn hacking or how to practice hacking. I’ve compiled this list of some of the best hacking sites to hopefully be a valuable resource for those wondering how they can build and practice their hacking skill set. I hope you find this list helpful, and if you know of any other quality hacking sites, please let me know in the comments, so I can add them to the list.
1. CTF365 https://ctf365.com/
@JoanMora
JoanMora / brand_new_repo_git.md
Created July 23, 2019 22:27 — forked from amitmerchant1990/brand_new_repo_git.md
Setup a brand new repo on Git
1) Configure your user and email for Git via the following command.
  • configure the user which will be used by git

  • Of course you should use your name

    git config --global user.name "Example Surname"

  • Same for the email address

    git config --global user.email "[email protected]"

@JoanMora
JoanMora / tmux-cheatsheet.markdown
Created June 26, 2019 11:47 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname