Skip to content

Instantly share code, notes, and snippets.

View RaDeleon's full-sized avatar
🥊
Focusing

Angelo De Leon RaDeleon

🥊
Focusing
View GitHub Profile
@RaDeleon
RaDeleon / lild4d-kali-2.0-auto-up-dateload.sh
Last active October 28, 2019 19:33
Kali Linux 2.0 Auto Update and Upgrade script to apt-get update and upgrade in one shot and run apt-autoclean.
#!/bin/bash
clear
echo -e "K@l1 L1N4X upd4t3 $cr1pt"
echo "Press ENTER to continue, CTRL+C to abort."
read input
echo -e "\e[1;36m[+] Updating Kali. Please wait.\e[0m"
apt-get update -y > /dev/null && apt-get upgrade -y > /dev/null && apt-get dist-upgrade -y > /dev/null
@RaDeleon
RaDeleon / getBlockLists.sh
Last active November 9, 2017 03:12 — forked from johntyree/getBlockLists.sh
For use with Transmission for Mac OSX torrent app. Make one large blocklist from the bluetack lists on iblocklist.com. Keeps updating the blocklist to block ips known to serve malware infected torrent files.
#!/usr/bin/env sh
# Download lists, unpack and filter, write to stdout
curl -s https://www.iblocklist.com/lists.php \
| sed -n "s/.*value='\(http:.*=bt_.*\)'.*/\1/p" \
| xargs wget -O - \
| gunzip \
| egrep -v '^#'
@RaDeleon
RaDeleon / 0_reuse_code.js
Created March 22, 2016 02:34
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@RaDeleon
RaDeleon / 0-array.js
Created November 9, 2017 03:18 — forked from mpj/0-array.js
Code to the video - "Map: Part 2 of Functional Programming in JavaScript"
var animals = [
{ name: 'Fluffykins', species: 'rabbit' },
{ name: 'Caro', species: 'dog' },
{ name: 'Hamilton', species: 'dog' },
{ name: 'Harold', species: 'fish' },
{ name: 'Ursula', species: 'cat' },
{ name: 'Jimmy', species: 'fish' }
]
@RaDeleon
RaDeleon / LICENSE
Created September 10, 2018 19:03 — forked from ourmaninamsterdam/LICENSE
Arrayzing - The JavaScript array cheatsheet
The MIT License (MIT)
Copyright (c) 2015 Justin Perry
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
@RaDeleon
RaDeleon / fsw-14-components-ii-complete.markdown
Created September 20, 2018 18:09
FSW 14 - Components - II-Complete
@RaDeleon
RaDeleon / fsw-14-this-keyword.markdown
Created September 20, 2018 18:10
FSW 14: This Keyword
@RaDeleon
RaDeleon / fsw-14-prototypes.markdown
Created September 20, 2018 18:10
FSW 14: Prototypes
@RaDeleon
RaDeleon / fsw-14-class-syntax.markdown
Created September 20, 2018 18:11
FSW 14: Class Syntax
@RaDeleon
RaDeleon / fsw-14-components-i.markdown
Created September 20, 2018 18:13
FSW 14: Components - I