Skip to content

Instantly share code, notes, and snippets.

View ubarbaxor's full-sized avatar
🎯
Focusing

ubarbaxor

🎯
Focusing
View GitHub Profile
@ubarbaxor
ubarbaxor / fisherTick.js
Last active March 30, 2023 20:27
Quick margin / PNL ticker + CSV extraction for degens. Runs as-is or in ViolentMonkey.
// ==UserScript==
// @name YOLOREKT UI EDITS
// @namespace Violentmonkey Scripts
// @match https://www.yolorekt.finance/game?gametype=G_LVG
// @grant none
// @version 1.1.5d
// @author ubarbaxor 'Fishotron' will fork for wood
// @description If you like this, feel free to buy me a coffee. ETH/USDC(Polygon) : 0x7cd974D9Ce1014a3Feb5f359c5D9b83174209782
// @downloadURL https://gist.github.com/ubarbaxor/e4e68cc2061bdab43ba62838ecebdc15/raw/fisherTick.js
// @updateURL https://gist.github.com/ubarbaxor/e4e68cc2061bdab43ba62838ecebdc15/raw/fisherTick.js
@ubarbaxor
ubarbaxor / shadok.js
Created March 14, 2021 01:20 — forked from Raphy42/shadok.js
Base 10 to shadok converter
const shadok = n => parseInt(n)
.toString(4)
.split('')
.map(e => ['ga', 'bu', 'zo', 'meu'][e])
.join(' ')

Keybase proof

I hereby claim:

  • I am ubarbaxor on github.
  • I am ubarbaxor (https://keybase.io/ubarbaxor) on keybase.
  • I have a public key ASAnDKrU9qEKvvVBqzkEhpV_taNxP1PEZth-yGGl_NoHMgo

To claim this, I am signing this object:

@ubarbaxor
ubarbaxor / README.md
Created December 12, 2017 13:54
Fix for navbar on france-digital-expert.com

Header Nav's seem not to work due to two things :

1/ Underlying anchors' href property doesnt concur with sections' classes 2/ Clicking the section doesn't seem to toggle the anchors

This is all probably caused by a faulty JQuery manipulation.

Proposed solution :