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
<html> | |
<head> | |
<title>Sayfa</title> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
var now = new Date().valueOf(); |
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
# post_loc.txt contains the json you want to post | |
# -p means to POST it | |
# -H adds an Auth header (could be Basic or Token) | |
# -T sets the Content-Type | |
# -c is concurrent clients | |
# -n is the number of requests to run in the test | |
ab -p post_loc.txt -T application/json -H 'Authorization: Token abcd1234' -c 10 -n 2000 http://example.com/api/v1/locations/ |
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
gesture swipe up xdotool key ctrl+alt+Up | |
gesture swipe left xdotool key ctrl+alt+Right | |
gesture swipe right xdotool key ctrl+alt+Left | |
gesture swipe down xdotool key ctrl+alt+Down |
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
{ | |
"passBundle":[{ | |
"name": "Vodafone İletişim Pass", | |
"headerIcon": "URLpath/x.png", | |
"availableAppsIcon":{ | |
"availableAppsTitle": "Kullanabileceğin uygulamalar", //Max karakter sayısı iletilecektir. | |
"icons":[ | |
{ | |
"iconUrl": "URLpath/x.png", | |
"iconDescription": "WhatsApp" //Max karakter sayısı iletilecektir. |
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 main | |
import ( | |
"fmt" | |
"time" | |
"encoding/json" | |
"github.com/gobuffalo/pop" | |
) |
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 service | |
import "os" | |
type DirExistCreator interface { | |
Exist(path string) bool | |
Create(path string) bool | |
} | |
type DirService struct{} |
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
appname = central-api | |
httpport = 8080 | |
runmode = dev | |
autorender = false | |
copyrequestbody = true | |
EnableDocs = true | |
RedisHost=172.17.0.2 | |
RedisPort=6379 | |
MySQL=readonly:readonly*34@tcp(146.185.158.165:3306)/container |
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 main | |
import "fmt" | |
func main() { | |
v := []int{ | |
1, | |
2, | |
3, |
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
# List all stopped containers | |
docker ps --filter "status=exited" | |
# Remove all stopped containers | |
docker rm $(docker ps --filter "status=exited" -aq --no-trunc) | |
# Remove all unused images (http://stackoverflow.com/a/32723127) | |
docker rmi $(docker images --filter "dangling=true" -q --no-trunc) | |
#Remove dangling Images |
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
public static async Task<string> CalculateDistance(string origins, string destination) | |
{ | |
string url = string.Format(urlBase, origins, destination); | |
RestClient client = new RestClient(url); | |
var request = new RestRequest(); | |
var response = await client.ExecuteGetTaskAsync(request); | |
DistanceModel model = JsonConvert.DeserializeObject<DistanceModel>(response.Content); |
NewerOlder