Skip to content

Instantly share code, notes, and snippets.

View Akronae's full-sized avatar
🧙‍♂️
Grand code wizard

Alexandre Daubricourt Akronae

🧙‍♂️
Grand code wizard
View GitHub Profile
@Akronae
Akronae / docker-compose.yml
Created July 6, 2022 13:55
Traefik Docker Swarm Routing
# using the sample command "docker stack deploy -c=docker-compose.yml stack_name"
# will deploy all the below services accross all of your machines, route them together, auto-scale and load-balance them.
version: "3.3"
services:
api:
image: "registry.app-maville.com/api"
build: "./api"
env_file:
@Akronae
Akronae / sample.vue
Last active July 6, 2022 13:39
Vue JSX Babel
<script>
import FloatingLabelTextInput from '@/components/FloatingLabelTextInput'
import Button from '@/components/Button'
import StringUtils from '@/utils/stringUtils'
export default
{
name: 'set-password',
render ()
@Akronae
Akronae / sleep.bat
Created October 18, 2019 14:23
Windows delayed sleeping script
set /P delay=" Sleep in (minutes): "
set /a delay=delay * 60
timeout /T %delay% & rundll32.exe powrprof.dll,SetSuspendState 0,1,0