Skip to content

Instantly share code, notes, and snippets.

View tdaron's full-sized avatar
☀️
Enjoying life

Théo Daron tdaron

☀️
Enjoying life
View GitHub Profile
@tdaron
tdaron / config.fish
Last active May 24, 2024 18:06
revision picker for jj using fzf
function fzf_jj_edit
if test -d .jj
set -l name (jj log --no-graph -T 'change_id.shortest() ++ "\t" ++ description.first_line() ++ " " ++ branches.join(" ") ++ "\n"' --color always | fzf --ansi | cut -f1)
commandline -it "$name"
else
commandline -it "# not in a jj directory"
end
end
bind \cj 'fzf_jj_edit'
import frida
import sys
# Define the JavaScript code to be injected
js_code = """
Interceptor.attach(Module.findExportByName(null, "calloc"), {
onEnter: function(args) {
console.log("calloc(" + args[0] + ") called");
console.log("count = "+Interceptor.count);
Interceptor.count++;
var stack = Thread.backtrace(this.context, Backtracer.ACCURATE);

Érasme

Table des matières

TODO: Plan de l’exposé

Biographie

version: '2.1'
services:
sonarr:
image: ghcr.io/linuxserver/sonarr
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Brussels
volumes:
@tdaron
tdaron / Distribucloud_.idea_Distribucloud.iml
Created July 29, 2019 12:33
Distributed Cloud Written in Go
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>