This file contains hidden or 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
/***************************************************************************************************** | |
* | |
* Sample: | |
* ======= | |
*#include <stdio.h> | |
*#include "StringFunctions.h" | |
* | |
* | |
*int main(){ | |
* char* orginal = "Hans hatte heute Wurst zum Frühstück"; |
This file contains hidden or 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
/************************************************** | |
* | |
* This BeanShell script loads the IP-Informations | |
* from IP-Address using the Geo-IP API. | |
* | |
* usage: bsh <this-file>.bsh <the-ip> | |
* | |
* dependency: | |
* - smart-ip.net | |
* - gson |
This file contains hidden or 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
/************************************************** | |
* | |
* This BeanShell script to Translate Text | |
* | |
* usage: bsh <this-file>.bsh "<Text to translate>" <source lang> <dest lang> <email> | |
* | |
* dependency: | |
* - http://mymemory.translated.net/ | |
* - gson | |
* |
This file contains hidden or 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
__author__ = "Kevin Gliewe" | |
__copyright__ = "Copyright 2015, Kevin Gliewe" | |
__credits__ = ["Kevin Gliewe"] | |
__license__ = "WTFPL" | |
__version__ = "1.0.1" | |
__maintainer__ = "Kevin Gliewe" | |
__email__ = "[email protected]" | |
__status__ = "Production" | |
""" |
This file contains hidden or 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 | |
# coding: utf8 | |
"""Vector3D.py: Usefull 3D Vector utils.""" | |
import math | |
__author__ = "Kevin Gliewe aka KillerGoldFisch" | |
__copyright__ = "Copyright 2014, Kevin Gliewe" | |
__credits__ = ["kevin Gliewe",] |
This file contains hidden or 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
# -*- coding: utf-8 -*- | |
import os | |
import urllib2 | |
from PIL import Image | |
from os.path import basename | |
from urlparse import urlsplit | |
cfill = r"█" | |
Chars = [ |
This file contains hidden or 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 | |
# coding: utf8 | |
"""mcstat.py: Returns the Status of a Minecraft Server.""" | |
__author__ = "Kevin Gliewe aka KillerGoldFisch" | |
__copyright__ = "Copyright 2014, Kevin Gliewe" | |
__credits__ = ["kevin Gliewe",] | |
__license__ = "MIT" | |
__version__ = "1.2.1" |
This file contains hidden or 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 ipy | |
# coding: utf8 | |
""" | |
DocTest for .NET AssemblyTest | |
============================= | |
Usage: | |
------ |
This file contains hidden or 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
using System; | |
using System.Diagnostics; | |
using System.Text.RegularExpressions; | |
namespace GSharp.Logging { | |
public class FunctionInfo{ | |
private static Regex regex = null; |
This file contains hidden or 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 | |
# -*- coding: utf-8 -*- | |
""" | |
This file is part of the web2py Web Framework (Copyrighted, 2007-2011). | |
License: LGPLv3 (http://www.gnu.org/licenses/lgpl.html) | |
Author: Thadeus Burgess | |
Contributors: |
OlderNewer