- What tech stack do you use? Are you rolling out new technologies or sunsetting older ones? Do you have any legacy system that you need to maintain?
- What is your maturity stage? Finding a direction, feature work, maintenance...
- What are the next big engineering challenges you will face?
- How are requirements delivered to the engineering teams? How are technical decisions made and communicated?
- What level of involvement do engineers have in relation to architecture and system design? How much freedom for decision making do individual developers have? What happens if an engineer identifies areas of improvement?
- What is the junior/senior balance of the team?
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 SSH_AUTH_SOCK=/run/user/$EUID/keyring/.ssh | |
| #export SSH_AGENT_PID=$(pgrep -nu $USER ssh-agent) | |
| $HOME/.nvm/versions/node/v10.15.3/bin/node $HOME/.nvm/versions/node/v10.15.3/bin/joplin sync > /dev/null | |
| cd ~/workspace.private/joplin_storage # <- path to joplin note repository | |
| git add . && git commit --no-gpg-sign -m "sync notes from $(hostname)" > /dev/null |
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 | |
| # 1. Prepare Environment | |
| apt update; apt upgrade -y | |
| apt install unzip default-jre -y | |
| wget https://netcologne.dl.sourceforge.net/project/symmetricds/symmetricds/symmetricds-3.9/symmetric-server-3.9.14.zip | |
| cd /opt/ |
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
| AWSTemplateFormatVersion: 2010-09-09 | |
| Description: 'Registers ecs tasks to a second target group' | |
| Parameters: | |
| ClusterArn: | |
| Description: 'ANR of cluster the service resides in' | |
| Type: String | |
| ServiceName: | |
| Description: 'Name of the service to register' | |
| Type: String | |
| ContainerName: |
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
| # Synchronize history between bash sessions | |
| # | |
| # Make history from other terminals available to the current one. However, | |
| # don't mix all histories together - make sure that *all* commands from the | |
| # current session are on top of its history, so that pressing up arrow will | |
| # give you most recent command from this session, not from any session. | |
| # | |
| # Since history is saved on each prompt, this additionally protects it from | |
| # terminal crashes. |
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
| // Original author fwed (contact@fwed.fr) | |
| // Modified from | |
| // https://gist.github.com/anonymous/2cca33d376f7f924fdaa67891ad098cc | |
| // https://medium.com/@fw3d/auto-archive-emails-in-gmail-after-2-days-1ebf0e076b1c | |
| function gmailAutoArchive() { | |
| gmailAutoarchiveHelper(1); | |
| gmailAutoarchiveHelper(2); | |
| gmailAutoarchiveHelper(3); | |
| gmailAutoarchiveHelper(7); |
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. Setup a project | |
| 2. Add groovy SDK support: | |
| https://www.bonusbits.com/wiki/HowTo:Add_Groovy_SDK_to_IntelliJ_IDEA | |
| 3. Download http://(yourjenkinsurl)/job/(yourpipelinejob)/pipeline-syntax/gdsl | |
| - this will give you the .gdsl file - download this to the src folder of your project. | |
| 4. Finally follow this step - right click on the src folder -> Mark directory as -> Sources Root |
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
| import functools | |
| def decorator(function): | |
| """A general decorator function""" | |
| @functools.wraps(function) | |
| def wrapper(*args, **kwargs): | |
| # Write decorator function logic here | |
| # Before function call |
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 | |
| #Heavily inspired by clivewalkden/centos-7-package.sh | |
| # ( https://gist.github.com/clivewalkden/b4df0074fc3a84f5bc0a39dc4b344c57 ) | |
| #However, this one was tested... 2017-JAN-09 | |
| vagrant init centos/7 | |
| vagrant up | |
| vagrant ssh -c "sudo yum -y update" | |
| vagrant ssh -c "sudo yum -y install wget nano kernel-devel gcc" |
NewerOlder