Skip to content

Instantly share code, notes, and snippets.

@oddieis
oddieis / ethereum-address-generator.py
Created February 8, 2018 00:35 — forked from reiven/ethereum-address-generator.py
ethereum address generator
# -*- coding: utf-8 -*-
#!/usr/bin/python
# pip install ecdsa
# pip install pysha3
from ecdsa import SigningKey, SECP256k1
import sha3
keccak = sha3.keccak_256()
@oddieis
oddieis / free_email_provider_domains.txt
Created February 8, 2018 00:35 — forked from tbrianjones/free_email_provider_domains.txt
A list of free email provider domains. Some of these are probably not around anymore. I've combined a dozen lists from around the web. Current "major providers" should all be in here as of the date this is created.
1033edge.com
11mail.com
123.com
123box.net
123india.com
123mail.cl
123qwe.co.uk
150ml.com
15meg4free.com
163.com
@oddieis
oddieis / popup.js
Created October 5, 2011 14:16
jquery popup pt 1
var popup_height = 0;
function displayPopup(type) {
if (typeof(type)==='undefined') type = "newsletter";
$(".popup .popup-body").add('.popup .popup-header span').hide();
$(".popup .popup-header ." + type).show();
$(".popup .popup-body."+type).show(function(){
popup_height = ($(".popup").height())+60;
$(".popup").animate({marginTop:-popup_height-20},400).animate({marginTop:-popup_height},200);
});
@oddieis
oddieis / popup2.js
Created October 5, 2011 14:14
jquery popup pt 2
<script>
$(document).ready(function(){
showPopup('form');
$('div.popup form.marketo-form').submit(function() {
var data = {};
$(this).find('input').add('select').add('textarea').each(function() {
data[$(this).attr('name')] = $(this).val();
});
var url = $(this).attr('action') || window.location.href;
var after_submit = function(data, textStatus, jqXHR) {
@oddieis
oddieis / facebook_like.php
Created August 26, 2011 23:33
like function on facebook
<iframe src="http://www.facebook.com/plugins/like.php?href=YOUR_URL"
scrolling="no" frameborder="0"
style="border:none; width:450px; height:80px"></iframe>