-
Add Graal JIT Compilation to Your JVM Language in 5 Steps, A Tutorial http://stefan-marr.de/2015/11/add-graal-jit-compilation-to-your-jvm-language-in-5-easy-steps-step-1/
-
The SimpleLanguage, an example of using Truffle with great JavaDocs. It is the officle getting-started project: https://github.com/graalvm/simplelanguage
-
Truffle Tutorial, Christan Wimmer, PLDI 2016, 3h recording https://youtu.be/FJY96_6Y3a4 Slides
This process worked for me. I take no responsibility for any damage or loss incurred as a result of following or not following these steps or, for that matter, anything else you might do or not do.
- SVN is hosted at
svn.domain.com.au. - SVN is accessible via
http(other protocols should work). - GitLab is hosted at
git.domain.com.auand:
| :: This version is not as powerfull as vbs version, please prefere the other one. | |
| :: It's just there if you need a non-visual basic way to perform this. | |
| :: Restrictions: | |
| :: - Password cannot contain a % or finish with @ | |
| :: - Chrome adds a / at the end of the URL, not yet managed | |
| :: The aim of this script is to execute putty with parameters like ssh://login@host | |
| :: Installation: | |
| :: - Launch putty.reg to associate ssh:// and telnet:// to this script | |
| :: - Edit the putty path in parameter below like puttyPath="C:\Program Files (x86)\putty.exe" |
| /** | |
| * Check if a given ip is in a network | |
| * @param string $ip IP to check in IPV4 format eg. 127.0.0.1 | |
| * @param string $range IP/CIDR netmask eg. 127.0.0.0/24, also 127.0.0.1 is accepted and /32 assumed | |
| * @return boolean true if the ip is in this range / false if not. | |
| */ | |
| function ip_in_range( $ip, $range ) { | |
| if ( strpos( $range, '/' ) == false ) { | |
| $range .= '/32'; | |
| } |
| import javax.crypto.Cipher; | |
| class Test { | |
| public static void main(String[] args) { | |
| try { | |
| System.out.println("Hello World!"); | |
| int maxKeyLen = Cipher.getMaxAllowedKeyLength("AES"); | |
| System.out.println(maxKeyLen); | |
| } catch (Exception e){ | |
| System.out.println("Sad world :("); |
| package main | |
| import( | |
| "log" | |
| "net/url" | |
| "net/http" | |
| "net/http/httputil" | |
| ) | |
| func main() { |
This Riverbed TrafficScript library implements the HMAC/SHA1 and HMAC/MD5 calculations.
For more details and usage instructions, check out https://splash.riverbed.com/docs/DOC-1610
Tags: #Stingray #TrafficScript #HMAC #splash.riverbed.com
These Riverbed TrafficScript libraries implements a means to efficiently search tables of data stored as files in the Resource directory (conf/extra) of Stingray Traffic Manager
For more details and usage instructions, check out https://splash.riverbed.com/docs/DOC-1618
Tags: #Stingray #TrafficScript #splash.riverbed.com
| // Fast-Import / Fast-Export Rewriter to migrate bazaar bugtracking metdata properties to git. | |
| // More infos: http://www.fusonic.net/en/blog/migrating-from-bazaar-to-git/ | |
| // Licence: Mit X11 / BSD | |
| using System; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text.RegularExpressions; | |
| using System.Text; | |
| using System.Diagnostics; | |
| using System.Collections.Generic; |
| #!/usr/bin/env python | |
| """Launchpad to github bug migration script. | |
| There's a ton of code from Hydrazine copied here: | |
| https://launchpad.net/hydrazine | |
| WARNING: this code was written for the Github issues v2 API, and has *not* been ported to v3. If anyone finds it useful and ports it, please drop me a pull request. | |
| Usage | |
| ----- |