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
{ | |
"basics": { | |
"name": "Gokhan Karasoglu", | |
"label": "Innovate and Automate", | |
"email": "[email protected]", | |
"phone": "*******", | |
"website": "", | |
"summary": "I'm a full stack web developer who can build apps from the ground up. I would love to work in a place that offers challenging work and smart and excited people.", | |
"location": { | |
"address": "United Kingdom", |
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
Add-Content 'c:\script.log' (date) | |
# This fixes a bug in AWS startup script processing. | |
# 169.254.169.254 is for metadata service | |
# 169.254.169.250 is for KmsInstanceVpc1 | |
# 169.254.169.251 is for KmsInstanceVpc2 | |
$ipAddrs = @("169.254.169.254/32", "169.254.169.250/32", "169.254.169.251/32") | |
$sleepTime = 1 |
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
# Auto detect text files and perform LF normalization | |
* text=auto | |
# Custom for Visual Studio | |
*.cs text diff=csharp | |
*.java text diff=java | |
*.html text diff=html | |
*.css text | |
*.js text | |
*.sql text |
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 | |
#test comments | |
appName="YourAppName" | |
defaultdevice=$1 | |
defaultlocale=$2 | |
willmasterrun=$3 | |
if [ "$#" -ne 3 ] ; then |