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
| Serial Keys: | |
| YV54A-2ZW5P-M887Y-UWXNE-QPUXD | |
| VY3R2-0NW0L-H845Q-TDMXT-XQAT0 | |
| VC7JR-A0Z97-08EGZ-M4YNV-XVHD0 | |
| FC1TU-4RGEQ-084EP-2XQQX-ZGHWA | |
| CU1WA-8HGEN-M815Z-HQP5E-QKADF | |
| AY7D0-FTG44-H846Y-2XPGV-P32T8 |
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
| //Hola Mundo en Go | |
| package main | |
| import "fmt" | |
| func main() { | |
| fmt.Printf("Hola mundo! \n") | |
| } |
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
| //Suma dos numeros A+B | |
| // go run SumaDosNumeros.go | |
| package main | |
| import "fmt" | |
| func main() { | |
| var i int | |
| fmt.Scan(&i) |
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
| FROM circleci/ruby:2.6.3-stretch-node | |
| USER root | |
| RUN apt-get update -qq \ | |
| && apt-get install -y --no-install-recommends \ | |
| build-essential \ | |
| libpq-dev \ | |
| nodejs \ | |
| wget \ |
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
| version: '3' | |
| services: | |
| db: | |
| image: postgres:9.6 | |
| environment: | |
| POSTGRES_PASSWORD: mysecretpassword | |
| ports: | |
| - "5432:5432" | |
| volumes: | |
| - postgres_data:/var/lib/postgresql/data |
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
| //Inyection | |
| select * from usuarios | |
| where username = 1 | |
| OR 1 = 1 | |
| UNION SELECT flag, username FROM usuarios |
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 ( | |
| "log" | |
| "net/http" | |
| ) | |
| func main() { | |
| server := http.NewServeMux() | |
| fs := http.FileServer(http.Dir("./views/")) |
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
| version: '3.1' | |
| services: | |
| wordpress: | |
| image: wordpress | |
| restart: always | |
| ports: | |
| - 8080:80 | |
| environment: |
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
| apply plugin: 'java' | |
| apply plugin: 'application' | |
| apply plugin: 'checkstyle' | |
| apply plugin: 'jacoco' | |
| mainClassName = 'Main' | |
| repositories { | |
| mavenCentral() | |
| } |
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
| plugins { | |
| id 'java' | |
| id 'application' | |
| } | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { |