- Arquitetura de Software: A diferença entre Arquitetura e Design - Eduardo Rabelo 📖 ⭐
- Software Architecture - The Difference Between Architecture and Design - Mohamed Aladdin 📖 ⭐
- Knocking down the Ivory Tower - Christopher Laine 📖
- The Ivory Tower Architect - Deep Shah 📖
- Modeling Software Architecture With C4 📖 ⭐
- [Software Architecture: The Most Important Architectural Patterns You Need to Know 📖 ⭐](https://levelup.gitconnected.com/software-architecture-the-important-architectural-patterns-you-need-to-know-a1f5e
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
(() => { | |
let count = 0; | |
function getAllButtons() { | |
return document.querySelectorAll('button.is-following') || []; | |
} | |
async function unfollowAll() { | |
const buttons = getAllButtons(); |
So, you have installed Android Studio, and is setting it up for react native, buuuut
you're new to fish and it seems like it doesn't have a .bashrc
or .zshrc
equivalent.
worry not, just run the following, in order:
Set the ANDROID_HOME variable, here the U
will make it persist through restarts, and the x
will make it be exported:
set -Ux ANDROID_HOME $HOME/Android/Sdk
Install, build and debug a react native app in WSL2 (Windows Subsystem for Linux) and Ubuntu.
OlderNewer