Skip to content

Instantly share code, notes, and snippets.

View ErikThiart's full-sized avatar
💭
First, solve the problem. Then, write the code.

Erik Thiart ErikThiart

💭
First, solve the problem. Then, write the code.
View GitHub Profile
@ErikThiart
ErikThiart / index.php
Created August 1, 2018 18:36
Example: Re-write this using C# and WPF/WinForms
<?php
/*
* This pulls in the data from an external source
* This will probably be stored and retreived from a DB in real life
* See this piece of code as the C# code for the winform
*/
$json = file_get_contents('https://coindata.co.za/api.php');
$coins = json_decode($json);
?>