Skip to content

Instantly share code, notes, and snippets.

View igponce's full-sized avatar
🤣
Yo me río de janeiro

Iñigo igponce

🤣
Yo me río de janeiro
View GitHub Profile
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
sudo yum install docker-ce
sudo systemctl enable docker.service
sudo systemctl start docker.service
@igponce
igponce / kanban_board.plantuml
Created December 19, 2019 15:33
Kanban (trello-like) board in PlantUML
@startuml Kanban Board
caption "Kanban board for 2019.12.19"
rectangle stack_TODO as "To-do" {
node Task3 [
** Task Name **
====
@igponce
igponce / kanban_board.svg
Created December 19, 2019 15:41
Kanban board (svg export) - look at the source! It has the original plantuml code
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# Somewhere at start
# for instance,
if __name__ == "__main__"
self.regex = re.compile(row['keywords'],re.I|re.M)
self.matches = re.finditer(regex, x)
# Later on...
def get_iso2(x, regex, matches):
package main
import (
"fmt"
tg_botapi "github.com/go-telegram-bot-api/telegram-bot-api"
)
func main() {
secret := "Pregunta al @botfather para esto"
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.