Skip to content

Instantly share code, notes, and snippets.

View Gonzales's full-sized avatar
💭
I may be slow to respond.

Gokhan Karasoglu Gonzales

💭
I may be slow to respond.
View GitHub Profile
{
"basics": {
"name": "Gokhan Karasoglu",
"label": "Innovate and Automate",
"email": "gonzales.gokhan@gmail.com",
"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",
@Gonzales
Gonzales / win_2016_aws_network_fix.ps1
Created April 4, 2018 09:53
aws stock windows server 2016 has a network bug which stops Instance to access metadata server with IP
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
@Gonzales
Gonzales / .gitattributes
Last active December 30, 2015 03:09
.gitattributes for .NET Contributors. Copy to Project root .
# 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
@Gonzales
Gonzales / Cacik
Created July 3, 2013 13:00
Calabash-iOS cucumber runner. This can allow you to organize your features in different folders (country specific in this case) and run separately or altogether. For Example: "sh ./cacik.sh iPhone de 0" will run all tests under de folder for iPhone and won't run master tests
#!/bin/bash
#test comments
appName="YourAppName"
defaultdevice=$1
defaultlocale=$2
willmasterrun=$3
if [ "$#" -ne 3 ] ; then