Timothy Schmidt
- BOARD MEMBER 5/8/2012 - 5/8/2016
- SECRETARY 5/8/2012 -
projects
- LMN
- teardrop “wheatlander”
- draw / price in emachineshop
- solar panel gas-sprung hatch w/ deep cycle marine batter, $20 charge controller, and laptop inverter w/ USB
- solar beer fridge / shower water heater / tank / pump
- aluminum or steel sheet / foam laminate clad lapped ply + corner brace construction
- cooktop / grill
- removable futon mattress
- storage cabinets
- lockable door
- skdb
- CNC
- slicer
- Creating parts in Fritzing: http://fritzing.org/learning/tutorials/creating-custom-parts/
- Secure Computing
- design / build large scale cnc: http://www.rcuniverse.com/magazine/article_display.cfm?article_id=1190
- watch blackhat videos https://www.youtube.com/playlist?list=UUbbgnifxfH-nqx6z9XQ963Q
- https://www.reddit.com/r/DataHoarder/ for advice on storage
- bootstrap dokuwiki theme: https://github.com/wwu-housing/starterbootstrap
- Foodbot
- Water Treatment
- http://playground.arduino.cc/InterfacingWithHardware/Nrf24L01 - check out mysensors
- 20mm extrusion version of this: https://www.youmagine.com/designs/syringe-pump
-
- pointers and arrays: http://pw1.netcom.com/~tjensen/ptr/ch2x.htm
- finish serial support bringup in bailingwire
- connect serial to gcode interpretation
- connect driver loading to gcodes
- connect interrupt loading to gcodes
- poll serial buffer from pin interrupt? (on RX, TX, Buffer empty interrupts)
- http://www.opensbp.com/ - https://3036fd37-a-62cb3a1a-s-sites.googlegroups.com/site/opensbp/Home/files/ComRef.pdf?attachauth=ANoY7cozkIoFNu1A2WxbcaRF8R2uOwgA6yDe9e46gWOBr5crrx0G37VwdDh7bLIa09DFTKrq8Q8YIsAdhnVzv1MObElaw22_EROh0kkdoe2lalT9XJLnapm_SD44ZCRx2jWKCVhJqtqblG7rTfjAah-km0tRwBkr068LateqGdvKHVEGV2Ma7V9jy7Tfuq4vyHljn6anvQLr9mtJShEkLeWtwC-f-0FefQ%3D%3D&attredirects=0
- OpenCV egg detecting Twitter chicken coop https://github.com/hugokernel/LaVieDePoule
- CAM tool[s] - web based, run on Pi: http://www.prosoundweb.com/images/uploads/RTMackieDLPage1Image.jpg
- http://www.greenhousegrower.com/uncategorized/manage-ph-and-soluble-salts-in-hydroponics/ - I think salts are best avoided through careful nutrient use, and drainage into a constructed ecosystem
- HeirloomTech (ThirdCoastCollective?)
- create gridbeam https://www.udemy.com/ course - income
- check that domain is pointed
- set up wordpress
- set up login for rachel to wordpress
- build / document gridbeam drill press w/ rachel photographing
- build solar fridge, document and publish, sell kits
- Find affordable dc compressor
- aquire used mini fridge heat exchanger
- write gridbeam additions to BOLTS
- NerdFlurry
- set up wordpress plugins - woocommerce, anti-spam, etc.
- BEACON
- establish expected annual budget for maintenance, upkeep, recurring costs based on past expenses
- purchase USB video capture tool for seminar recording test
- https://github.com/anyaejohnson/datanuggets - server access
- Seminar in session signs
- thisability video - leigh
- comprehensive intranet workflow graph
- centralize domains - beacon-center.org, and friends. - https://tech.msu.edu/network/dns.php / http://network.msu.edu/public/ipadmin.html
- set up apple remote desktop
- finish test wordpress plugin for displaying projects in admin interface
- Video Conferencing
- https://meet.jit.si/ - webrtc
- Wordpress plugins
- WP Idea Stream - idea voting - https://wordpress.org/plugins/wp-idea-stream/
- https://wordpress.org/plugins/openspending/ - and openspending.org
- research wordpress beacon wiki
- https://www.wikispaces.com/ - wikis w/ associated mailing list
- research wordpress inventory management
- research wordpress user roles
- jory / arndt evosphere.org wordpress
- send a wordpress theme to smart design
- get videos to jay / do them yourself on the second imac
- finish pcard statement
- evosphere vpn
- nescent training session resources: http://www.nescent.org/wikis
- https://github.com/NESCent/TraitDB - CSV cleanup, validation, merging
- investigate graphite logging / graphing framework
- digital assets committee? - institution policy, storage, transfer
- mUVe3D
- SCARA Laser
- Home
- honeywell RTH2300B1012 thermostat manual
- improve dryer efficiency: http://www.alkeng.com/AL/dryer
- solar
- The state of open source solar - http://opensource.com/solar
- Rewire electrical box
items to acquire
- http://www.newegg.com/Product/Product.aspx?Item=N82E16811345016 for nvidia jetson
- dc fridge compressor
- spare glass build surface for kossel
- E3Dv6 / Hexagon hot end for kossel
- mini fridge heat exchanger(s)
- shur-flo pump a/c
- borosilicate glass for solar panels
- alu angle for panels
- black qsil for panels
- angle iron, threaded rod, nuts for gridbeam press
- aluminum plate for LED heatsinks - shape?
funding prospects
- farmers
- automation / robotics interests
to read
- Coreboot weekly column - http://lennartb.home.xs4all.nl/coreboot/coreboot.html
notes
4 methods for saving data in a wordpress plugin
videos
network
board goals
* build asset maps for LMN - committee * identify asset goals, and a plan to fill them
- who do we need (what skills, resources?)
- where do we find them
- how do we communicate our mission
- who's their number one priority?
* include community members on board committees - voting rights? adjust bylaws * build issue-focused teams for each committee * continual orientation - annual nonprofitnetwork board training, org reflection / reevaluation * establish whistle blower / COI policy allowing for nomination of an outsider compliance officer - create COI disclosure form / read aloud once a year at a meeting * mission: education and access
references
- 328p datasheet http://www.atmel.com/Images/doc8161.pdf
- Use the WordPress “option” mechanism (described below). This method is appropriate for storing relatively small amounts of relatively static, named pieces of data – the type of data you'd expect the site owner to enter when first setting up the Plugin, and rarely change thereafter.
- Post Meta (a.k.a. Custom Fields). Appropriate for data associated with individual posts, pages, or attachments. See post_meta Function Examples, add_post_meta(), and related functions.
- Custom Taxonomy. For classifying posts or other objects like users and comments and/or for a user-editable name/value list of data consider using a Custom Taxonomy, especially when you want to access all posts/objects associated with a given taxonomy term. See Custom Taxonomies.
- Create a new, custom database table. This method is appropriate for data not associated with individual posts, pages, attachments, or comments – the type of data that will grow as time goes on, and that doesn't have individual names. See Creating Tables with Plugins for information on how to do this.