Skip to content

Instantly share code, notes, and snippets.

View mtwebster's full-sized avatar

Michael Webster mtwebster

View GitHub Profile
@mtwebster
mtwebster / InteractiveShell.py
Created February 7, 2018 23:46 — forked from rpmuller/InteractiveShell.py
Create an interactive shell in a GUI
class FileCacher:
"Cache the stdout text so we can analyze it before returning it"
def __init__(self): self.reset()
def reset(self): self.out = []
def write(self,line): self.out.append(line)
def flush(self):
output = '\n'.join(self.out)
self.reset()
return output
@mtwebster
mtwebster / xcursor theme tutorial
Created November 27, 2022 01:53 — forked from sole/xcursor theme tutorial
A lightly edited version of the xcursor theme tutorial by the_One at http://kde-look.org/content/show.php?content=11428
<---TUTORIAL FOR CREATING XCURSOR THEMES.--->
<---By ThEOnE @ kde-look--->
<---My_foros@yahoo.com.ar-->
_______________________________________________________________________________________
| |
| First of all, let me tell you that everything I know I've learned it by inspecting |
| some xcursor themes like jaguarx, and others. |