Skip to content

Instantly share code, notes, and snippets.

View kirbsraspberrypi's full-sized avatar
💭
For hire

Mari Kirby Castillote kirbsraspberrypi

💭
For hire
  • Freelance Embedded Systems Designer
  • Batangas City, Philippines
View GitHub Profile

Keybase proof

I hereby claim:

  • I am kirbsraspberrypi on github.
  • I am mkcastillote (https://keybase.io/mkcastillote) on keybase.
  • I have a public key ASC2HzBQHvrGuoAclCrj7-ezX_w8DV_q-Pte4cpM90DXIwo

To claim this, I am signing this object:

# Terminal Cheat Sheet
pwd # print working directory
ls # list files in directory
cd # change directory
~ # home directory
.. # up one directory
- # previous working directory
help # get help
-h # get help
@kirbsraspberrypi
kirbsraspberrypi / bot.rb
Created April 9, 2020 13:58 — forked from dideler/bot.rb
Sending a notification message to Telegram (via cURL)
# Use this script to test that your Telegram bot works.
#
# Install the dependency
#
# $ gem install telegram_bot
#
# Run the bot
#
# $ ruby bot.rb
#
@kirbsraspberrypi
kirbsraspberrypi / RPi_I2C_driver.py
Created March 10, 2020 16:04 — forked from DenisFromHR/RPi_I2C_driver.py
RaspberryPi I2C LCD Python stuff
# -*- coding: utf-8 -*-
"""
Compiled, mashed and generally mutilated 2014-2015 by Denis Pleic
Made available under GNU GENERAL PUBLIC LICENSE
# Modified Python I2C library for Raspberry Pi
# as found on http://www.recantha.co.uk/blog/?p=4849
# Joined existing 'i2c_lib.py' and 'lcddriver.py' into a single library
# added bits and pieces from various sources
# By DenisFromHR (Denis Pleic)