https://humbleblogger.blogspot.com/2009/04/after-17-years-is-it-too-late-to-fix-c.html interesting historical piece on the subject. Touts the rich Java world in embracing plugins as well as some ObjectiveC industry hits.
import wave | |
import numpy as np | |
sample_rate = 44100 | |
def create_audio(freq): | |
""" | |
Create audio sample | |
""" | |
n_seconds = 2 |
- https://github.com/iDoka/awesome-canbus
- Explained! CAN BUS Diagnosis – How to Troubleshoot Faults. -- great visuals and high level overview of the physical CAN bus
- CAN Bus Communication Explained (Part 1) -- very rich motivating context to network topology with respect to bus separation
- Select rectangular markee tool
- With the
Style
option configureFixed Aspect Ratio
from the pulldown menu: set both width and height to 1. this will constrain the selection tool to produce a perfect square however you drag out your selection to whatever size
Center the square markee selection over your portrait image following the US Passport guidelines for producing the necessary margins from your head and shoulders. Once the the selection is centered and with desirable
A personal cataloguing of the moments where shortcomings are encountered in the ecosystem.
Poor autocorrect experience chock full of typos. Pretty much can't trust a message I type, I need to edit messages constantly especially text that does not fit in a single screen. https://www.reddit.com/r/apple/comments/9mj1si/why_is_autocorrect_so_terrible_are_there_any_ways
#!/bin/bash | |
N_RUNS=30 | |
function drive_test { | |
test_meta=$1 | |
test_target=$2 | |
n_failures=0 | |
echo "********************************************************************************************************************************************" | |
echo "$test_meta EXECUTION" |
They used to sell an all in one scanner product, looks like they focus more on software and cloud processing solutions: https://www.neat.com/track-receipts/
Software is able to drive certain scanners that support this API https://en.wikipedia.org/wiki/TWAIN
The shifted their focus from the individual to small business as the market was likely larger in that segment.
""" | |
Script to automate the tagging of the File Details from Windows Explorer given a folder path, | |
the tags to enter into the images, and the number of images to add the tags to. | |
""" | |
# BASE PYTHON | |
import argparse | |
import os | |
import sys |
Developer Notes for language contributions
have your grammar as a 3rd party language module
Create a language grammar definition file, a file which defines a function accepting a reference to the library and returning a language object.