This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# (c) Thomas Hori 2016. | |
# Generate HTML output from Google hangouts takeout data (the _g one is group chats only) | |
# May be redistributed under terms of Zlib license ("The zlib/libpng License" as defined by | |
# the Open Source Initiative), which should be affixed. | |
# Clarifying all mentions of my name or copyright notice with a "modified (by)" line not | |
# using my name shall be sufficient for plainly marking this particular script as altered. | |
import marshal, json, time | |
print ("Loading JSON") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* ReWild - Replacement for Wildfire. | |
* Copyright (c) 2016, 2018, 2020 HarJIT | |
* | |
* 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 furnished to do so, subject to the following conditions: | |
* | |
* The above copyright notice and this permission notice shall be included in all copies or substantial portions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SCIM_Generic_Table_Phrase_Library_TEXT | |
VERSION_1_0 | |
BEGIN_DEFINITION | |
# Library of Congress romanisation of Deseret (followed except for ï, which it does not define): | |
# > https://www.loc.gov/catdir/cpso/romanization/deseret.pdf | |
# | |
# Macron accents (overlines) are represented here by a single x prefix, other accents (umlaut and | |
# circumflex) are represented by a doubled x prefix. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(obsolete, see https://gist.github.com/harjitmoe/19f0412ec9bb8a6330bce6683fbbb760 ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
r"""Older, simpler interface for simple RegEx operations. | |
Simple regular expression interface compatible with historic regexp | |
module (based on the regexp.py from Python 1.1, which was included | |
without modification in subseqent versions before eventual | |
deletion). | |
Ported by Thomas Hori to use the "re" API rather than the previous | |
"regex" module from Python 1.x as its backend. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PIL import Image as pil_image | |
from pygame import image as pygame_image | |
def pil2pygame(im): | |
return pygame_image.frombuffer(im.convert("RGBA").tostring(),im.size,"RGBA") | |
def open_(name): | |
try: | |
im=pil_image.open(name) | |
except IOError,e: #Compatibility with Pygame | |
from pygame import base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: python; coding: utf-8 -*- | |
"""Unicode Names preprocessor for Python 2.""" | |
# Modified from tokenize module as support for parsing Unicode names | |
# had to be added. | |
old_doc = """Tokenization help for Python programs. | |
generate_tokens(readline) is a generator that breaks a stream of | |
text into Python tokens. It accepts a readline-like method which is called |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import subprocess, os, sys | |
DEVNULL = open(os.devnull,"r+") | |
ctlexes = ["initctl","systemctl"] | |
provides = ["start","stop","restart","status"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) Secret Labs AB 1997-2003. | |
# Copyright (c) Fredrik Lundh 1995-2003. | |
# | |
# By obtaining, using, and/or copying this software and/or its | |
# associated documentation, you agree that you have read, understood, | |
# and will comply with the following terms and conditions: | |
# | |
# Permission to use, copy, modify, and distribute this software and its | |
# associated documentation for any purpose and without fee is hereby | |
# granted, provided that the above copyright notice appears in all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Namespaces assumed: | |
// xmlns="http://www.w3.org/1999/xhtml" | |
// xmlns:xhtml2="http://www.w3.org/2002/06/xhtml2/" | |
// xmlns:ev="http://www.w3.org/2001/xml-events" | |
// By Thomas Hori, copyright 2017. Zlib licence. | |
jQuery(function () { // Good practice to not assume $ at top level is jQuery (due to e.g. PrototypeJS). | |
var $ = jQuery; | |
//////////////// |
OlderNewer