Skip to content

Instantly share code, notes, and snippets.

View juusechec's full-sized avatar
💜
Nubanker - Purple Nation

Jorge Ulises juusechec

💜
Nubanker - Purple Nation
View GitHub Profile
@juusechec
juusechec / Info.plist
Created November 30, 2024 16:37
Doom.app/Contents/Info.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleExecutable</key>
<string>Doom</string>
<key>CFBundleGetInfoString</key>
<string>Doom</string>
<key>CFBundleIconFile</key>
<string>doom3.icns</string>
@juusechec
juusechec / Kumite_Brackets_Tribu_Transversales_y_Seguridad.md
Last active November 8, 2021 21:01
Kumite_Brackets_Tribu_Transversales_y_Seguridad.md
@juusechec
juusechec / Kumite_Brackets_Tribu_Creditos_Consumo.md
Last active October 15, 2021 15:42
Kumite Brackets Tribu Créditos de Consumo
@juusechec
juusechec / Kumite_Brackets_on_boarding.md
Created October 14, 2021 22:12
Kumite_Brackets_on_boarding
  1. Ingrese a la URL https://www.urionlinejudge.com.br/judge/es/tournaments/rank/5240
  2. Seleccione su nombre en la opción Equipo y en el campo “PASSPHRASE” ingrese la palabra “abc123” tal como se muestra en la imagen: image
  3. Haga clic en la opción “Registro”
  4. Lenguajes admitidos:
  • Go
  • Javascript
  • Javascript 12.18
  • Kotlin
@juusechec
juusechec / iniciar_kumite_revancha.md
Last active July 7, 2021 22:56
Iniciar Kumite Revancha
@juusechec
juusechec / configuracion_kumite.md
Last active November 8, 2021 20:58
Configuración Kumite
@juusechec
juusechec / numeric_input.go
Created March 6, 2021 19:28
GO NumericInput example with rune input
package main
import "fmt"
import "unicode"
type UserInput interface {
Add(rune)
GetValue() string
}
@juusechec
juusechec / sort_test.go
Created March 6, 2021 19:26
Go Testing Example
// filename sort_test.go
package main
import (
"reflect"
"sort"
"testing"
)
func SortAscending(items []int) []int {