Skip to content

Instantly share code, notes, and snippets.

View donrestarone's full-sized avatar
🤖
Building products

Don Restarone donrestarone

🤖
Building products
View GitHub Profile
@donrestarone
donrestarone / finding-pi.sh
Last active March 11, 2026 00:43
ssh into raspberry pi on local network (when you dont know the IP of the pi)
## METHOD 1 - using nmap
# get local ip
ifconfig |grep inet
# scan for devices on local network
sudo nmap -sP 192.xxx.y.zz/24
# when pi ip is shown connect with the user name
ssh pi@192.xxx.z.yy
@pablobm
pablobm / README.md
Last active June 3, 2022 10:07
A clear convention for a CRUD with standard Ember + Ember Data

CRUD with Ember (+ Data)

Compatible with Ember 1.13.0+ Compatible with Ember Data 1.13.0+

Ember's official documentation describes a number of low-level APIs, but doesn't talk much about how to put them together. As a result, a simple task such as creating a simple CRUD application is not obvious to a newcomer.