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
| { | |
| "sessions": { | |
| "0": { | |
| "title": "Angular : découverte d’Ivy", | |
| "description": "Sur les traces du nouvel outil de compilation et de rendu Angular", | |
| "tags": ["💡 Discovery"], | |
| "speakers": [ | |
| "lrI6gAvw7EU8fseDc5NfOoYWQJx2", | |
| "3jAixvFWDwMpoISHbnkL3IqGNjP2" | |
| ], |
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
| #!/bin/bash | |
| #Fetch Nantes branch | |
| env | |
| echo $'#!/bin/bash\nif [ "$CI_BRANCH" = "nantes" ]\nthen\n echo "Not a PullRequest, checkout nantes branch"\n git fetch origin\n git checkout nantes\nfi\n' > git-command.sh | |
| cat git-command.sh | |
| chmod +x git-command.sh && ./git-command.sh | |
| rm -Rf themes/devfest-theme-hugo | |
| git clone https://github.com/GDG-Nantes/devfest-theme-hugo.git themes/devfest-theme-hugo | |
| #Get Hugo | |
| #curl -fsSL -o /tmp/hugo.tar.gz https://github.com/gohugoio/hugo/releases/download/v0.55.2/hugo_extended_0.55.2_Linux-64bit.tar.gz |
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 com.zenika.zencontact.persistence.datastore; | |
| import java.util.ArrayList; | |
| import java.util.Date; | |
| import java.util.List; | |
| import com.google.appengine.api.blobstore.*; | |
| import com.google.appengine.api.datastore.*; | |
| import com.zenika.zencontact.domain.User; | |
| import com.zenika.zencontact.persistence.UserDao; |
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
| https://backoffice-dot-epsi-20181212-ju.appspot.com/tp1.zip |
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
| RUN apk add --no-cache git | |
| RUN apk add --no-cache --virtual .build-deps \ | |
| g++ \ | |
| make \ | |
| python \ | |
| && npm --quiet install --global node-sass \ | |
| && apk del .build-deps \ | |
| && rm -rf /tmp/* | |
| && rm -rf /var/lib/apt/lists/* \ |
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
| USER_EMAIL=$(gcloud auth list --limit=1 2>/dev/null | grep '@' | awk '{print $2}') | |
| Authorization_Bearer=$(gcloud auth application-default print-access-token) | |
| PLAINTEXT=$(cat $file | base64 -w0) | |
| PROJECT=$(gcloud info --format='value(config.project)') |
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
| dig immutadot.zenika.com +nostats +nocomments +nocmd |
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
| #!/bin/sh | |
| #export DEVSHELL_PROJECT_ID="demoing" | |
| DEVSHELL_PROJECT_ID=${DEVSHELL_PROJECT_ID:-'ices-demo'} # If variable not set, set it to default. | |
| echo "begin" | |
| echo $DEVSHELL_PROJECT_ID | |
| export DEVSHELL_PROJECT_ID=$DEVSHELL_PROJECT_ID | |
| echo "end" | |
| env | grep DEVSHELL_PROJECT_ID | |
| #export VERSION=$(cat package.json | grep version | cut -d'"' -f4) |
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
| 1/ mobile app | |
| https://play.google.com/store/apps/details?id=com.google.android.apps.cloudconsole | |
| 2/ not promoting by default | |
| 3/ alpine-appengine-java | |
| https://github.com/Zenika/alpine-appengine-java | |
| 4/ Use @WebServlet to not use web.xml ? | |
| 5/ Get estimated dollar by request in the trace :) | |
| 6/ deploy with circleCI ? :) |
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
| #generate your key | |
| ssh-keygen | |
| # add to the macos keychain | |
| ssh-add -K ~/.ssh/[your-private-key] | |
| #create a file to indicate to use the macos keychain '.ssh/config' | |
| Host * | |
| UseKeychain yes | |
| AddKeysToAgent yes | |
| IdentityFile ~/.ssh/id_rsa |