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 July 27, 2024 14:46
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 May 5, 2026 18:24
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.

Note: When I first wrote this back in 2014 (12 years ago!), the state of the art of automation and machine learning was very different than it is in 2026. We have crossed a boundary into a deeper exploration of "AI", lead by the push to use Large Language Models, generatitve systems, and agents. There have also been significant improvements to the SOA for robotics, with complex "humanoid" robots creeping closer to real-world applications. How much of this technology is likely to make it into real world applications at scale is still an open question.

_What is certain is that there is a lot of buzz about Physical or Embodied AI and that the term IoT is somewhat out of fashion. Even though

@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 March 23, 2026 03:04
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