Skip to content

Instantly share code, notes, and snippets.

View douglaszaltron's full-sized avatar
👨‍💻
Focusing

Douglas Zaltron douglaszaltron

👨‍💻
Focusing
View GitHub Profile
@olafwrieden
olafwrieden / Landing.js
Last active October 19, 2023 02:17
React Hooks + Azure App Configuration Feature Flags
const Landing = () => {
const { config: alertMessage } = useConfiguration('Landing:Alert'); // The config key from App Config
const { enabled: showLandingAlert } = useFeatureFlag('ShowLandingAlert'); // The feature flag key from App Config
const showAlert = showLandingAlert && alertMessage.toString().trim().length;
return (
<>
{showAlert && <TopAlert color="success">{alertMessage}</TopAlert>}
@jarussi
jarussi / oficina.md
Last active August 10, 2022 22:14
Oficina CS-GO

Configurando server de Counter Strike Global Ofensive no Ubuntu Server

Gerando uma chave ssh

Vai ser necessário gerar uma chave ssh para se conectar na instância criada, para gerar a chave é só seguir esse tutorial do google

Conectar na máquina

ssh ubuntu@{{ ip da maquina }}