Skip to content

Instantly share code, notes, and snippets.

View antonmry's full-sized avatar

Antón Rodríguez antonmry

View GitHub Profile
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
@antonmry
antonmry / tareas.md
Created June 13, 2017 17:05
Chuleta VigoJUG
  • 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)

Keybase proof

I hereby claim:

  • I am antonmry on github.
  • I am antonmry (https://keybase.io/antonmry) on keybase.
  • I have a public key whose fingerprint is 5A5E 6D95 7B1E 6A20 1C4B 729E 9693 E860 55D4 6474

To claim this, I am signing this object:

@antonmry
antonmry / Installation of Fedora 23 on Dell XPS 13 2015 (9343) .md
Last active August 21, 2017 14:00
Installation of Fedora 21 on Dell XPS 13 Developer Edition 2015
@antonmry
antonmry / .Xresources
Last active January 9, 2018 22:48
My i3 configuration and some xrand outputs
! Fonts {{{
Xft.antialias: true
Xft.hinting: true
Xft.rgba: rgb
Xft.hintstyle: hintfull
Xft.dpi: 100
! }}}
@antonmry
antonmry / thyme.sh
Created September 14, 2016 14:29
Thyme script with detect absent, autoupdate and web refresh
#! /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"
@antonmry
antonmry / config
Created November 14, 2018 09:38
i3 config configuration
# 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
@antonmry
antonmry / Data
Created August 9, 2019 10:52
Data
https://docs.google.com/presentation/d/10EW4cLJOW-q_lyDKAPw6wwhsySaZ-NTqEv3eyEAuJgU/edit?usp=sharing
@antonmry
antonmry / Foo2.java
Last active January 30, 2020 07:22
SpringBoot application with Junit5 tests using EmbeddedKafka
package example;
import lombok.*;
@Data
@NoArgsConstructor(access = AccessLevel.PRIVATE, force = true)
@AllArgsConstructor
public class Foo2 {
private String foo;
}
@antonmry
antonmry / application.yml
Created January 30, 2020 11:20
Disable Spring Embedded Kafka logs
spring:
kafka:
producer:
value-serializer: org.springframework.kafka.support.serializer.JsonSerializer
logging:
level:
org.springframework.kafka.*: OFF
org.springframework.kafka.listener.[KafkaMessageListenerContainer$ListenerConsumer]: OFF
org.apache.kafka.*: OFF