Skip to content

Instantly share code, notes, and snippets.

View macressler's full-sized avatar

Phillip Ressler macressler

View GitHub Profile
### Keybase proof
I hereby claim:
* I am macresslertech on github.
* I am macresslertech (https://keybase.io/macresslertech) on keybase.
* I have a public key whose fingerprint is 881B 319D BEAA 82E1 4A2D A031 A753 892F 33B4 6926
To claim this, I am signing this object:
#!/usr/bin/perl
######################################################
# SHA512 Hash Bruter v1.0 by Exor #
######################################################
$ver = "01";
$dbgtmr = "1"; #Intervall of showing the current speed + lastpassword in seconds.
if ($dbgtmr<=0){ die "Set dbgtmr to a value >=1 !\n";};
use Digest::SHA("\x73\x68\x61\x35\x31\x32\x5f\x68\x65\x78");
profile.setAcceptUntrustedCertificates(false);
profile.setAcceptUntrustedCertificates(false);
@macressler
macressler / Description
Last active August 29, 2015 14:25 — forked from mikeweber/Description
Solar system tour at speed of light
Experience our solar system at the speed of light (it's not as exciting as it sounds)
Step 1) Visit http://joshworth.com/dev/pixelspace/pixelspace_solarsystem.html.
Step 2) Open the JS console and paste in the following code.
Step 3) Watch the solar system "fly" by (BTW it'll take more than 5 hours to get to Pluto)
<section class="stories-list photos cards tabs-wrapper block">
<h1 class="block-title">More Stories</h1>
<ul class="tabs">
<li><a href="#latest">Latest Stories</a></li>
<li><a href="#popular">Popular Stories</a></li>
</ul>
<div class="tab-option" id="latest">
# -*- coding: utf-8 -*-
import re, string
from unidecode import unidecode
PUNCTUATION = re.compile('[%s]' % re.escape(string.punctuation))
class Fingerprinter(object):
'''
Python implementation of Google Refine fingerprinting algorithm described here:
@cjdd3b
cjdd3b / fingerprint.py
Created February 22, 2015 14:17
Python implementation of Google Refine fingerprinting algorithms here: https://github.com/OpenRefine/OpenRefine/wiki/Clustering-In-Depth
# -*- coding: utf-8 -*-
import re, string
from unidecode import unidecode
PUNCTUATION = re.compile('[%s]' % re.escape(string.punctuation))
class Fingerprinter(object):
'''
Python implementation of Google Refine fingerprinting algorithm described here:
@macressler
macressler / README.md
Last active August 29, 2015 14:14 — forked from ddossot/README.md

Alternative implementation of TcpIpJoinerOverAWS

This is a workaround for this Hazelcast issue.

To use the alternative TcpIpJoinerOverAWS:

  • Remove hazelcast-cloud from your project's classpath,
  • Add this class in your project or JAR it up if you prefer,
  • Do not configure an accessKey nor a secretKey in Hazelcast's AwsConfig.
@ddossot
ddossot / README.md
Last active August 29, 2015 14:14
EC2 node discovery for Hazelcast

Alternative implementation of TcpIpJoinerOverAWS

This is a workaround for this Hazelcast issue.

To use the alternative TcpIpJoinerOverAWS:

  • Remove hazelcast-cloud from your project's classpath,
  • Add this class in your project or JAR it up if you prefer,
  • Do not configure an accessKey nor a secretKey in Hazelcast's AwsConfig.