- How did this position come to be open?
- What would my immediate priorities be?
- What is the performance review process like here?
- What are the most important skills to have to do well in this job?
- What is the typical career path for someone in this role?
- What are the biggest challenges that someone in this position would face?
- Can you show me examples of projects I would be working on?
- How will my performance be reviewed? how often? what metrics will be used?
- When and how is feedback given to me as an employee? (one to one, polls)
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
# Pull Request ID | |
export BC_PR_ID="${BC_PR_ID:-${CI_PULL_REQUEST##*/}}"; | |
REPO=$CI_PULL_REQUEST; | |
REPO=${REPO##https://github.com/}; | |
REPO=${REPO%%/pull/$BC_PR_ID}; | |
# Repo Slug | |
export BC_REPO_SLUG=$REPO; |
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
# Fix circleci repo reference | |
# https://community.sonarsource.com/t/code-is-empty-on-pull-request-reviews/822/11 | |
mkdir -p /root/.ssh; | |
echo 'github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==' > /root/.ssh/known_hosts; | |
git fetch --all; | |
git branch -D master; | |
git rev-parse origin/master; |
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
/** | |
* How many teams are registered | |
*/ | |
howManyTeamsAreRegistered(): number { | |
return this.teamsService.getElements().length; | |
} |
Command | Shortcut |
---|---|
xfce4-screenshooter --fullscreen --clipboard |
Ctrl + PrtScrn |
xfce4-screenshooter --fullscreen --save /home/dianjuar/Pictures |
PrtScrn |
xfce4-screenshooter --region --clipboard |
Ctrl + Shift + PrtScrn |
xfce4-screenshooter --region --save /home/dianjuar/Pictures |
Shift + PrtScrn |
xfce4-screenshooter --window --clipboard |
Ctrl + Super + PrtScrn |
xfce4-screenshooter --window --save /home/dianjuar/Pictures |
Super + PrtScrn |
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
<snippet> | |
<content><![CDATA[ | |
/** | |
* @param {string} security_nonce | |
* Code of the Nonce. Security Stuff | |
*/ | |
jQuery(function(\$) | |
{ | |
// The call trigered |
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
/** | |
* @param {string} security_nonce | |
* Code of the Nonce. Security Stuff | |
*/ | |
jQuery(function($) | |
{ | |
// The call trigered | |
$('#publish').click(function(event) | |
{ |
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
var spawn = require('child_process').spawn, | |
ls = spawn('python',['-u','python.py']); | |
ls.stdout.on('data', function (data) { | |
console.log('stdout: ' + data); | |
}); | |
ls.stderr.on('data', function (data) { | |
console.log('stderr: ' + data); | |
}); |