
Projects/Libraries/APIs
Opening MIC
Last week I just create a club called Mobile Idea Club. You can follow the website and news on MobileIdeaClub.com

ERiDeM Monsters
A year ago, I started programming with XNA and I decided to build some game examples. One idea was create a clone of the videogame PixelJunk Monster but with some differences: the stages, chips, characters, monsters, paths and behavior could be totally customizable. For that propose, I did a Stage Tool application too.
The project is not released because it needs music, effect, better graphics (and maybe fix bugs too), and so on. But here, some captures and the main screen song.
Friendly Korea Community API
The Friendly Korea Community API is an API (Application Programming Interface) which brings us the possibility of use simple classes for access to the data of the website http://chingu.prkorea.com.
On Friendly Korea Community, you are able to find korean and international friends how love Korea culture, music, people, movies, food, so on. Furthermore, you can join in the community and post messages to people how are there. To sum up, it’s a kind of Korean’s Facebook.
Nowadays, I have a beta version with several classes. With this classes, an user can:
- login as user, see his complete own information (name, family name, country, gender, …), see his photo URL.
- watch a list of his friends with their names, photos URL and their complete information (name, family name, country, gender, …).
You can download the source code from SourceForge.
Complete Code Example (v.0.0.2)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | <?php include_once('Fkc.class.php'); // Login settings $email = '[YOUR_FKC_USER_EMAIL]'; $password = '[YOUR_FKC_USER_PASSWORD]'; // Creating a new instance of FKC API $fkc = new Fkc(); // Logining into FKC if (!$fkc->login($email, $password)) { echo "It is a wrong email or password."; die(); } // Getting a object of FkcUser that represents our user. $me = $fkc->getUser(); // Getting our friends. It's and array of FkcFriend. $friends = $me->get('Friends'); // Showing our information echo "<h1>Our information: " . $me->get('Name') . " " . $me->get('FamilyName') . "</h1>" . " <b>Id</b>: " . $me->get('Id') . "<br />" . " <b>Email</b>: " . $me->get('Email') . "<br />" . " <b>Gender</b>: " . $me->get('Gender') . "<br />" . " <b>Born Date</b>: " . $me->get('BornDate') . "<br />" . " <b>Country</b>: " . $me->get('Country') . "<br />" . " <b>Residential Country</b>: " . $me->get('ResidentialCountry') . "<br />" . " <b>Residential City</b>: " . $me->get('ResidentialCity') . "<br />" . " <b>Profession</b>: " . $me->get('Profession') . "<br />" . " <b>Interests</b>: " . $me->get('Interests') . "<br />" . " <b>About me</b>: " . $me->get('About') . "<br />" . " <b>Favorite Movie</b>: " . $me->get('FavoriteMovie') . "<br />" . " <b>Favorite Entertainent</b>: " . $me->get('FavoriteEntertainent') . "<br />" . " <b>Favorite Drama</b>: " . $me->get('FavoriteDrama') . "<br />" . " <b>Favorite Place</b>: " . $me->get('FavoritePlace') . "<br />" . " <b>Favorite Food</b>: " . $me->get('FavoriteFood') . "<br />" . " <b>Photo URL</b>: " . $me->get('Photo') . "<br /><br />"; // Showing friends information echo "<h1>My friends</h1><br />"; foreach ($friends as $friend) { echo "<h2>" . $friend->get('Name') . " " . $friend->get('FamilyName') . "</h2>" . " <b>Id</b>: " . $friend->get('Id') . "<br />" . " <b>Email</b>: " . $friend->get('Email') . "<br />" . " <b>Gender</b>: " . $friend->get('Gender') . "<br />" . " <b>Born Date</b>: " . $friend->get('BornDate') . "<br />" . " <b>Country</b>: " . $friend->get('Country') . "<br />" . " <b>Residential Country</b>: " . $friend->get('ResidentialCountry') . "<br />" . " <b>Residential City</b>: " . $friend->get('ResidentialCity') . "<br />" . " <b>Profession</b>: " . $friend->get('Profession') . "<br />" . " <b>Interests</b>: " . $friend->get('Interests') . "<br />" . " <b>About me</b>: " . $friend->get('About') . "<br />" . " <b>Favorite Movie</b>: " . $friend->get('FavoriteMovie') . "<br />" . " <b>Favorite Entertainent</b>: " . $friend->get('FavoriteEntertainent') . "<br />" . " <b>Favorite Drama</b>: " . $friend->get('FavoriteDrama') . "<br />" . " <b>Favorite Place</b>: " . $friend->get('FavoritePlace') . "<br />" . " <b>Favorite Food</b>: " . $friend->get('FavoriteFood') . "<br />" . " <b>Photo URL</b>: " . $friend->get('Photo') . "<br /><br />"; } ?> |




