Skip to content

Instantly share code, notes, and snippets.

View alexroston's full-sized avatar

alex_roston alexroston

View GitHub Profile
@Atulin
Atulin / README.md
Last active November 10, 2024 19:34
FxTwitter Copy

Twitter Copy Fx Link

image

This script adds a new button to Twitter posts. Clicking it, copies a TwitFix link to your clipboard, and strips any trancking data from it because might as well.

@carstene1ns
carstene1ns / README.md
Last active October 4, 2020 11:56
Get all commits of the current branch since creation from another branch

Usage

Show all commits the current feature branch has:

$ git show -s $(./git-branch-commits.sh)

Cherry-Pick all commits the specific pull request (checked out as branch) has:

@AnatomicJC
AnatomicJC / android-backup-apk-and-datas.md
Last active February 16, 2025 05:01
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 !

@aivrit
aivrit / fix_windows_time.ps1
Last active February 6, 2025 23:37
Fix windows 10 time sync - workaround time service failure with a non-ntp manual setting approach
# this script was created to help sync time for machines running windows 10 where
# windows time service keeps failing, where time synchronization is constantly unsuccessfull
# this workaround approach has been taken since all other solutions on the web have not proven successfull in my case
# this solution should work for any windows 10 machine who has syncing issues
# run this script with admin privileges as a daily schedule on windows task scheduler and all your problems will be solved
# enjoy
$time = Invoke-RestMethod -Uri http://worldtimeapi.org/api/ip
@victornpb
victornpb / deleteDiscordMessages.js
Last active January 12, 2025 17:35
Delete all your messages from DM or Channel in Discord
/*
This file is now hosted here:
https://github.com/victornpb/undiscord
*/
@mutin-sa
mutin-sa / Top_Public_Time_Servers.md
Last active February 14, 2025 13:24
List of Top Public Time Servers

Google Public NTP [AS15169]:

time.google.com

time1.google.com

time2.google.com

time3.google.com

@matthewzring
matthewzring / markdown-text-101.md
Last active February 14, 2025 03:49
A guide to Markdown on Discord.

Markdown Text 101

Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...

What this guide covers:

@robertpainsi
robertpainsi / commit-message-guidelines.md
Last active February 14, 2025 04:55
Commit message guidelines

Commit Message Guidelines

Short (72 chars or less) summary

More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).

Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
@FichteFoll
FichteFoll / Games_Done_Quick_Schedule_Enhancer.user.js
Last active March 10, 2020 03:50
Highlights currently active Event on GDQ schedule and adds an anchor. Also non-AM/PM timestamps.
// ==UserScript==
// @name Games Done Quick Schedule Highlight
// @namespace FichteFoll
// @author FichteFoll
// @description Highlights currently active Event on GDQ schedule and adds an anchor. Also non-AM/PM timestamps.
// @include https://gamesdonequick.com/schedule*
// @version 0.1.2
// @updateURL https://gist.github.com/FichteFoll/642b567943c0f957eef9ce32601ce944/raw/Games_Done_Quick_Schedule_Enhancer.user.js
// @grant none
// ==/UserScript==