Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="utf-8"?>
<!--
/**
* Copyright 2013 The Finest Artist
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
@Egyiastic
Egyiastic / IDM Reset.bat
Last active July 6, 2022 08:51
Reset Internet Download Manager
@Echo Off
Title IDM Trial Reset by http://arabia-geeks.blogspot.com/ & Color 57
@Echo Resetting your IDM License Brought to you by http://arabia-geeks.blogspot.com/
@Echo.
@Echo.
Pause
TASKKILL /F /IM IDMan.exe
@ECHO.
@echo Off HKEY_CURRENT_USER\Software\Classes\Wow6432Node\CLSID\{7B8E9164-324D-4A2E-A46D-0165FB2000EC} [7] >permdel.txt
@protrolium
protrolium / ffmpeg.md
Last active June 15, 2024 01:28
ffmpeg guide

ffmpeg

Converting Audio into Different Formats / Sample Rates

Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma

You can get the list of supported formats with:
ffmpeg -formats

You can get the list of installed codecs with:

@illusionfield
illusionfield / bookmarklet-syntax.js
Last active May 16, 2024 12:32
Translate Bookmarklets
/**
* Web browsers use URIs for the href attribute of the <a> tag and for bookmarks. The URI scheme, such as http:, file:, or ftp:, specifies the protocol and the format for the rest of the string.
* Browsers also implement a prefix javascript: that to a parser is just like any other URI.
* Internally, the browser sees that the specified protocol is javascript, treats the rest of the string as a JavaScript application which is then executed, and uses the resulting string as the new page.
*
* The executing script has access to the current page, which it may inspect and change.
* If the script returns an undefined type (rather than, for example, a string), the browser will not load a new page, with the result that the script simply runs against the current page content.
* This permits changes such as in-place font size and color changes without a page reload.
*/
@lopspower
lopspower / README.md
Last active June 22, 2024 03:58
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

Download This sample on Google Play Store

@wertyoo
wertyoo / DarkBlueDittoTheme.xml
Last active November 24, 2021 15:25
Ditto Clipboard Themes XML - Dark Blue Ditto Clipboard Theme
<Ditto_Theme_File Version="2" Author="Wertyoo" Notes="DarkBlue Theme">
<CaptionLeft>RGB(18,36,41)</CaptionLeft>
<CaptionRight>RGB(36,55,60)</CaptionRight>
<CaptionLeftTopMost>RGB(18,36,41)</CaptionLeftTopMost>
<CaptionRightTopMost>RGB(36,55,60)</CaptionRightTopMost>
<CaptionLeftNotConnected>RGB(18,36,41)</CaptionLeftNotConnected>
<CaptionRightNotConnected>RGB(36,55,60)</CaptionRightNotConnected>
@AveYo
AveYo / .. MediaCreationTool.bat ..md
Last active June 17, 2024 15:13
Universal MediaCreationTool wrapper for all MCT Windows 10 versions - MOVED TO github.com/AveYo/MediaCreationTool.bat
@AnatomicJC
AnatomicJC / android-backup-apk-and-datas.md
Last active June 20, 2024 20:57
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 !

@nimdasx
nimdasx / windows 11 installation skip network connection.txt
Created November 7, 2021 09:21
windows 11 installation skip network connection
Let’s Connect You To A Network -> “Shift” and “F10”
taskkill /F /IM oobenetworkconnectionflow.exe
@krlvm
krlvm / StartButtonReplacement.cpp
Last active August 10, 2023 09:39
Changing Windows 11 Start Button to match Windows 11 logo when using ExplorerPatcher
/*
* MIT License
*
* Copyright (c) 2021 krlvm
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is