Skip to content

Instantly share code, notes, and snippets.

View N0K0's full-sized avatar
🧑‍🚒
Why can't i hold all these project ideas?

Nikolas N0K0

🧑‍🚒
Why can't i hold all these project ideas?
View GitHub Profile
@N0K0
N0K0 / Log
Created November 18, 2023 11:48
Angr issues
This file has been truncated, but you can view the full file.
ondition func: True
DEBUG | 2023-11-18 01:44:59,840 | angr.engines.vex.heavy.heavy | IMark: 0x40115c
DEBUG | 2023-11-18 01:44:59,843 | angr.storage.memory_mixins.paged_memory.paged_memory_mixin | mem.load(0x7fffffffffefeec, 4, Iend_LE) = <BV32 0x0>
DEBUG | 2023-11-18 01:44:59,845 | angr.engines.vex.heavy.heavy | IMark: 0x40115f
DEBUG | 2023-11-18 01:44:59,850 | angr.engines.vex.heavy.heavy | IMark: 0x401162
DEBUG | 2023-11-18 01:44:59,856 | angr.storage.memory_mixins.paged_memory.paged_memory_mixin | mem.load(0x7fffffffffefed8, 8, Iend_LE) = <BV64 0x7fffffffffeff00>
DEBUG | 2023-11-18 01:44:59,857 | angr.engines.vex.heavy.heavy | IMark: 0x401166
DEBUG | 2023-11-18 01:44:59,860 | angr.engines.vex.heavy.heavy | IMark: 0x401169
DEBUG | 2023-11-18 01:44:59,861 | angr.storage.memory_mixins.paged_memory.paged_memory_mixin | mem.load(0x7fffffffffeff00, 1, Iend_LE) = <BV8 flag_0_144[143:136]>
DEBUG | 2023-11-18 01:44:59,869 | angr.engines.vex.heavy.heavy | IMark: 0x40116c
@N0K0
N0K0 / tamper.js
Last active December 27, 2022 18:35
New York times spelling bee bruteforcer - Tampermonkey
// ==UserScript==
// @name NY Times Spelling Bee Helper
// @namespace http://example.com/
// @version 0.1
// @description A script to help with the NY Times Spelling Bee game
// @author Nikolas "n0k0" Papaioannou
// @match https://www.nytimes.com/puzzles/spelling-bee
// @grant none
// ==/UserScript==

Keybase proof

I hereby claim:

  • I am n0k0 on github.
  • I am nikolasp (https://keybase.io/nikolasp) on keybase.
  • I have a public key whose fingerprint is 17C2 DFE3 5AD1 EC2F AB9E 5C1E 0B53 AB6C 1060 A089

To claim this, I am signing this object:

@N0K0
N0K0 / README.md
Last active July 1, 2021 17:04 — forked from bvis/README.md
Docker Env Vars expanded with secrets content
@N0K0
N0K0 / BF commander.au3
Created December 15, 2019 21:36
AutoIT3 script for BF4 commander mode
#include "mousePlus.au3"
#include <GDIPlus.au3>
#include <ScreenCapture.au3>
#include <WinAPI.au3>
HotKeySet ( "�" , "end" )
HotKeySet ( "�" , "pause")
opt("MouseClickDelay",70)
opt("WinWaitDelay",10)
opt("MouseClickDownDelay",70)
@N0K0
N0K0 / git-truncate.sh
Created August 1, 2017 11:44 — forked from charandas/git-truncate.sh
Truncate git history
# Prepare new_master
git checkout <hash-where-you-want-to-clip-history>
git checkout --orphan new-master
git checkout new_master
git cherry-pick first-commit-to-include^..last-commit-to-include
# Prepare master backup
git checkout master
git checkout -b master-backup
//Ytre index fil for å definere ruter
import CoreLayout from '../layouts/PageLayout/PageLayout'
import Secret from './Secret'
import TaskView from './task-view/index'
export const createRoutes = (store) => ({
path : '/',
component : CoreLayout,
childRoutes : [
@N0K0
N0K0 / Form
Created November 29, 2016 11:22
<form method="get" accept-charset="utf-8" id="phoneForm">
<div class="row">
<div class="col-md-6">
<label class="sr-only" for="winnerPhoneInput">Telefonnummer</label>
<input id="winnerPhoneInput" type="tel" class="form-control" name="telephoneNumber" value="" required placeholder="Telefonnummer" maxlength="8" minlength="8">
</div>
<div class="col-md-6">
<button class="btn btn-dialog btn-block" data-loading-text="Sender..." data-complete-text="Sendt!" autocomplete="off" id="submitPhone" type="submit">Send</button>
</div>
</div>