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
| // | |
| // **************************************************************************** | |
| // * Mixxx mapping script file for the Hercules DJControl Air+. | |
| // * Author: DJ Phatso, contributions by Kerrick Staley and Tanguy Herrmann (dolanor) | |
| // * Version 1.1 (March 2019) | |
| // * Forum: https://www.mixxx.org/forums/viewtopic.php?f=7&t=9403 | |
| // * Wiki: http://www.mixxx.org/wiki/ |
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
| { | |
| "basics": { | |
| "name": "Tanguy Herrmann", | |
| "label": "Go Development, Automation and Blockchain", | |
| "email": "tanguy-resume@tuxago.com", | |
| "image": "https://avatars.githubusercontent.com/u/928722?v=4", | |
| "summary": "Expert en développement logiciel, son but est d'avoir les machines au service des humains.\n\nIl automatise et optimise les processus pour d'excellents résultats avec une vision d'efficacité et d'utilisation à long terme. Son engagement à améliorer l'efficacité − que ce soit en réflechissant sur l'architecture logicielle, en écrivant un code propre qui rend la maintenance future facile, en facilitant le processus de développement (code, gestion de version, test, revue, suivi de bug, livraison) ou en apprenant des technologies nouvelles ou meilleures − a fait de lui un collaborateur apprécié au sein d'équipes de projets de beaucoup d'industries différentes (voir Expérience)\n\nIl considère son travail comme un investissement dans un futur ou les personnes imaginent, crééent et profiten |
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
| package main | |
| import ( | |
| "dagger.io/dagger" | |
| "universe.dagger.io/bash" | |
| "universe.dagger.io/docker" | |
| ) | |
| dagger.#Plan & { |
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
| package diffpanicwriter | |
| import ( | |
| "testing" | |
| "io" | |
| "errors" | |
| ) | |
| type DiffPanicWriter struct { | |
| pos int |
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
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDiawjwXCmkwxx3/egFX2ryVAUiFcDoo/9PHwBCLUsuJ5B8hIcnHj1YWZcZ5DDHq7c2s5Ny1eEsC0MrjIJ6bkkrvSXbUHaZFE0EZRVez1hSoIV1BIJCE4ghRw9eb1cRx86uQrp+kS3azIvD1obCxD7aCRt7VXxkIqAbDmMmpujnbr9j43FlY5CRw1dm/1A7Xt1sOBTEmnoyekwIlCgt45FNj95QPTstoZr+xWnl6eRL2Xs+5nchKN1ZIIjSCmLUskbkiX8yAvsGbRl5g+0aYP9qcAtxcWkwR9L5VUKFpjyGkcg5xTG8c/Pa+IOlNj/Mz/xwncjmJfh/8hpI3jcSr6ah dolanor@moondark |
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
| package remotobug | |
| type Info struct { | |
| ID int | |
| Long string | |
| } |
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
| package main | |
| import ( | |
| "gioui.org/app" | |
| "gioui.org/font/gofont" | |
| "gioui.org/io/system" | |
| "gioui.org/layout" | |
| "gioui.org/widget" | |
| "gioui.org/widget/material" | |
| ) |
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
| #!/bin/bash | |
| set -e | |
| cid=`docker run --name go-odbc-mssql-server -d -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=notVERYstrongP455word.' -d mcr.microsoft.com/mssql/server:2017-CU8-ubuntu` | |
| mssqlIP=$(docker inspect --format "{{ .NetworkSettings.Networks.bridge.IPAddress }}" ${cid}) | |
| docker run --rm -it golang:1.12 sh -c " | |
| apt update | |
| apt install -y tdsodbc unixodbc-dev freetds-bin | |
| cat > /etc/odbcinst.ini << EOF |
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
| # 2.2.9: /etc/dovecot/dovecot.conf | |
| # OS: Linux 4.4.0-109-generic x86_64 Ubuntu 14.04.5 LTS ext4 | |
| # NOTE: Send doveconf -n output instead when asking for help. | |
| auth_anonymous_username = anonymous | |
| auth_cache_negative_ttl = 1 hours | |
| auth_cache_size = 0 | |
| auth_cache_ttl = 1 hours | |
| auth_debug = no | |
| auth_debug_passwords = no | |
| auth_default_realm = |
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
| package main_test | |
| import ( | |
| "testing" | |
| ) | |
| type Whatever struct { | |
| a, b, c int | |
| } |
NewerOlder