Skip to content

Instantly share code, notes, and snippets.

View corecode's full-sized avatar

Simon Schubert corecode

View GitHub Profile

How to flash reformat on FordSync3 through USB cable

Intro

This method allows to flash Ford Sync 3 multimedia module(APIM) through USB cable even if it was bricked 🧱. You don't need to solder either the eMMC card reader or any other wires. The only thing you need is to disassemble the Sync module and short circuit of two pads.

// ==UserScript==
// @run-at document-start
// @id Ebay URL Cleaner
// @name Ebay URL Cleaner
// @namespace
// @description Clean ebay item URL
// @include http://www.ebay.tld/itm/*
// @include https://www.ebay.tld/itm/*
// @version 1.1
// ==/UserScript==
@adamcharnock
adamcharnock / move_issues.py
Created April 24, 2018 11:26
Python script to move all GitLab issues from one project to another
#!/usr/bin/env python3
import os
import gitlab
GITLAB_API_TOKEN = os.environ['GITLAB_API_TOKEN']
def main():
print("Logging into gitlab and fetching a list of projects...")
// ==UserScript==
// @name Aliexpress URL Cleaner
// @run-at document-start
// @namespace
// @description Clean aliexpress item URL
// @match *://*.aliexpress.com/item/*
// @match *://*.aliexpress.com/store/product/*
// @version 1.2
// ==/UserScript==