Skip to content

Instantly share code, notes, and snippets.

View janetriley's full-sized avatar

Janet Riley janetriley

View GitHub Profile
@ttezel
ttezel / gist:4138642
Last active May 7, 2024 13:34
Natural Language Processing Notes

#A Collection of NLP notes

##N-grams

###Calculating unigram probabilities:

P( wi ) = count ( wi ) ) / count ( total number of words )

In english..

@stonehippo
stonehippo / IoT_object_capabilities.md
Last active April 30, 2018 21:11
Some thoughts on the capabilities of devices and object in the context of the Internet of Things.

Object and Device Capabilities for the Internet of Things

As I reflect on the Internet of Things, I have been working on a personal definition of the capabilities of devices and objects that participate in IoT. I want to have a framework for thinking about how these objects interact with the world and each other.

Properties of IoT Objects

I think there a few distinct properties of IoT objects:

  • Communicating
  • Sensing
@stonehippo
stonehippo / IoT_hardware_platforms.md
Last active March 19, 2021 02:03
A compendium of data and communications platforms for the Internet of Things, MQTT, and other connected stuff

some hardware platforms I find interesting

  • Raspberry Pi - popular Linux SBCs, and now some really cool microcontrollers
  • MESH — drop-in DIY IoT components
  • Particle — Connected prototyping for wifi and cell-based products
  • Hologram — similar to Particle
  • Electric Imp — Connected device platform, with modules and services; part of Twilio now
  • Intel Edison — Tiny x86-class board dead and buried
  • C.H.I.P — $9 computing platform seems to be gone now
  • bluz — BLE boards, compatible with Particle Cloud
@szeitlin
szeitlin / docker_notes.txt
Last active June 11, 2016 18:23
notes from Gobridge-sponsored Docker workshop
Taught by Jerome Petazzo, 7November2015
>docker version #returns both the client and server versions of docker, Go, git, and OS
docker daemon and docker engine mean the same thing
docker user is root equivalent, you should restrict access to it, e.g.
>sudo groupadd docker
>sudo gpasswd -a $USER docker