Skip to content

Instantly share code, notes, and snippets.

View 7h3730B's full-sized avatar
👻
Ghosting around in Repos

Teo 7h3730B

👻
Ghosting around in Repos
View GitHub Profile
@Stupremee
Stupremee / list.c
Created October 26, 2020 20:19
List implementation in C
#include "testlib.h"
#include <stdlib.h>
#include <stddef.h>
#include <inttypes.h>
typedef struct vec {
void **data;
uint32_t len;
uint32_t cap;
} vec;
@AnatomicJC
AnatomicJC / android-backup-apk-and-datas.md
Last active July 18, 2024 22:51
Backup android app, data included, no root needed, with adb

Backup android app, data included, no root needed, with adb

Note: This gist may be outdated, thanks to all contributors in comments.

adb is the Android CLI tool with which you can interact with your android device, from your PC

You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.

Don't hesitate to read comments, there is useful tips, thanks guys for this !

@djmitche
djmitche / @@INTRO.md
Last active June 7, 2024 13:08
My use of Taskwarrior

Getting Started

My Usage

I've been using this for almost ten years now, so here are some of the ways I have set it up to be most productive. See my taskrc below for implementation details.

In general, I've had the most success by keeping lists of tasks short and to the point, avoiding the anxiety of seeing 100 tasks and feeling like I'm going to drown.