- Git Git SCM support.
- Multiple SCMs Support for multiple SCM stages in freestyle job.
- Copy Artifact Allows to copy artifacts between different builds and jobs.
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
| Edgar Rodrigues Sandi | |
| Edgar Sandi | |
| tw/@EdgarSandi | |
| fb/EdgarSandi | |
| G+/EdgarSandi | |
| Ln/EdgarSandi | |
| Oracle PL/SQL - 24h | |
| Aula 1 - 17/01 |
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
| ACTIVITY_LENGUAGE_CHOICE = ( | |
| ('español', 'Español'), | |
| ('english', 'English'), | |
| ) | |
| class UserProfile(models.Model): | |
| # relations | |
| user = models.OneToOneField(User) |
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
| DOCKER | |
| ## . | |
| ## ## ## == | |
| ## ## ## ## === | |
| /""""""""""""""""\___/ === | |
| ~~~ {~~ ~~~~ ~~~ ~~~~ ~~ ~ / ===- ~~~ | |
| \______ o __/ | |
| \ \ __/ |
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
| -module(day1). | |
| -export([count/1]). | |
| -export([count10/0]). | |
| -export([check/1]). | |
| count([32| Rest]) -> count(Rest) + 1; | |
| count([_| Rest]) -> count(Rest); | |
| count([]) -> 1. | |
| count10(10) -> 10; |
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 ( | |
| "bufio" | |
| "fmt" | |
| "io" | |
| "log" | |
| "os" | |
| "path" | |
| "strings" |
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 ( | |
| "fmt" | |
| "io" | |
| "os" | |
| ) | |
| var path = "/Users/novalagung/Documents/temp/test.txt" |
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
| pushd c:\log | |
| systeminfo > systeminfo.txt | |
| msinfo32 /report msinfo32.txt | |
| ipconfig /all > ipconfig.txt | |
| schtasks /query /V > schtasks.txt | |
| net use > netuse.txt |
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
| #!/usr/bin/env bash | |
| typeofvar () { | |
| local type_signature=$(declare -p "$1" 2>/dev/null) | |
| if [[ "$type_signature" =~ "declare --" ]]; then | |
| printf "string" | |
| elif [[ "$type_signature" =~ "declare -a" ]]; then | |
| printf "array" |
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
| options("/*", | |
| (request, response) -> { | |
| String accessControlRequestHeaders = request | |
| .headers("Access-Control-Request-Headers"); | |
| if (accessControlRequestHeaders != null) { | |
| response.header("Access-Control-Allow-Headers", | |
| accessControlRequestHeaders); | |
| } |