This file contains 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 | |
# Start Pokemon GO Map with multiple instances to scan | |
# see https://github.com/AHAAAAAAA/PokemonGo-Map/issues/1159#issuecomment-234522134 | |
# Delete db when restarting | |
rm pogom.db | |
# Delete nohup.out | |
rm nohup.out | |
# Location 1 |
This file contains 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
<?php | |
// Wonach wird gesucht? | |
$searchQuery = "284910350"; | |
// iTunes API Request | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, "https://itunes.apple.com/de/lookup?id=".$searchQuery); | |
curl_setopt($ch, CURLOPT_HEADER, 0); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
$apiRequest = curl_exec($ch); |
This file contains 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 | |
apt-get update | |
apt-get -yt $(lsb_release -cs)-security dist-upgrade | |
apt-get --trivial-only dist-upgrade | |
apt-get autoclean |
NewerOlder