[ Launch: test ] ca063e4389230b1e9e647c91757966ba by alex-arriaga[ Launch: test ] 4653053 by enjalot[ Launch: test ] 4652017 by enjalot[ Launch: test ] 4582399 by enjalot
This file contains 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
[core] | |
excludesfile = /Users/alex/.gitignore_global | |
[difftool "sourcetree"] | |
cmd = /usr/local/bin/ksdiff -w \"$LOCAL\" \"$REMOTE\" | |
path = | |
[mergetool "sourcetree"] | |
cmd = /usr/local/bin/ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot | |
trustExitCode = true | |
[user] | |
name = Alex Arriaga |
This file contains 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
*~ | |
.DS_Store | |
# Read about how to use .gitignore: https://help.github.com/articles/ignoring-files | |
# Improved by Alex Arriaga (@alex_arriaga_m) - http://www.alex-arriaga.com | |
# Include your project-specific ignores in this section | |
# ----- Project ignores | |
This file contains 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
# Path to Oh My Fish install. | |
set -gx OMF_PATH "/Users/alex/.local/share/omf" | |
# MySQL commands | |
# export PATH="/usr/local/mysql/bin:$PATH" | |
# Customize Oh My Fish configuration path. | |
#set -gx OMF_CONFIG "/Users/alex/.config/omf" | |
# Load oh-my-fish configuration. |
This file contains 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
#!/bin/bash | |
if [ $# -ne 1 ]; then | |
echo "Usage: sphp [phpversion]" | |
exit 1 | |
fi | |
currentversion="`php -r \"echo str_replace('.', '', substr(phpversion(), 0, 3));\"`" | |
newversion="$1" |
This file contains 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
import { bootstrap } from "angular2/platform/browser"; | |
import { provide, ComponentRef } from "angular2/core"; | |
import { Provider } from "angular2/src/core/di/provider"; | |
import { ROUTER_PROVIDERS, APP_BASE_HREF } from "angular2/router"; | |
import { HTTP_PROVIDERS } from "angular2/http"; | |
import 'rxjs/add/operator/map'; | |
import { SERVICE_PROVIDERS } from "./authenticated/carbonldp/common/providers/carbon-services.provider"; | |
import { AppComponent } from "app/app.component"; |
[ Launch: Brush Example ] 83d4445c05805c79090c8e01cb090fc4 by alex-arriaga[ Launch: test ] ca063e4389230b1e9e647c91757966ba by alex-arriaga[ Launch: test ] 4653053 by enjalot[ Launch: test ] 4652017 by enjalot[ Launch: test ] 4582399 by enjalot
[ Launch: test ] f379d406098b66b9c16f7b88608deb1b by alex-arriaga[ Launch: test ] 4653053 by enjalot[ Launch: test ] 4652017 by enjalot[ Launch: test ] 4582399 by enjalot
This file contains 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
import java.time.*; | |
import java.time.format.DateTimeFormatter; | |
import java.time.format.FormatStyle; | |
import java.time.temporal.ChronoUnit; | |
import java.time.temporal.TemporalAdjusters; | |
import java.util.*; | |
import static java.time.temporal.TemporalAdjusters.*; | |
public class Java8DateTimeExamples { |
This file contains 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
# === Start: Stage #1 - Building the web app | |
FROM node:10.15.0-alpine AS builder | |
WORKDIR /usr/app | |
# Wildcard to copy package-lock.json too | |
COPY package*.json ./ | |
# RUN executes command(s) in a new layer and creates a new image. E.g., it is often used for installing software packages. | |
RUN npm install |
OlderNewer