- Confirmar ponentes
- Añadilos o grupo @vigojug/ponentes e poñelos nesta issue (xa están invitados) @antonmry
- Confirmar local (volver a facelo) e no calendar @antonmry
- Crear PR entrada na web e editar http://www.vigojug.org/meetings.html @antonmry
- Crear en meetup @antonmry
- Publicar en Twitter e Linkedin @antonmry
- Cartel @tomasalmeida
- Envío a universidades e FPs @antonmry
- Lanzar enquisa Reto (7 días antes) -> 27/06
- Mandar correo recordatorio (3-4 días antes)
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
| https://docs.google.com/presentation/d/10EW4cLJOW-q_lyDKAPw6wwhsySaZ-NTqEv3eyEAuJgU/edit?usp=sharing |
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
| # This file has been auto-generated by i3-config-wizard(1). | |
| # It will not be overwritten, so edit it as you like. | |
| # | |
| # Should you change your keyboard layout some time, delete | |
| # this file and re-run i3-config-wizard(1). | |
| # | |
| ## Startup | |
| exec xrandr --dpi 220 |
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 | |
| publicIP=`dig +short myip.opendns.com @resolver1.opendns.com` | |
| ## TODO: move port, description and group-id to variables | |
| ## Consult previous one | |
| cidrIP=`aws ec2 describe-security-groups --group-ids sg-XXXXXX | jq -r '.SecurityGroups[0].IpPermissions[] | select(.ToPort==80) | .IpRanges[] | select(.Description == "antonmry") | .CidrIp' | tail -1f` | |
| ## Delete the previous one |
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
| ! Fonts {{{ | |
| Xft.antialias: true | |
| Xft.hinting: true | |
| Xft.rgba: rgb | |
| Xft.hintstyle: hintfull | |
| Xft.dpi: 100 | |
| ! }}} |
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
| processor : 0 | |
| vendor_id : GenuineIntel | |
| cpu family : 6 | |
| model : 61 | |
| model name : Intel(R) Core(TM) i7-5500U CPU @ 2.40GHz | |
| stepping : 4 | |
| microcode : 0x24 | |
| cpu MHz : 2899.951 | |
| cache size : 4096 KB | |
| physical id : 0 |
Disclaimer: I don't believe there is a best architecture. It depends of the business requirements and there are several things to consider, including non-tecnical ones.
List of things I've done to have a reliable, easy to maintain, operate and evolve HA architecture.
To solve screen is flickering
sudo -e /etc/default/grub
Add i915.enable_psr=0 to GRUB_CMDLINE_LINUX="...... i915.enable_psr=0"
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 | |
| # Dependencies (Fedora) | |
| # xprintidle: https://copr.fedorainfracloud.org/coprs/alonid/xprintidle/ | |
| # wmctrl: dnf install wmctrl | |
| # Config | |
| LOGFILE="/home/antonmry/Documents/thyme/thyme_$(date '+%Y%m%d').log" | |
| HTMLFILE="/home/antonmry/Documents/thyme/thyme_$(date '+%Y%m%d').html" | |
| HTMLFILETEMP="/home/antonmry/Documents/thyme/thyme.html" |
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
| import groovy.lang.GroovyClassLoader | |
| // http://docs.groovy-lang.org/latest/html/documentation/index.html#_integrating_groovy_in_a_java_application | |
| def gcl = new GroovyClassLoader() | |
| def clazz = gcl.parseClass(new File("./template.groovy")) | |
| assert clazz.name == 'Env' | |
| def o = clazz.newInstance() | |
| o.doIt() | |
| println o.test |