Skip to content

Instantly share code, notes, and snippets.

View adi-g15's full-sized avatar
🙏
Better day by day

Aditya Gupta adi-g15

🙏
Better day by day
View GitHub Profile
@LesleyLai
LesleyLai / blogs.opml
Last active February 11, 2024 01:19
This gist contains blogs I follow as of 2024-02-11. You can import the blog.opml file to your RSS software, or you can han pick the blogs you want to follow manually.
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Feeds of Lesley Lai from Inoreader [https://www.inoreader.com]</title>
</head>
<body>
<outline text="Arts" title="Arts">
<outline text="Sarah's&#10;Scribbles" title="Sarah's&#10;Scribbles" type="rss" xmlUrl="https://sarahcandersen.com/rss" htmlUrl="http://sarahcandersen.com/"/>
</outline>
<outline text="Tech Blog" title="Tech Blog">
@AnatomicJC
AnatomicJC / android-backup-apk-and-datas.md
Last active June 7, 2024 06:32
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 !

@laggardkernel
laggardkernel / startup-time-of-zsh.md
Last active June 1, 2024 22:13
Comparison of ZSH frameworks and plugin managers

Comparison of ZSH frameworks and plugin managers

Changelog

  • update 1: add a FAQ section
  • update 2: benchmark chart and feature comparison table
  • update 3:
    • improve the table with missing features for antigen
    • new zplg times result

TLDR

@arrieta
arrieta / lexer.cpp
Last active June 5, 2024 17:22
Simple C++ Lexer
// A simple Lexer meant to demonstrate a few theoretical concepts. It can
// support several parser concepts and is very fast (though speed is not its
// design goal).
//
// J. Arrieta, Nabla Zero Labs
//
// This code is released under the MIT License.
//
// Copyright 2018 Nabla Zero Labs
//