Skip to content

Instantly share code, notes, and snippets.

@groodt
groodt / gist:345aacb3795db63fe94735839824de87
Last active March 4, 2024 11:00 — forked from di/gist:dadce0a0359526323d09efc9309f1d22
PyPI wheels with invalid metadata
2014-01-22 21:23:42.982908,https://files.pythonhosted.org/packages/b3/bc/af6d15248ad72eec26bc91da45479e34e4af37397bd05487db62fa7fb84f/django_dynamic_finder-0.1-py2.7.egg
2015-01-06 02:16:58.826469,https://files.pythonhosted.org/packages/6c/2c/ccd8875cf624042ed4b950e221379136029c8539829b031abea933ce34a2/readibility-plus-0.1.tar.gz
2015-03-15 15:04:51.632322,https://files.pythonhosted.org/packages/6a/50/b36b055b2c0e93da8a58b90a79dd5e892f8349cea359ff98d059db5b4560/symfit-0.2.4.zip
2015-04-13 08:41:45.437167,https://files.pythonhosted.org/packages/a7/71/d03c24ecba05b383d98acbbeddaadda72c2103041d9d9061b88bb6558ea0/pandaSDMX-0.2.0-py2.py3-none-any.whl
2015-05-17 18:49:19.070728,https://files.pythonhosted.org/packages/3c/05/e09bf35b3f61fa3fc2e208006d525e271ecbc01e8b213cb5ee357c389e3c/Task_allocator.tar.gz
2015-05-19 20:28:12.575573,https://files.pythonhosted.org/packages/df/99/bbeb6e08293ddaf29f3c4f107cd8aa701265176acc39d7b3a75949c402c1/pandaSDMX-0.2.2-py2.py3-none-any.whl
2015-06-12 09:29:19.452406,https://files.py
@groodt
groodt / keybase.md
Created July 15, 2014 07:56
keybase.md

Keybase proof

I hereby claim:

  • I am groodt on github.
  • I am groodt (https://keybase.io/groodt) on keybase.
  • I have a public key whose fingerprint is 291F E185 24DC 5071 BA05 DD1D 200D 8113 DFA5 F115

To claim this, I am signing this object:

@groodt
groodt / gist:1f2770f210d0a4865874
Created June 26, 2014 09:22
AWS S3 Policy for allowing AWS Console access to a single S3 Bucket
{
"Statement": [
{
"Effect": "Allow",
"Action": ["s3:GetBucketLocation", "s3:ListAllMyBuckets"],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": ["s3:ListBucket" ],
@groodt
groodt / gist:5181980
Created March 17, 2013 15:17
"Fix" SupportMapFragment issues Android 2.3.x
// Janky "fix" to prevent artefacts when embedding GoogleMaps in a sliding view.
// https://github.com/jfeinstein10/SlidingMenu/issues/168
// set background to transparent
private void setMapTransparent(ViewGroup group) {
int childCount = group.getChildCount();
for (int i = 0; i < childCount; i++) {
View child = group.getChildAt(i);
if (child instanceof ViewGroup) {
setMapTransparent((ViewGroup) child);
@groodt
groodt / README.md
Created December 17, 2012 12:26 — forked from ma11hew28/README.md

Homebrew Meteor Formula

To install Meteor with the Homebrew formula [below][3], run:

brew install https://gist.github.com/raw/4317935/05084353d3cd50acad7e88e01c3f6463b42c0ed3/meteor.rb

This Homebrew Meteor Formula is based on https://install.meteor.com.