I hereby claim:
- I am kern on github.
- I am alexkern (https://keybase.io/alexkern) on keybase.
- I have a public key whose fingerprint is 1EAE 7AA9 B3A6 8788 F601 48E8 86E2 0E73 35B2 9F6F
To claim this, I am signing this object:
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box. | |
✅ did:muport:Qmbbi1towwdoMfTpQPZPqbcFTGQFVoDk51hewka2qLuVVS ✅ | |
Create your profile today to start building social connection and trust online at https://3Box.io/ |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
import argparse | |
import boto.sqs | |
import json | |
import os | |
parser = argparse.ArgumentParser(description='Saves all messages from an AWS SQS queue into a folder.') | |
parser.add_argument( | |
'-q', '--queue', dest='queue', type=str, required=True, | |
help='The name of the AWS SQS queue to save.') |
Makefile and YAML templates for automating the use of AWS Elastic Container Registry with Kubernetes.
Based off of this awesome Redsaid blog post.
First, install all of TensorFlow and CUDA's dependencies:
$ # When prompted: Keep the local version currently installed
$ curl https://gist.githubusercontent.com/kern/ab56600768b9f4fc1f72/raw/8d0b86a678d1398be2b82ac6e4ab1f8ad0698f01/install_deps.sh | sh
Wait for reboot, then run:
$ # When prompted: Scroll all the way down > accept > y > y > y > default (/usr/local/cuda-7.0) > y > n
$ curl https://gist.githubusercontent.com/kern/ab56600768b9f4fc1f72/raw/8d0b86a678d1398be2b82ac6e4ab1f8ad0698f01/install_nvidia.sh | sh
diff --git a/tensorflow/core/common_runtime/gpu/gpu_device.cc b/tensorflow/core/common_runtime/gpu/gpu_device.cc | |
index 26d3464..286123f 100644 | |
--- a/tensorflow/core/common_runtime/gpu/gpu_device.cc | |
+++ b/tensorflow/core/common_runtime/gpu/gpu_device.cc | |
@@ -607,7 +607,7 @@ void BaseGPUDeviceFactory::GetValidDeviceIds(std::vector<int>* ids) { | |
} | |
// Only consider GPUs with compute capability >= 3.5 (Kepler or | |
// higher) | |
- if (major < 3 || (major == 3 && minor < 5)) { | |
+ if (major < 3 /*|| (major == 3 && minor < 5)*/) { |
Anything relating to startups, entrepreneurship, innovation, technology, hacking, design, business, or related fields is fair game for discussion in the group. The focus is on the Bay Area and Berkeley specifically, so please make sure events are accessible to students at UC Berkeley.
We require that all posts must be approved by moderators to maintain a high standard of content. Comment as much as you'd like, however!
View the submissions and vote!
HH and HH Design have teamed up to host the first Hackathon Hackers Design Competition!
The cover photo for Hackathon Hackers is OLD. Like ancient. Like it’s the same one uploaded the day this group was created. It’s time for an update.
The creativity of the hacker community knows no bounds. We’re hoping you can come up with cover photo concepts that capture the unique ethos of student hackathons. So take some time out of your holiday break, spin up your favorite image editor, and try your hand at branding HH.
require "virtus" | |
require "rspec/autorun" | |
class Address < Virtus::Attribute::Object | |
primitive String | |
def coerce(value) | |
# Simulate a slow call to an external service that normalizes the | |
# address's format. | |
sleep 1 |