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
| private fun drawEvents( | |
| maxEventCount: Int, | |
| events: List<Event>, | |
| remainingEvents: MutableList<Event>, | |
| topAnchorMapping: MutableMap<LocalDate, Int>, | |
| rowCountMapping: MutableMap<LocalDate, Int>, | |
| initialAnchors: List<Int> | |
| ) { | |
| for (i in events.indices) { | |
| val startDate = events[i].start |
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
| private fun fillRemainingGap( | |
| maxEventCount: Int, | |
| startDate: LocalDate, | |
| endDate: LocalDate, | |
| remainingEvents: MutableList<Event>, | |
| topAnchorMapping: MutableMap<LocalDate, Int>, | |
| rowCountMapping: MutableMap<LocalDate, Int>, | |
| initialAnchors: List<Int> | |
| ) { | |
| var dateCursor = startDate |
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
| THEME | FORMAT | SOURCE | LINK | |
|---|---|---|---|---|
| roads, waterways, building footprints, points of interest | shp, pbf | OpenStreetMap (OSM) | http://download.geofabrik.de/asia/philippines.html | |
| administrative boundaries (country, region, province, municipality, city) | shp | PSA, NAMRIA, DROMIC, UNOCHA, and patners | https://data.humdata.org/dataset/philippines-administrative-levels-0-to-3 | |
| administrative boundaries (barangay) | shp | PSA, NAMRIA, DROMIC, UNOCHA, and patners | https://data.humdata.org/dataset/philippines-admin4-boundaries-barangay | |
| framework data (boundaries, roads, elevation, population, etc.) | various | DIVA-GIS | http://www.diva-gis.org/gdata | |
| topographic maps (1:50,000 and 1:250,000) | non-georeferenced raster | NAMRIA | http://www.namria.gov.ph/download.php | |
| various geohazards | shp | NOAH | http://noah.up.edu.ph/downloads/ | |
| various geohazards | shp | DREAM | https://lipad.dream.upd.edu.ph/ | |
| various geohazards | shp | MGB | http://www.namria.gov.ph/download.php | |
| various geohazards | shp | PHIVOLCS | http://www.phivolcs.dost.gov.ph/ |
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
| magnet:?xt=urn:btih:71718792BBFFC09A37A8001EC04C68C2CD319509&dn=%5bFreeCourseSite.com%5d%20Udemy%20-%20Android%20Jetpack%2c%20Clean%20Architecture%20%26%20Testing%20Masterclass&tr=udp%3a%2f%2ffe.dealclub.de%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2970%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.moeking.me%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fopen.demonii.si%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce |
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
| fblogin: function(){ | |
| var self = this; | |
| var app = self.$app; | |
| app.dialog.preloader("Loading.."); | |
| facebookConnectPlugin.getLoginStatus(function(response){ | |
| app.dialog.close(); | |
| if(response.status == "connected"){ | |
| facebookConnectPlugin.api("/me?fields=email,first_name,last_name,picture", |
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 com.dmmmsu.renzcarlo; | |
| import android.graphics.Bitmap; | |
| import android.util.Log; | |
| import android.widget.Toast; | |
| import com.googlecode.javacv.cpp.opencv_core; | |
| import com.googlecode.javacv.cpp.opencv_imgproc; | |
| import org.opencv.android.Utils; |
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
| <?php | |
| $fileName = $_FILES['afile']['name']; | |
| $fileType = $_FILES['afile']['type']; | |
| $fileContent = file_get_contents($_FILES['afile']['tmp_name']); | |
| $dataUrl = 'data:' . $fileType . ';base64,' . base64_encode($fileContent); | |
| $json = json_encode(array( | |
| 'name' => $fileName, | |
| 'type' => $fileType, | |
| 'dataUrl' => $dataUrl, |
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
| <?php | |
| header("Access-Control-Allow-Origin: *"); | |
| require '../../database.php'; | |
| $curl = curl_init(); | |
| $number = $_GET['number']; | |
| $token = $_GET['token']; |
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
| cordova build android |
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
| cordova plugin add cordova-plugin-facebook4 --save --variable APP_ID="2314664388853549" --variable APP_NAME="tutorial" |
NewerOlder