Skip to content

Instantly share code, notes, and snippets.

@VijayS1
VijayS1 / find_unicode_files.py
Created November 24, 2020 19:37
A script to find and rename filenames containing unicode characters
#!/usr/bin/python3
import sys, os, unicodedata
def main(argv):
if len(argv) != 2:
raise Exception('Syntax: FindUnicodeFiles.py <directory>')
startdir = argv[1]
if not os.path.isdir(startdir):
raise Exception('"%s" is not a directory' % startdir)
@VijayS1
VijayS1 / Export aliexpress ITEMS to clipboard as csv
Created November 12, 2019 06:52 — forked from f-alex/Export aliexpress ITEMS to clipboard as csv
Export aliexpress items info with order number, # in order, name, item URL, snapshot URL, order status, price, quantity, order URL, date and shop name (from ermus19 fork) to clipboard as csv from MyOrders page
// ==UserScript==
// @name Aliexpress_items
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://trade.aliexpress.com/orderList.htm*
// @grant unsafeWindow
// @grant GM_xmlhttpRequest
// @grant GM_setClipboard