Audit Date: 2026-04-29 URL: https://sendblue.com (canonical: https://www.sendblue.com) Legal Entity: Round One Inc., 344 West End Avenue, New York NY 10024 Business Type: SaaS — Developer/B2B platform (iMessage API for business) Pages Analyzed: ~25 sampled (sitemap inventory: 177–263 URLs depending on count method; ~80 blog posts, ~30 glossary terms, 22 use-case pages, 14 competitor compare pages, 25+ integration pages)
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
| { | |
| "workbench.colorTheme": "Nord", | |
| "editor.mouseWheelZoom": true, | |
| "editor.renderWhitespace": "all", | |
| "editor.fontFamily": "'monospace', 'Cascadia Code', 'Inconsolata', 'Fira Code', 'Monoid', 'Droid Sans Mono', monospace, 'Droid Sans Fallback'", | |
| "editor.fontLigatures": true, | |
| "eslint.validate": [ | |
| "vue", | |
| "html", | |
| "javascript", |
Para realizar o nosso workshop existem alguns requisitos técnicos. Sugerimos que você instale previamente os programas que seguem para que possamos ir direto à prática no dia:
- Node.js v6+ LTS e npm e npm (é instalado junto com o Node)
- Git
Após isso, nós precisamos somente instalar o Truffle, o framework que auxiliará no desenvolvimento do nosso DApp:
I hereby claim:
- I am icaroharry on github.
- I am icaro (https://keybase.io/icaro) on keybase.
- I have a public key ASCypKE6xgablH0DrZvaBghyG7_zdpHlJ8PpK4nd08VaTQo
To claim this, I am signing this object:
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
| dropbox.getThumbnail(file.path_lower, 'jpeg', 'w64h64'). | |
| then((response) => { | |
| console.log(response) | |
| //let thumbnailBlob = window.btoa(unescape(encodeURIComponent(response.text))); | |
| //file.thumbnailLink = 'data:image/jpeg;base64,' + thumbnailBlob; | |
| let arrayBufferView = new Uint32Array(response.text); | |
| let thumbnailBlob = new Blob([arrayBufferView], {type: "image/jpeg"}); | |
| file.thumbnailLink = window.URL.createObjectURL(thumbnailBlob); | |
| console.log(thumbnailBlob); | |
| console.log(file.thumbnailLink) |