Latest Inkscape version has this functionality built-in now - except for internal links. For that, see https://github.com/oxplot/svglinkify
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
/* based on http://goo.gl/ArZG6 */ | |
#define X )*2+1 | |
#define _ )*2 | |
#define s ((((((((0 /* 8 parens for 8 bit, 16 for 16, etc) */ | |
unsigned char lcd_char_P[] = | |
{ | |
s X X X X X X _ _, |
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
## Frederik Braun, Jun 2011 | |
## Contact: <fb(AT)frederik-braun.com> | |
## Licence: WTFPL | |
## Python 2.7x | |
try: | |
import cPickle as pickle | |
except ImportError: | |
import pickle |
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 | |
""" | |
Name: extract_java_server_faces_viewstate | |
Purpose: Extract and parse the Java Server Faces viewstate | |
Date: 20150620 | |
Author: Don C. Weber (@cutaway) of InGuardians, Inc. | |
Resources: | |
http://wiki.apache.org/myfaces/Secure_Your_Application |