- sausages
- tuna
- canned sardines
- Ready meal cans
- toast
- salty and sugary biscuits
- protein bars
- jars of fruit purees and ready-to-eat meals
- marmalade or jam
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
# 🫧 Receita de Líquido Caseiro para Bolhas de Sabão (1 Litro) | |
## 🧂 Ingredientes | |
- 300 ml de água (para o amido) | |
- 2 colheres de sopa de amido de milho (Maizena) | |
- 500 ml de água (para ajustar o volume final) | |
- 3 a 4 colheres de sopa de detergente para louça (tipo Fairy) | |
- 2 colheres de sopa de sabonete líquido com glicerina | |
- 1 colher de chá de açúcar (opcional) |
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
// Convert unicode string to Javascript escape | |
// https://stackoverflow.com/questions/21014476/javascript-convert-unicode-string-to-javascript-escape | |
String.prototype.toUnicode = function(){ | |
var result = ""; | |
for(var i = 0; i < this.length; i++){ | |
// Assumption: all characters are < 0xffff | |
result += "\\u" + ("000" + this[i].charCodeAt(0).toString(16)).substr(-4); | |
} | |
return result; | |
}; |
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
interface TestShortcodeProps { | |
src: string; | |
} | |
CMS.registerShortcode<TestShortcodeProps>('test', { | |
label: 'test', | |
openTag: '[', | |
closeTag: ']', | |
separator: '|', | |
toProps: (args) => { |
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
// reference https://github.com/antondb/netlify-cms-widget-uuid | |
import React from 'react'; | |
import type { WidgetControlProps } from '@staticcms/core'; | |
interface UuidField { | |
name: 'uuid'; | |
widget: 'uuid'; | |
} | |
const createUuid = (options = { size: 8, url: 'int8rdomaluesbj012345679cfghkpqvwxyzZ' }) => { |
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
cd template-lookbook (in your mac) | |
git branch -m paywall main; | |
git fetch origin; | |
git branch -u origin/main main; | |
git remote set-head origin -a; | |
git branch; | |
git checkout main; |
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
import 'package:flutter/material.dart'; | |
final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override |
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
default 21:12:16.548397+0000 bluetoothd Stop scanning for process sharingd (454) with scan request of type 16, blob: {length = 0, bytes = 0x}, mask {length = 0, bytes = 0x}, active: 0, duplicates: 0, screen on: No Scan, screen off: No Scan, locked: 1, rssi: -90, peers: ( | |
) nearby scan mode: 10, adv buf: 0, advbuf mode: 4, priority critical: 0, range: 0 | |
default 21:12:16.548481+0000 bluetoothd Removing scan request scan request of type 16, blob: {length = 0, bytes = 0x}, mask {length = 0, bytes = 0x}, active: 0, duplicates: 0, screen on: No Scan, screen off: No Scan, locked: 1, rssi: -90, peers: ( | |
) nearby scan mode: 10, adv buf: 0, advbuf mode: 4, priority critical: 0, range: 0 for client 2FCCBE14-0721-4677-B445-AF5245A5477B | |
default 21:12:16.548607+0000 bluetoothd Passively scanning for devices of types: 5 15 18 (Window: 30/Interval: 300) | |
default 21:12:16.548646+0000 bluetoothd About to scan for type: 15 - rssi: -70 - range: 0 - payload: {length = 22, bytes = 0x00000000000000000000000000000000000000000000} - |
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
void main() { | |
bool test = false; | |
Map<String, String> myMapA = { | |
"a": "1", | |
"b": "2", | |
... test == true ? {"c":"3"} : {} | |
}; | |
Map<String, String> myMapB = { | |
"a": "1", | |
"b": "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
CMS.registerWidget( | |
'predefined_labels', | |
createClass({ | |
getDefaultProps: function () { | |
return { | |
value: '' | |
} | |
}, | |
componentDidMount: async function () { | |
// const _field = this.props.field; |
NewerOlder