Skip to content

Instantly share code, notes, and snippets.

View jonkiddy's full-sized avatar
🏠
Coffee + Music - Interruptions = Code

Jon Kiddy jonkiddy

🏠
Coffee + Music - Interruptions = Code
View GitHub Profile
@geekcui
geekcui / macOS High Sierra 10.13.3 install TensorFlow 1.5.0 with GPU support.md
Last active February 8, 2024 23:24
macOS High Sierra 10.13.3 install TensorFlow 1.5.0 with GPU support
@martinwicke
martinwicke / automobile.ipynb
Last active January 9, 2022 08:14
Estimator demo using Automobile dataset
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@joepie91
joepie91 / blockchain.md
Last active June 25, 2023 08:40
Is my blockchain a blockchain?

Your blockchain must have all of the following properties:

  • It's a merkle tree, or a construct with equivalent properties.
  • There is no single point of trust or authority; nodes are operated by different parties.
  • Multiple 'forks' of the blockchain may exist - that is, nodes may disagree on what the full sequence of blocks looks like.
  • In the case of such a fork, there must exist a deterministic consensus algorithm of some sort to decide what the "real" blockchain looks like (ie. which fork is "correct").
  • The consensus algorithm must be executable with only the information contained in the blockchain (or its forks), and no external input (eg. no decisionmaking from a centralized 'trust node').

If your blockchain is missing any of the above properties, it is not a blockchain, it is just a ledger.

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@leonardofed
leonardofed / README.md
Last active May 15, 2024 11:28
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@bishboria
bishboria / springer-free-maths-books.md
Last active April 25, 2024 06:27
Springer made a bunch of books available for free, these were the direct links
@hfreire
hfreire / qemu_osx_rpi_raspbian_jessie.sh
Last active March 24, 2024 14:35
How to emulate a Raspberry Pi (Raspbian Jessie) on Mac OSX (El Capitan)
# Install QEMU OSX port with ARM support
sudo port install qemu +target_arm
export QEMU=$(which qemu-system-arm)
# Dowload kernel and export location
curl -OL \
https://github.com/dhruvvyas90/qemu-rpi-kernel/blob/master/kernel-qemu-4.1.7-jessie
export RPI_KERNEL=./kernel-qemu-4.1.7-jessie
# Download filesystem and export location
@JaciBrunning
JaciBrunning / jre_classlist
Created July 5, 2015 08:18
FRC JRE ClassList from RT.jar
com/sun/demo/jvmti/hprof/Tracker.class
com/sun/java/util/jar/pack/AdaptiveCoding.class
com/sun/java/util/jar/pack/Attribute$1.class
com/sun/java/util/jar/pack/Attribute$FormatException.class
com/sun/java/util/jar/pack/Attribute$Holder.class
com/sun/java/util/jar/pack/Attribute$Layout$Element.class
com/sun/java/util/jar/pack/Attribute$Layout.class
com/sun/java/util/jar/pack/Attribute$ValueStream.class
com/sun/java/util/jar/pack/Attribute.class
com/sun/java/util/jar/pack/BandStructure$Band.class
@chrismdp
chrismdp / s3.sh
Last active March 5, 2024 12:57
Uploading to S3 in 18 lines of Shell (used to upload builds for http://soltrader.net)
# You don't need Fog in Ruby or some other library to upload to S3 -- shell works perfectly fine
# This is how I upload my new Sol Trader builds (http://soltrader.net)
# Based on a modified script from here: http://tmont.com/blargh/2014/1/uploading-to-s3-in-bash
S3KEY="my aws key"
S3SECRET="my aws secret" # pass these in
function putS3
{
path=$1
@jonkiddy
jonkiddy / Preferences.sublime-settings
Last active July 23, 2018 15:01
Sublime Text Preferences
keymap:
[
// Sublime
{ "keys": ["super+shift+i"], "command": "reindent" },
{ "keys": ["super+shift+o"], "command": "expand_tabs" },
{ "keys": ["command+shift+k"], "command": "toggle_side_bar" },
// PHP Companion
{ "keys": ["super+shift+u"], "command": "find_use" },
{ "keys": ["super+shift+n"], "command": "insert_php_constructor_property" },