Create ~/.ssh/config (notepad %home%\.ssh\config)
ProxyCommand "C:\Program Files\Git\bin\connect.exe" -H <proxy-server>:<proxy-http-port> %h %p
Host 127.0.0.1
HostName 127.0.0.1
User <username>
Host github.com
| The Software Architect Elevator (2020) | |
| Architecting for Scale (2020) | |
| Fundamentals of Software Architecture (2020) | |
| The Unicorn Project (2019) | |
| Semantic Software Design (2019) | |
| The Pragmatic Programmer (2019) | |
| Technology Strategy Patterns (2018) | |
| Refactoring (2018) | |
| Release It (2018) | |
| The Model Thinker (2018) |
| Set fso = CreateObject("Scripting.FileSystemObject") | |
| InputFolder = fso.GetAbsolutePathName(WScript.Arguments.Item(0)) | |
| ZipFile = fso.GetAbsolutePathName(WScript.Arguments.Item(1)) | |
| ' Create empty ZIP file. | |
| CreateObject("Scripting.FileSystemObject").CreateTextFile(ZipFile, True).Write "PK" & Chr(5) & Chr(6) & String(18, vbNullChar) | |
| Set objShell = CreateObject("Shell.Application") | |
| Set source = objShell.NameSpace(InputFolder).Items | |
| objShell.NameSpace(ZipFile).CopyHere(source) |
Create ~/.ssh/config (notepad %home%\.ssh\config)
ProxyCommand "C:\Program Files\Git\bin\connect.exe" -H <proxy-server>:<proxy-http-port> %h %p
Host 127.0.0.1
HostName 127.0.0.1
User <username>
Host github.com
Methods for DataFrames manipulation
This document contains lessons learned with regard to Databricks programming, but also contains some best practices
blobname = "miraw"
storageaccount = "rdmidlgen2"
mountname = "/rdmi"
configs = {"fs.azure.account.auth.type": "OAuth",
| /* Headers - Color */ | |
| .cm-header-1, .markdown-source-view h1 | |
| { | |
| color: #FFFF00; | |
| } | |
| .cm-header-2, .markdown-source-view h2 | |
| { | |
| color: #FFEA00; |
| const work = async (id) => new Promise((resolve, reject) => { | |
| setTimeout(() => { | |
| console.log(`${(new Date()).toISOString()}: ${id}`) | |
| resolve() | |
| }, 1000) | |
| }); | |
| async function test1() { | |
| // parallel |
Usa o websocket do Bluesky para captura de posts em realtime
Cada post pode ser texto puro, resposta a outro post, pode conter imagens, link externo, etc.
Ref.: https://atproto.com/specs/event-stream
Tipos atribuidos a variável 'record':