- 2 colheres de sopa (15 g) linhaça triturada em 30 ml água
- 7/4 de xícara (295 g) de mix de farinhas
- ou:
- 200 g farinha de arroz
- 90 g polvilho doce
- 5 g goma xantana
- 1/4 xícara (4 colheres de sopa) (50 g) de amido de milho
- 2 colheres (sopa) (6 colheres de chá) (30 g) de açúcar
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
| Title | URL | Description | Category | |
|---|---|---|---|---|
| Ambient Mixer | https://www.ambient-mixer.com/ | My all-time favorite source of ambient sound, this website provies relatively advanced customization options, although Aura takes the cake in that regard. What I like most is the number of community-submitted pop culture soundscapes available to choose from | Customizable Ambient Soundscape on the Web | |
| I Miss the Office | https://imisstheoffice.eu/ | This beautifully designed, customizable office noise simulator was recommended by my co-worker. For those of you who miss being in an office environment, this soundscape generator lets you build your soundscape with a variety of common office product sounds, and even lets you set the number of people murmuring in the background. | Customizable Ambient Soundscape on the Web | |
| A Soft Murmur | https://asoftmurmur.com/ | This minimal website lets you choose and combine between 10 free sounds, and 13 premium sounds that range from natural soundscapes to urban settings | Customizable Ambient Soundscape on |
We can use pass as an emacs auth-source backend to access credentials.
Add auth-source-pass (included with emacs 26) to your emacs config:
(require 'auth-source-pass)
(auth-source-pass-enable)This prepends password-store to the variable auth-sources.
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
| #!/usr/bin/env bash | |
| set -exuo pipefail | |
| BRANCH=$1 | |
| GITHUB_REPO=emqx/emqx | |
| function infer_home_repo() { | |
| local branch="$1" | |
| IFS=":" read -ra REF <<< "$branch" | |
| if [[ "${#REF[@]}" -eq 2 ]]; 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
| #!/usr/bin/env bash | |
| set -exuo pipefail | |
| if [[ $# -lt 3 ]]; then | |
| echo "usage: $0 TAG REMOTE BRANCH" | |
| return 1 | |
| fi | |
| tag="$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
| /* ==UserStyle== | |
| @name github.com - Jan 2024 | |
| @namespace github.com/openstyles/stylus | |
| @version 1.0.0 | |
| @description A new userstyle | |
| @author Me | |
| ==/UserStyle== */ | |
| @-moz-document domain("github.com") { | |
| /* in firefox you may need to set layout.css.has-selector.enabled to true in order for this to work */ |
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 -x | |
| ####################################################################### | |
| # | |
| # Demo of Erlang IDL, as applied to property testing of Java code. | |
| # We'll need Triq. | |
| git clone git://github.com/krestenkrab/triq.git | |
| (cd triq && ./rebar compile) | |
| ERL_ROOT=`erl -noshell -eval 'io:format("~s\n", [code:root_dir()]), init:stop().'` |
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
| // Generate `person_pb2.py` by running `protoc --python_out=. person.proto` before | |
| // running `protobuf_mqtt.py` | |
| syntax = "proto2"; | |
| package tutorial; | |
| message Person { | |
| required string name = 1; | |
| required int32 id = 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
| # Original source: https://github.com/terry-xiaoyu/schema-registry-examples/blob/master/avro/avro_mqtt.py | |
| import paho.mqtt.client as mqtt | |
| import io | |
| import json | |
| import avro.schema | |
| import avro.datafile | |
| import avro.io | |
| import avro.ipc | |
| import time |
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
| // Generate `person_pb2.py` by running `protoc --python_out=. person.proto` before | |
| // running `protobuf_mqtt.py` | |
| syntax = "proto2"; | |
| package tutorial; | |
| message Person { | |
| required string name = 1; | |
| required int32 id = 2; |
NewerOlder