This file contains hidden or 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
* How developers contribute to GNU Emacs | |
Here is how software developers can contribute to Emacs. (Non-developers: see | |
https://www.gnu.org/software/emacs/manual/html_node/emacs/Contributing.html | |
or run the shell command 'info "(emacs)Contributing"'.) | |
** The Emacs repository | |
Emacs development uses Git on Savannah for its main repository. | |
To configure Git for Emacs development, you can run the following: |
This file contains hidden or 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
find . -type f | sed 's/.*\.//' | sort | uniq -c |
This file contains hidden or 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
https://www.youtube.com/embed/bZNFRIwlQxQ?autoplay=1&mute=1 |
This file contains hidden or 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
(menu-bar-mode -1) | |
(toggle-scroll-bar -1) | |
(tool-bar-mode -1) | |
(setq-default mode-line-format nil) | |
;;(set-frame-parameter (selected-frame) 'alpha '(<active> . <inactive>)) | |
;;(set-frame-parameter (selected-frame) 'alpha <both>) | |
(set-frame-parameter (selected-frame) 'alpha '(85 . 50)) | |
(add-to-list 'default-frame-alist '(alpha . (85 . 50))) |
This file contains hidden or 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
node --inspect-brk --require ts-node/register index.ts |
This file contains hidden or 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
;;; SPC t m T | |
(setq-default mode-line-format nil) | |
(setq-default cursor-type '("chartreuse3" (bar . 2))) |
This file contains hidden or 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
brew leaves | |
brew deps --tree --installed |
This file contains hidden or 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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch Program", |
This file contains hidden or 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
youtube-dl -f 140 |
This file contains hidden or 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
$csvfile = "/Users/nwb/Desktop/data/FY15__FY16__FY17__FY18.csv" | |
# $csvfile = "/Users/nwb/Desktop/data/FY14-15__FY15-16.csv" | |
$jsonfile = "/Users/nwb/Desktop/data/sacbudget_v3.json" | |
$template = [PSCustomObject]@{ | |
name = "Sacramento Budget 2017/18"; | |
} | |
Import-Csv $csvfile | | |
Where-Object "account_type" -eq "Expenses" | | |
ForEach-Object { | |
"hello" + $_ |
NewerOlder