Skip to content

Instantly share code, notes, and snippets.

View voidstar0's full-sized avatar
🏴‍☠️

nil voidstar0

🏴‍☠️
View GitHub Profile
484e4f4a403f52430039200c50affaac00000137738aea3e0000017f0700001400023e000a140003070001140002413d000d0211020811000143011400024111000242021102000700024301340009110201070003133232421102023a07000426423e0004140001413d004111021007000507000644024a12000711020312000843013400250205000000933b0111020312000b323400111102043a0700042633000611020412000c4301424108421100014a120009430007000a254211020544004a12000d4300421100013a070004253400051100010225470004070000421100013a07000e2547001011000147000607000f45000307001042110001421100023247000607001114000207000014000311000114000411000403002947002e1100031100021102064a1200121102064a12001343001100021200141a430113181700033549170004204945ffc91100034205000000003b0114010f05000000273b00140109050000003d3b0014010b05000000463b0014010a05000000a13b0014010c05000000ad3b0114010d05000000e33b0214010e0842001500204a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a4a1103066c4f4f7343420d6c06034a4d405f490c48434f59414942586143484909594248494a454249480b4f43425f585e594f58435e01450458495f580b64786160
/** @license Copyright (C) 2014-2019 PerimeterX, Inc (www.perimeterx.com). Content of this file can not be copied and/or distributed. **/
!function () {
"use strict";
try {
atob;
} catch (n) {
var t = function (t) {
var n = [],
o = void 0,
@voidstar0
voidstar0 / captcha.js
Last active May 13, 2023 00:44
PX Stuff Cleaned up
/** @license Copyright (C) 2014-2019 PerimeterX, Inc (www.perimeterx.com). Content of this file can not be copied and/or distributed. **/
!function () {
"use strict";
try {
atob;
} catch (n) {
var t = function (t) {
var n = [],
o = void 0,
@voidstar0
voidstar0 / pooky_cookies.js
Created September 26, 2020 04:38
Pooky Cookies
module.exports = class PookyCookies {
/**
* PookyCookies, used to generate a unique
* set of cookies for the Supreme checkout
* process.
*/
constructor(region, aesKey, encKey, decKey) {
this.region = region
this.pookyConstants = {
'pooky_telemetry': 45,
Black Lives Matter!
Please check out ways you can help out the movement:
https://blacklivesmatters.carrd.co/
@voidstar0
voidstar0 / ok
Last active November 28, 2019 20:44
ok
@voidstar0
voidstar0 / dog.gif
Last active November 28, 2019 20:42
dog.gif
@voidstar0
voidstar0 / hello_world.rb
Created February 25, 2019 15:38
Hello World Examples
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello !"
end
end
hello = HelloWorld.new("World")