```mermaid
sequenceDiagram
participant dotcom
participant iframe
participant viewscreen
dotcom->>iframe: loads html w/ iframe url
iframe->>viewscreen: request template
viewscreen->>iframe: html & javascript
iframe->>dotcom: iframe ready
This file contains 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
0:00:00.033,0:00:02.102 | |
嘿,大家。我叫馬丁·伍德沃德。 | |
0:00:02.235,0:00:06.206 | |
我將從舊金山的工作室與你們一起現場直播。 | |
0:00:06.272,0:00:08.308 | |
希望您有一個愉快的會議。迄今為止。 | |
0:00:08.308,0:00:12.512 |
This file contains 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
<?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"> | |
<array> | |
<dict> | |
<key>Activate</key> | |
<string>Normal</string> | |
<key>CreationDate</key> | |
<real>687267520.59896398</real> | |
<key>Macros</key> |
This file contains 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
{ | |
"editor.inlineSuggest.enabled": true, | |
"workbench.colorTheme": "Default Dark+", | |
"window.zoomLevel": 1, | |
"editor.minimap.enabled": false, // Disable minimap for clarity | |
"vsintellicode.python.completionsEnabled": false, | |
"editor.quickSuggestionsDelay": 1000, // Delay built in VS Code intellisense so doesn't confuse on what is Copilot | |
"editor.lightbulb.enabled": false, // Disable lightbulb autofixes for clarity | |
"chat.experimental.quickQuestion.enable": true, // Experimental feature in May 2023 release of insiders | |
"pylint.args": [ |
This file contains 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
esphome: | |
name: router-booter | |
on_boot: | |
then: | |
- switch.turn_on: relay | |
esp8266: | |
board: esp8285 | |
ota: |
Thanks for saying you like my camera set up! As you asked, here are the deets. There are cheaper ways to achieve some of the same results and possibly better ways to - however this is what I ended up with.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
👋 Hello
We are looking for a new Developer Advocate to join our well established and expanding global Developer Relations team to come and grow with us. This is an ideal role for someone who understands development but is new to DevRel and Developer Advocacy.
Application links:
This file contains 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
for i in *.mov; do name=`echo "$i" | cut -d'.' -f1`; echo "$name"; ffmpeg -n -i "$i" "${name}.mp4"; done |
NewerOlder