Curated by the team at @rht-labs
- Web quickstart - uses grpc-web
- Node.js quickstart
- There are two grpc Nodejs implementations: one with dynamically generated code and another with statically generated code.
*#*#372733#*#*
Source: https://community.phones.nokia.com/support/discussions/topics/7000011810
Plantronics Audio Tuning Wizard: 1-866-210-2157
From a whiteboard that someone wrote in Boston:
- Establish goal & context
- Users/functional roles
- Important steps on timeline? (step)
- What does the button say? (command)
- What does the button do? (event)
- What data do you need to successfully press the button? (aggregate)
- Is there a UI for this? (view)
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
| #!/bin/bash | |
| # Run this in the directory containing the content type that you'd like to move. | |
| # This script moves each markdown file into a new directory of the same name and renames the file to _index.md. | |
| # You'll also need to add the taxonomy to config.toml. | |
| FILES=*.md | |
| for file in $FILES | |
| do | |
| filename="${file%%.*}" | |
| if [ "$filename" == "_index" ]; then |
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
| curl -svo /dev/null -H "Fastly-Debug: true" http://www.statnews.com/feed/ |
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
| wget [url] -p -k -E --restrict-file-names=windows |
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
| #!/bin/bash | |
| # | |
| # Usage: | |
| # | |
| # server logfile/path output/path | |
| # example sshtail.sh user@ssh.server /var/log/apache2/error.log ~/tmp/error.local.log | |
| [ "$1" == "--help" ] && { printf "Usage: server logfile/path output/path\n"; exit; } | |
| # Delete the file so we don't output anything until after we connect |
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
| #!/bin/sh | |
| # Simple equivalent of "git stash" in Subversion. | |
| # This doesn't require creating branches (which can get messy) or using patches | |
| # (which doesn't work if a visual diff tool is configured). | |
| # More ideas: http://stackoverflow.com/q/1554278/925475 | |
| # If any comamand fails, abort the script. | |
| set -e |
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
| # This file follows the WordPress CSS standards as closely as possible. For any | |
| # linters that aren't listed in this file, we're accepting the default settings. | |
| # https://make.wordpress.org/core/handbook/best-practices/coding-standards/css/ | |
| # Linter documentation: http://git.io/vG7gu | |
| # See also: http://sass-guidelin.es/ | |
| linters: | |
| Comment: |