Moved to the Makerville Wiki
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json, os | |
import pprint | |
# Generated voices.json with `aws polly describe-voices > voices.json` | |
with open('voices.json') as json_data: | |
d = json.load(json_data) | |
with open("a.txt") as f: | |
content = f.readlines() | |
# you may also want to remove whitespace characters like `\n` at the end of each line | |
content = [x.strip() for x in content] |
- Follow SDK and dev host setup guide on marvell-iot.github.io
- Recent advances in IoT
- ARM uControllers and Wi-Fi
- Exploring AWS IoT
- Some of Makerville's projects
There are so many things I wish I started doing earlier. Just in case I run into a time-travel scenario, here's a list of things -
- Better cabling and wire management
- Don't use single strand wires.
- Keep a bunch of hardware scripts soldered and ready
- Using a transistor as switch
Boldport, one of the interwebs better known hardware design guys went on a rant on how prototyping is so very different from production. If you have ever held a solder gun, or intend to, you should read this.
Why did your "hardware startup" Kickstarter fail? Because none of your prototyping skills are required for production. source
Skill | Prototyping | Production |
---|---|---|
coding | sloppy | efficient |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os, re | |
from PyPDF2 import PdfFileMerger, PdfFileReader | |
pages = ['ADS786x', | |
'ADT7310', | |
'API-Documentation', | |
'Analog-to-digital-converter', | |
'BBIOServer', | |
'DACx311', | |
'Digital-IO', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Check your partitions. You should have 3(1, 2 and 5) | |
fdisk -l /dev/mmcblk0 | |
Time to resize partitions to occupy the complete SD card. | |
fdisk /dev/mmcblk0 | |
Now delete extended, logical. Create extended, logical. |