Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env bash
sinokai_black="#37343a"
sinokai_blue="#78DCE8"
sinokai_yellow="#ffD85B"
sinokai_red="#ff443E"
sinokai_white="#ffffff"
sinokai_green="#A9DC76"
sinokai_visual_grey="#49464e"
sinokai_comment_grey="#555555"
@sineto
sineto / ansible.cfg
Last active June 24, 2022 22:38
Automated user migration and management of AWS Identity and Access Management (IAM) resources
[defaults]
inventory = inventory/
stdout_callback = yaml
@sineto
sineto / App.js
Last active July 4, 2024 03:01
User Authentication with Context API and Hooks (useContext, useState)
import React from 'react';
import { BrowserRouter } from 'react-router-dom';
import { UserProvider } from './services/UserContext';
import Routes from './Routes'
function App() {
return (
<BrowserRouter>