Bibtex
If you find this code useful, please consider citing
@misc{[PROJECT ID],
title={[PROJECT TITLE]},
author={[LNAME, FNAME]},
booktitle={GitHub},
year={2021}
If you find this code useful, please consider citing
@misc{[PROJECT ID],
title={[PROJECT TITLE]},
author={[LNAME, FNAME]},
booktitle={GitHub},
year={2021}
If you're sharing your own work and there's a way to try it out, put "Show HN" in the title. Make sure you've read the Show HN guidelines: https://news.ycombinator.com/showhn.html.
Posts without URLs get penalized, so when you submit, put your site in the URL field and leave the text field blank.
Add a comment to the thread giving the backstory of how you came to work on this, and explaining what's different about it. That tends to seed discussion in a good direction.
Include a clear statement of what your project is or does. If you don't, the discussion will consist of "I can't tell what this is". >
Programmatically download files from a Google Drive link:
For large file run the following command with necessary changes in FILEID
and FILENAME
:
!wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=FILEID' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=FILEID" -O FILENAME && rm -rf /tmp/cookies.txt
Archived from https://tinwhiskerz.com/2016/08/05/maker-workbench/
AUGUST 5, 2016
It can be tough working on a maker project if you don’t have a good space to work. Many times my electronics work surface was an ESD mat on the dining room table, but as my projects grew and my family grew I was under increasing pressure to find somewhere else to work. (Really it was the 3D printer that put my wife over the edge — rightfully so). I also didn’t want to have my electronics out in the garage which is my woodworking shop and full of saw dust.
The task of finding a decent place to work on electronics was more of a challenge than I expected. Lots of folks who left the dining room table seem to work on card tables or random repurposed Ikea tables and benches or purchase very expensive commercial electronics benches that are out of the range of most folks working part time as a maker. I knew there must be something in the middle that could be
git log --graph --pretty=\"format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset'\" --abbrev-commit --date=relative |
git log engineers
↳ Engineering Notes ↳ eng managers
↳ Release Notes ↳ product manager
↳ Blog Post ↳ solution managers
↳ $$$$ ↳ customers
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
) | |
func printRecovery() { |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"net/url" | |
"os" |
const { | |
app, | |
Tray, | |
Menu, | |
BrowserWindow, | |
nativeImage | |
} = require('electron') | |
const icons = require('linux-icons') | |
let win |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CFBundleExecutable</key> | |
<string>myapp</string> | |
<key>CFBundleIdentifier</key> | |
<string>com.pocketgophers.myapp</string> | |
<key>CFBundleURLTypes</key> | |
<array> |