Skip to content

Instantly share code, notes, and snippets.

View stevencombs's full-sized avatar

Steven B. Combs' Git stevencombs

View GitHub Profile
/*
Code Objective
Push encoder to turn on LED and servo control
Rotate encoder to move servo
Push encoder to turn off LED and servo control
Code by: Steven B. Combs (steven.combs@gmail.com)
Code date: 2020-03-08
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
@stevencombs
stevencombs / mega-switched-led-components.svg
Last active March 3, 2020 00:30
Arduino: Toggle LED with breadboard push button
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@stevencombs
stevencombs / cloudSettings
Last active December 26, 2019 23:31
Microsoft Studio Code Sync
{"lastUpload":"2019-12-26T23:31:36.251Z","extensionVersion":"v3.4.3"}
@stevencombs
stevencombs / Arduino-Blink.ino
Last active April 18, 2016 21:46
The Hello World Program of the Arduino Platform
@stevencombs
stevencombs / Redacted.rb
Last active December 26, 2015 22:39
Request multi word input and request a word to redact from the input. Redacted word will be replaced with "REDACTED" unless word to redact was not found in which case the string will print intact.
# Ruby Getting Started with Programming
# A Codecademy Ruby (Redacted) assignment
# Dr. Steven B. Combs, coding novice
puts "Text to search through: " #Puts text
text = gets.chomp #Request input and "chomp" return
puts "Word to redact: " #Puts text
redact = gets.chomp #Request second input and "chomp" return
words = text.split (" ") #Splits the input into words at each space
@stevencombs
stevencombs / ControlFlows.rb
Created October 25, 2013 22:13
Various examples of Ruby control flows performing the same task: printing "Hello. " 10 times.
# Ruby Getting Started with Programming
# Control flow examples
# Dr. Steven B. Combs, coding novice
# Do
puts "Do"
10.times do
print "Hello. "
end
puts ""
@stevencombs
stevencombs / ThithMeanthWar.rb
Last active December 26, 2015 01:59
Includes fix to program that provides output for both cases without an error.
# Ruby Getting Started with Programming
# A Codecademy Ruby (Thith Meanth War!) assignment
# Dr. Steven B. Combs, coding novice
print "Thtring pleathe: " # Print request for input
user_input = gets.chomp # Capture input and remove default extra line (.chomp)
user_input.downcase! # Change input to all lowercase and replace variable content
if user_input.include? "s" # If the input inlcludes an 's'
user_input.gsub!(/s/, "th") # Perform a global substitution of every 's' with 'th'
print "Your new sting is #{user_input}." # Print string including the new value
<!DOCTYPE html>
<head>
<title>Anna Dowlin</title>
<style>
body {
text-align: center;
background: url("http://dash.ga.co/assets/anna-bg.png");
background-size: cover;
background-position: center;
color: white;
@stevencombs
stevencombs / UnlessControlFlow.rb
Created October 16, 2013 20:34
Unless control flow tests for a false condition
# Ruby Getting Started with Programming
# A Codecademy Ruby (Unless) assignment
# Dr. Steven B. Combs, coding novice
hungry = true
unless hungry # tests for false condition
puts "I'm writing Ruby programs!"
else # if not false, but true
puts "Time to eat!"