diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/config.example.inc.php | 6 | ||||
-rw-r--r-- | inc/footer.inc.php | 9 | ||||
-rw-r--r-- | inc/header.inc.php | 6 | ||||
-rw-r--r-- | inc/lastfm.inc.php | 65 | ||||
-rw-r--r-- | inc/nav.inc.php | 13 | ||||
-rw-r--r-- | inc/title.inc.php | 22 | ||||
-rw-r--r-- | inc/weatherdata.inc.php | 68 |
7 files changed, 0 insertions, 189 deletions
diff --git a/inc/config.example.inc.php b/inc/config.example.inc.php deleted file mode 100644 index da01886..0000000 --- a/inc/config.example.inc.php +++ /dev/null @@ -1,6 +0,0 @@ -<?php -// Create a constant array with config variables -const CONF = array( - "lastfm_key" => "key", - "lastfm_user" => "username" -); diff --git a/inc/footer.inc.php b/inc/footer.inc.php deleted file mode 100644 index 9f96798..0000000 --- a/inc/footer.inc.php +++ /dev/null @@ -1,9 +0,0 @@ -<hr> - <div style="text-align: center;"> - <img src="/res/img/buttons/browser.gif" alt="Any Damn Browser"> - <a href="https://www.linux.org/"><img src="/res/img/buttons/linuxnow.gif" alt="Linux NOW!"></a> - <a href="https://www.vim.org/"><img src="/res/img/buttons/vim.gif" alt="vim"></a> - <a href="http://jigsaw.w3.org/css-validator/check/referer"><img style="border:0;width:88px;height:31px" src="/res/img/buttons/vcss-blue.gif" alt="Valid CSS!"></a> - <a href=""><img style="border:0;width:88px;height:31px" src="/res/img/buttons/valid-html401-blue.png" alt="Valid HTML 4.01!"></a><br> - Last Modified <span class="date"><?=date('Y-m-d H:i:s', filemtime($file) + 3600);?> GMT</span> - </div> diff --git a/inc/header.inc.php b/inc/header.inc.php deleted file mode 100644 index f891dca..0000000 --- a/inc/header.inc.php +++ /dev/null @@ -1,6 +0,0 @@ -<meta charset="utf-8"> - <meta property="og:type" content="website"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta name="theme-color" content="#333333"> - <link rel="stylesheet" id="theme" href="/res/css/dark.css" type="text/css"> - <script defer data-domain="diskfloppy.me" src="https://analytics.nickandfloppy.com/js/plausible.js"></script> diff --git a/inc/lastfm.inc.php b/inc/lastfm.inc.php deleted file mode 100644 index fa279ac..0000000 --- a/inc/lastfm.inc.php +++ /dev/null @@ -1,65 +0,0 @@ -<h1>Last.fm <small>(<a href="https://www.last.fm/user/floppydisk_">Profile</a>)</small></h1> -<?php -require('inc/config.inc.php'); - -$curl_current = curl_init(); - -curl_setopt_array($curl_current, [ - CURLOPT_URL => "https://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=".CONF['lastfm_user']."&nowplaying=true&format=json&api_key=".CONF['lastfm_key'], - CURLOPT_RETURNTRANSFER => true, - CURLOPT_ENCODING => "", - CURLOPT_MAXREDIRS => 10, - CURLOPT_TIMEOUT => 30, - CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, - CURLOPT_CUSTOMREQUEST => "GET", -]); - -$current_response = curl_exec($curl_current); -$err = curl_error($curl_current); - -curl_close($curl_current); - -if ($err) { - die("cURL Error #:" . $err); -} -$current_response = json_decode($current_response, true); -$nowplaying = $current_response['recenttracks']['track'][0]; - -echo ' <b>Last/Current Track:</b> <a href="'.$nowplaying['url'].'">'.$nowplaying['name'].' • '.$nowplaying['artist']['#text'].'</a>'.PHP_EOL; - -$tracks_to_show = 10; - -$curl = curl_init(); - -curl_setopt_array($curl, [ - CURLOPT_URL => "https://ws.audioscrobbler.com/2.0/?method=user.gettoptracks&user=".CONF['lastfm_user']."&format=json&period=7day&api_key=".CONF['lastfm_key'], - CURLOPT_RETURNTRANSFER => true, - CURLOPT_ENCODING => "", - CURLOPT_MAXREDIRS => 10, - CURLOPT_TIMEOUT => 30, - CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, - CURLOPT_CUSTOMREQUEST => "GET", -]); - -$toptracks_response = curl_exec($curl); -$err = curl_error($curl); - -curl_close($curl); - -if ($err) { - die("cURL Error #:" . $err); -} -echo ' <h2>Top '.$tracks_to_show.' Tracks (Last 7 days)</h2>'.PHP_EOL; -echo ' <ol>'.PHP_EOL; -$toptracks_response = json_decode($toptracks_response, true); -$tracks = $toptracks_response['toptracks']['track']; -$count = 0; -foreach ($tracks as $track) { - echo ' <li>'.PHP_EOL; - echo ' <a href="'.$track['url'].'">'.$track['name'].' • '.$track['artist']['name'].'</a>'.PHP_EOL; - echo ' <small>('.$track['playcount'].' plays)</small>'.PHP_EOL; - echo ' </li>'.PHP_EOL; - if ($count >= $tracks_to_show - 1) break; - $count++; -} -echo ' </ol>';
\ No newline at end of file diff --git a/inc/nav.inc.php b/inc/nav.inc.php deleted file mode 100644 index b3876ea..0000000 --- a/inc/nav.inc.php +++ /dev/null @@ -1,13 +0,0 @@ -<div class="header"> - <nav> - <div> - <a href="//git.diskfloppy.me/">git</a> | - <a href="/projects/">projects</a> | - <a href="https://github.com/floppydisk05?tab=repositories">repos</a> | - <a href="/calculators/">calculators</a> | - <a href="/computers/">computers</a> | - <a href="/bookmarks/">bookmarks</a> | - <a href="/guestbook/">guestbook</a> - </div> - </nav> -</div> <!-- header --> diff --git a/inc/title.inc.php b/inc/title.inc.php deleted file mode 100644 index 149f0c8..0000000 --- a/inc/title.inc.php +++ /dev/null @@ -1,22 +0,0 @@ -<title><?php -$uri = $_SERVER['REQUEST_URI']; -if ($uri === '/') { echo '~floppydisk'; } -else { - $uri = substr(substr($uri, 1), 0, -1); - if (!strpos($uri, '/')) { - $uriArr = explode('/', $uri); - $link = "/"; - $links = '~floppydisk / '; - $currentDir = basename(getcwd()); - foreach($uriArr as $page) { - if ($page !== $currentDir) { - if ($link !== '/') $link = $link . '/' . $page; - else $link = $link . $page; - $links = $links . $link . $page . ' / '; - } - } - $links = substr($links, 0, -3) . ' / ' . $currentDir; - echo $links; - } -} -?></title> diff --git a/inc/weatherdata.inc.php b/inc/weatherdata.inc.php deleted file mode 100644 index cfc6a49..0000000 --- a/inc/weatherdata.inc.php +++ /dev/null @@ -1,68 +0,0 @@ -<?php - -$curl_current = curl_init(); - -curl_setopt_array($curl_current, [ - CURLOPT_URL => "http://weather.diskfloppy.me/data/weatherData.json", - CURLOPT_RETURNTRANSFER => true, - CURLOPT_ENCODING => "", - CURLOPT_MAXREDIRS => 10, - CURLOPT_TIMEOUT => 300, - CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, - CURLOPT_CUSTOMREQUEST => "GET", -]); - -$current_response = curl_exec($curl_current); -$err = curl_error($curl_current); - -curl_close($curl_current); - -$curl_current = curl_init(); - -curl_setopt_array($curl_current, [ - CURLOPT_URL => "http://weather.diskfloppy.me/data/got.txt", - CURLOPT_RETURNTRANSFER => true, - CURLOPT_ENCODING => "", - CURLOPT_MAXREDIRS => 10, - CURLOPT_TIMEOUT => 300, - CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, - CURLOPT_CUSTOMREQUEST => "GET", -]); - -$last_update = curl_exec($curl_current); -$err = curl_error($curl_current); - -curl_close($curl_current); - -if ($err) { - die("cURL Error: " . $err); -} -$current_response = json_decode($current_response, true); -$weather_data = $current_response['data']['conditions'][0]; -echo '<h1>Local Weather <small>(Last Update: '.gmdate('H:i Y-m-d', intval(rtrim($last_update))).')</small></h1>'; -$windDirDeg = $weather_data['wind_dir_last']; -$windDir = ""; -// W I N D -if (349 <= $windDirDeg || $windDirDeg <= 11) { $windDir = "N"; } -else if (12 <= $windDirDeg && $windDirDeg <= 33) { $windDir = "NNE"; } -else if (34 <= $windDirDeg && $windDirDeg <= 56) { $windDir = "NE"; } -else if (57 <= $windDirDeg && $windDirDeg <= 78) { $windDir = "ENE"; } -else if (79 <= $windDirDeg && $windDirDeg <= 101) { $windDir = "E"; } -else if (102 <= $windDirDeg && $windDirDeg <= 123) { $windDir = "ESE"; } -else if (124 <= $windDirDeg && $windDirDeg <= 146) { $windDir = "SE"; } -else if (147 <= $windDirDeg && $windDirDeg <= 168) { $windDir = "SSE"; } -else if (169 <= $windDirDeg && $windDirDeg <= 191) { $windDir = "S"; } -else if (192 <= $windDirDeg && $windDirDeg <= 213) { $windDir = "SSW"; } -else if (214 <= $windDirDeg && $windDirDeg <= 236) { $windDir = "SW"; } -else if (237 <= $windDirDeg && $windDirDeg <= 258) { $windDir = "WSW"; } -else if (259 <= $windDirDeg && $windDirDeg <= 281) { $windDir = "W"; } -else if (282 <= $windDirDeg && $windDirDeg <= 303) { $windDir = "WNE"; } -else if (304 <= $windDirDeg && $windDirDeg <= 326) { $windDir = "NW"; } -else if (327 <= $windDirDeg && $windDirDeg <= 348) { $windDir = "WNW"; } - - -echo '<b>Wind Speed:</b> '.$weather_data['wind_speed_last'].' mph<br>'; -echo '<b>Wind Direction:</b> '.$weather_data['wind_dir_last'].'°, '.$windDir.'<br>'; -echo '<b>Temperature:</b> '.round(($weather_data['temp']-32)*(5/9), 1).'°C<br>'; -echo '<b>Rain Rate:</b> '.round($weather_data['rain_rate_last']*0.2, 2).' mm/hr<br>'; -echo '<b>Humidity:</b> '.round($weather_data['hum']).'%<br>'; |