Skip to content

Instantly share code, notes, and snippets.

View syazshafei's full-sized avatar

Mohamad Syazwan Shafei syazshafei

  • Kuala Lumpur
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Negeri Daerah Bandar Lat Lon Total_Population Male Female ISO HASC_1 HASC_2
Kedah Baling Baling 5.6831 100.9106 132304 66462 65842 MY-02 MY.KH MY.KH.BA
Kedah Bandar Baharu Serdang 5.2144 100.6151 41352 20810 20542 MY-02 MY.KH MY.KH.BB
Kedah Kuala Muda Sungai Petani 5.6552 100.5292 41352 20810 20542 MY-02 MY.KH MY.KH.KM
Kedah Kubang Pasu Jitra 6.2413 100.4322 214479 104688 109791 MY-02 MY.KH MY.KH.KP
Kedah Kulim Kulim 5.3411 100.5649 281260 146510 134750 MY-02 MY.KH MY.KH.KU
Kedah Kota Setar Alor Setar 6.124 100.3684 357176 178457 178719 MY-02 MY.KH MY.KH.KT
Kedah Langkawi Langkawi 6.346 99.7904 92784 49065 43719 MY-02 MY.KH MY.KH.LA
Kedah Padang Terap Kuala Nerang 6.2465 100.57771 61970 31395 30575 MY-02 MY.KH MY.KH.PT
Kedah Pendang Pendang 5.9717 100.5149 93598 46768 46830 MY-02 MY.KH MY.KH.PE
Vendor Units2016 Share2016 Units2015 Share2015
Samsung 306,446.60 20.5 320,219.70 22.5
Apple 216,064.00 14.4 225850.6 15.9
Huawei 132,824.90 8.9 104,094.70 7.3
Oppo 85,299.50 5.7 39,489.00 2.8
BBK Communication 72,408.60 4.8 35,291.30 2.5
Others 682,313.30 45.6 698,955.10 49.1
@syazshafei
syazshafei / runtastic-export-all-activities.md
Created April 18, 2019 02:57
Download all activities from Runtastic.com (as .gpx)

Download all activities from Runtastic 🏃

With this script you can download all your activities from www.runtastic.com in .gpx format. Runtastic removed this feature wich makes it very difficult to change your tracking service, thanks for that.

❗ Only tested in Google Chrome 41.0+

How does it work

Login to your runtastic account and go to the page where all your activities are listed. Then open the developer tools of Chrome with CMD + OPTION + I and go to the console tab. Now copy and paste the following script in the console line and press enter. The usually content should disapear and the downloads should start. I used it to export around 290 activities and it worked fine.

@syazshafei
syazshafei / app.py
Created December 27, 2018 07:52 — forked from vgoklani/app.py
Using Flask to output Python data to High Charts
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
@app.route('/index')
def index(chartID = 'chart_ID', chart_type = 'bar', chart_height = 350):
chart = {"renderTo": chartID, "type": chart_type, "height": chart_height,}
series = [{"name": 'Label1', "data": [1,2,3]}, {"name": 'Label2', "data": [4, 5, 6]}]
title = {"text": 'My Title'}