WORKING FILES

〰️

WORKING FILES 〰️


https://www.straitstimes.com/opinion/jobs-will-soon-become-a-national-security-issue

https://www.straitstimes.com/business/millions-of-jobs-will-be-lost-as-world-sees-net-decrease-by-2027-wef-survey

https://www.straitstimes.com/singapore/jobs/more-s-pore-professionals-seek-to-change-jobs-despite-cooling-labour-market

https://content.mycareersfuture.gov.sg/sunrise-vs-sunset-industries-singapore-hiring-2024/

https://www.asiaone.com/singapore/more-5600-fresh-tech-grads-singapore-universities-bagging-highest-starting-pay-survey

Salary of Fresh Grad SG 2022.pdf

Global Remote Work Opportunities.pdf

https://www.ncss.gov.sg/docs/default-source/ssc/fy2023salaryguidelinesforthesocialservicesector.pdf

https://www.straitstimes.com/singapore/politics/pm-lee-outlines-3-geopolitical-storms-singapore-faces

https://mustsharenews.com/grab-driver-job-opportunities/

https://www.asiaone.com/lifestyle/singapore-couple-relocates-bali-seeking-better-lifestyle-work

https://www.asiaone.com/lifestyle/some-people-said-i-was-crazy-ex-sia-cabin-crew-shares-why-she-left-singapore-new-life

https://mustsharenews.com/jb-apartment-singaporean/

https://www.instagram.com/p/C4UqiUWMByC/

https://www.straitstimes.com/life/better-together-overseas-living-in-the-now-young-couples-rent-abroad-to-wait-out-bto-time

https://www.channelnewsasia.com/commentary/workplace-discrimination-age-jobs-recruitment-3900191

https://www.bloomberg.com/news/newsletters/2023-04-17/chatgpt-ai-github-copilot-for-coding-threatens-india-tech-jobs

https://www.straitstimes.com/singapore/pm-lee-hsien-loong-meets-apple-and-facebook-honchos-to-find-out-how-their-tech-can-help

https://mustsharenews.com/pm-lee-zuckerberg/

https://www.channelnewsasia.com/commentary/vizzio-ceo-jon-lee-fake-cambridge-phd-board-investor-accountability-trust-4077011


Apache Spark Training

〰️

Apache Spark Training 〰️

Step 1: Local Laptop Cluster Setup

Teach them Local laptops Cluster Setup… then ask them to do it on another laptop and try

scala-2.12.4

jdk-8u202-windows-x64

Anaconda3-2022.10-Windows-x86_64

https://www.apache.org/dyn/closer.lua/spark/spark-3.3.1/spark-3.3.1-bin-hadoop2.tgz

https://github.com/steveloughran/winutils/archive/refs/heads/master.zip

Environment Variables (windows)

HADOOP_HOME = C:\SPARK\hadoop
JAVA_HOME = C:\Program Files\Java\jdk1.8.0_202
SCALA_HOME = C:\SPARK\scala
SPARK_HOME = C:\SPARK\spark
PYSPARK_PYTHON = C:\Users\user\anaconda3\python.exe
PATH Variables:
%SPARK_HOME%\bin
%HADOOP_HOME%\bin
%SCALA_HOME%\bin

%JAVA_HOME%\bin

Jupyter Environment Variables

PYSPARK_DRIVER_PYTHON = C:\Users\User\anaconda3\Scripts\jupyter.exe
PYSPARK_DRIVER_PYTHON_OPTS = notebook

STep 2: Local Spark Shell

people.json

Step 3: Spark cluster in Google Cloud

wordcount.py

pi.py

Step 4: Spark cluster in AWs Databricks

telecom_churn.csv

Step 5: Spark on colab

How To Start A Spark Session & Read in CSV frrom Website.ipynb


Tensorflow Training

〰️

Tensorflow Training 〰️


Python Training

〰️

Python Training 〰️

Beginner

[List.Tuples.Dictionary.Sets] + [Operators.True.False.And.Not.<.==.>] + [If.Else.While.For.Loops] + [Functions.Def.Lambda]

Day 1 with Dr Alvin.ipynb

https://codebeautify.org/python-formatter-beautifier

https://black.vercel.app/

NICF Python Fundamental Course for Beginners.ipynb

Basic Python Handwritten Programming Notes.pdf

python basics - Practical INtroduction.pdf

why python index start at 0.pdf

Numpy User Guide.pdf

python notes.pdf

Python Tips and Tricks.pdf

python basics cheatsheet.pdf

Intermediate

[Comprehension.i.for.i.in.range] + [Mounting.Google.Drive.File.IO] + [Object.Oriented.Programming.Class.Inheritance .Parents] + [SQLite.Databasing] + [Error.Handling.IndexError.IOError.TypeError.ValueError]

Day 2 with Dr Alvin.ipynb

Mounting and Creating Files in Google Drive with Colab.ipynb

Updating HR Records using Object Oriented Programming by Dr. Alvin Ang

https://pandas.pydata.org/docs/user_guide/visualization.html#visualization-barplot

https://python-tricks.com/matplotlib-introduction/

https://python-tricks.com/plotting-in-pandas/

https://www.tutorialspoint.com/how-to-change-the-text-color-of-font-in-the-legend-using-matplotlib

https://tonysyu.github.io/raw_content/matplotlib-style-gallery/gallery.html

https://www.digitalocean.com/community/tutorials?q=python&hits_per_page=12

Python PDFS

ANL252 Python SUSS Course.pdf

Introduction to Programming using Python by Daniel Liang

69 Python Projects.pdf

30 Python Libraries to Boost Your Data Science Productivity.pdf

Python Data Science Tips Full Archive by avi chawla. subs tack. com

NLP Python.pdf

Alvin's Answer for Plano's Assessment.pdf

OOP cheatsheet.pdf


Data Cleansing and Wrangling

〰️

Data Cleansing and Wrangling 〰️



Machine Learning Training

〰️

Machine Learning Training 〰️

Supervised Learning

Linear / Multiple / Polynomial Regression

Advertising.csv

automobileEDA.csv

Simple Linear Regression with Statsmodel by Dr Alvin Ang.ipynb

Simple Linear Regression using SKLearn by Dr Alvin Ang.ipynb

Multiple Regression using Scikit Learn with Python by Dr Alvin Ang.ipynb (Advertising.csv)

Multiple Regression using Scikit Learn with Python (Part II) by Dr Alvin Ang.ipynb (AutomobileEDA.csv)

Polynomial Regression with Python by Dr Alvin Ang.ipynb

Using Multiple Regression OLS to do Feature Importance Selection (on Iris Dataset) by Dr Alvin Ang.ipynb

Regression Analysis by Data Ranch.pdf

Logistics Regression

diabetes.csv

results.csv

Logistics Regression with Python - Student Study Hours Example by Dr Alvin Ang.ipynb

Logistics Regression with Python - Diabetes Example by Dr Alvin Ang.ipynb

Logistics Regression by Data Ranch.pdf

Support Vector Machine (SVM)

Understanding SVM using Python by Dr Alvin Ang.ipynb

Simple SVM Applied to Iris Dataset with Python by Dr Alvin Ang.ipynb

Grid, Random and Bayes Search - Hyperparameter Tuning on SVM with Python by Dr Alvin Ang.ipynb

SVM by Data Ranch.pdf

Decision Tree / Random Forest

Decision Tree (Classification) on the Iris Flower Dataset using Python by Dr Alvin Ang.ipynb

Using Decision Tree Classifier (DTC) to do Feature Importance Selection (on Iris Dataset) by Dr Alvin Ang.ipynb

Using Random Forest Classifier (RFC) to do Feature Importance Selection (on Iris Dataset) by Dr Alvin Ang.ipynb

Random Forest (Classification) on the Iris Flower Dataset using Python by Dr Alvin Ang.ipynb

Decision Trees by Data Ranch.pdf

Random Forest by Data Ranch.pdf

Metrics, Normalization and Regularizations

Binary Classification & Performance Metrics by Data Ranch.pdf

Regression Metrics for ML Models (R2 and MSE) by Dr Alvin Ang.ipynb

Classification Metrics for ML Models by Dr Alvin Ang.ipynb

Bias / Variance

Understanding Bias vs Variance in Python by Dr. Alvin Ang.ipynb

L1 and L2 Regularization

L1 Lasso and L2 Ridge and Elastic Net Regression using Python by Dr Alvin Ang.ipynb

MinMax and Standard Scaler

MinMax Scaler + Standard Scaler in Scikit Learn.ipynb


ML for Trading

〰️

ML for Trading 〰️

https://eoddata.com/stocklist/SGX.htm (ticker symbol)

https://ml4trading.io/

https://www.trade-ideas.com/

https://seekingalpha.com/

https://algorithmictrading.substack.com/

https://www.quantfactory.ai/

https://www.quantrocket.com/

https://roic.ai/

https://www.backtrader.com/

https://www.priceactionlab.com/Blog/price-action-lab-software/

https://www.tradeoxy.com/

https://wire.insiderfinance.io/

https://tradologics.com/

https://www.alpharithms.com/

https://www.gurufocus.com/guru/warren%2Bbuffett/summary

https://danelfin.com/

https://wavebasis.com/

https://fractalerts.com/

https://www.benzinga.com/apis/

https://forgeglobal.com/

https://equityzen.com/

https://www.youtube.com/@Algovibes

https://greyhoundanalytics.com/

https://www.fxmagnetic.com

https://www.histdata.com/

https://www.dividends.sg/

https://sginvestors.io/

https://quickfs.net/

https://www.dymonasia.com/career/

https://www.xtxmarkets.com/

https://www.360t.com/

https://www.qcp.capital/

https://www.tower-research.com/

https://www.jumptrading.com/

https://drw.com/

https://www.virtu.com/

https://24exchange.com/

https://fairxchange.co.uk/

https://www.bgcg.com/bgc/

https://www.preqin.com/

https://www.okx.com/

Handbook of Technical Analysis.pdf

Technical Analysis from A to Z.pdf

Technical Analysis Plain and Simple.pdf

Technical Analysis of Stock Trends Explained.pdf

https://eodhd.medium.com/trading-predictions-using-ai-and-python-cdaad4de3447

https://thepythonlab.medium.com/xgboost-in-stock-returns-prediction-using-technical-indicators-and-vix-index-700fda74b425

https://github.com/suparjotamin/stockie

https://medium.com/geekculture/a-simple-way-to-download-financial-data-from-investing-com-in-python-8262271c804f

https://medium.com/trading-data-analysis/metatrader5-python-trading-bot-230bd19285e9


R Training

〰️

R Training 〰️


Tableau Training

〰️

Tableau Training 〰️

Profile Links

https://public.tableau.com/app/profile/dr.alvin.ang

https://public.tableau.com/views/EarthquakesOnTheRise-Full/Earthquakestory

https://public.tableau.com/app/profile/hisan.shafaque/viz/1996-97ChicagoBullsBuckets/BullsBuckets

https://public.tableau.com/app/profile/pawan.sachdeva/viz/HowHappyAreWe_15891520173890/HowHappyAreWe

https://public.tableau.com/app/profile/janapati.balaji

https://public.tableau.com/app/profile/thi.ho

https://vizgallery.tableaupublic.com/

Storytelling

Change Over Time:

https://public.tableau.com/app/profile/andy.kriebel/viz/EPLInjuries/InjuryCrisis

Drill Down:

https://public.tableau.com/app/profile/mac.bryla/viz/TellmeaboutWill/TellmeaboutWill

Zoom Out:

https://public.tableau.com/app/profile/peacockworks/viz/VancouverCyclists/VancouverCyclists

Contrast:

https://public.tableau.com/app/profile/robertrouse/viz/Pyramids_1/EgyptianPyramids

Maps

https://public.tableau.com/s/sites/default/files/media/co2_emissions_by_london_borough.zip

USGS_Quake.xlsx

https://community.tableau.com/s/question/0D54T00000C6TDLSA3/singapore-map-not-displayed

https://data.gov.sg/search?res_format=SHP

Singapore Map.twbx

Wrangling

GlobalVehicleSales.xls

acrossthebay10k.xls

Weather.xls

ProductsCustomersOrders.xls

12 Rows of Customer Sales.xls

Others

https://www.data-to-viz.com/

https://www.dataviz-inspiration.com/

https://coolors.co/

https://colorbrewer2.org/

https://www.figma.com/

https://www.uxpin.com/

idashboards.com/dashboard-examples/

github.com/d3/d3/wiki/Gallery

https://informationisbeautiful.net/

Tableau Introduction by Princeton University.pdf

https://tableaupublic.princeton.edu/#/signin

https://www.thetableaustudentguide.com/

https://www.straitstimes.com/singapore/skillsfuture-participation-drops-in-2023-despite-increased-employer-engagement

https://vizzendata.com/

https://www.storytellingwithdata.com/

https://makeovermonday.co.uk/

Tableau Official Help

https://www.tableau.com/about/blog/LOD-expressions

https://public.tableau.com/en-us/s/resources

https://tableaupracticetest.com/#get-our-most-popular-downloads

Tableau whitepaper - visual analysis guidebook.pdf

https://www.tableau.com/products/public/download

https://www.pexels.com/

https://www.freepik.com/

https://unsplash.com/

Superstore

Sample - Superstore (USA).xls

global_superstore_2016.xls

Dengue Cluster Story

World_Bank_CO2.xls

surface-air-temperature-monthly-mean.csv

dengue-clusters-kml.kml

dengue-outbreak-statistics.csv

Product Sales Story

Sales 2016.xls

Products 2016.csv

Insurance Story

insurance.xls

https://www.kaggle.com/simranjain17/insurance

Ameen’s Capstone Project.twbx

Doing Business in Singapore Story

https://www.kaggle.com/datasets/fkosmowski/cdp-ease-of-doing-business

https://public.tableau.com/app/profile/vincenttzc

Doing Business in Singapore.twbx

WB_DoingBusiness_2018-20.xls

Australia’s Bushfires

https://www.abs.gov.au/statistics/standards/australian-statistical-geography-standard-asgs-edition-3/jul2021-jun2026/access-and-downloads/digital-boundary-files

https://en.wikipedia.org/wiki/2019-20_Australian_bushfire_season

Singapore Crime

https://public.tableau.com/app/profile/elias8766/viz/ApictureofcrimeinSingapore/Map-rank

Singapore Crime Statistics - Neighborhood Police Centre (2010 to 2014)

Singapore Death Statistics

https://public.tableau.com/app/profile/dr.alvin.ang/viz/SingaporeDeathsStatistics2006-2021/

Top 10 Causes of Death in Singapore (2006 - 2021).xlsx

Singapore’s Master Plan Zones

Planning Area (2017).zip

Subzones (2017).zip

HDB Resale Price

HDB Resale Price (2017 to 2022).csv

Hail Storm

Hail Storm Damage.xls

Tableau Official Cert Practice Exams

Tableau Certified Data Analyst Exam Guide.pdf

Tableau Desktop Specialist Exam Guide.pdf

Tableau Certification Question and Answers.pdf

No. of Females in Singapore

https://dataportal.asia/dataset/192521611_singapore-residents-by-planning-area-age-group-and-sex-june-2016-female

PLAN_BDY_AGE_FEMALE_2016.dbf

PLAN_BDY_AGE_FEMALE_2016.prj

PLAN_BDY_AGE_FEMALE_2016.sbn

PLAN_BDY_AGE_FEMALE_2016.sbx

PLAN_BDY_AGE_FEMALE_2016.shp

PLAN_BDY_AGE_FEMALE_2016.shp (XML)

PLAN_BDY_AGE_FEMALE_2016.shx


SQL Training

〰️

SQL Training 〰️


〰️

Power BI Training

〰️ Power BI Training


Resource Management Optimisation Training

〰️

Resource Management Optimisation Training 〰️


Statistics Training

〰️

Statistics Training 〰️


Excel Training

〰️

Excel Training 〰️



Design of Experiments (DOE)

〰️

Design of Experiments (DOE) 〰️


Flexsim

〰️

Flexsim 〰️


WEKA

〰️

WEKA 〰️


Google Workspace

〰️

Google Workspace 〰️


Tech with Tim's Facial Recognition Project (on local laptop)

〰️

Tech with Tim's Facial Recognition Project (on local laptop) 〰️


Splunk Tutorial

〰️

Splunk Tutorial 〰️


UCMHP

〰️

UCMHP 〰️


Sample OIP Projects

〰️

Sample OIP Projects 〰️

Intelligent Real-time Medicine Inventory Management Solution
​How might we develop an centralized inventory solution that provides real-time intelligence to optimize the demand and supply for medicinal drugs and reduce the wastage and cost inefficiencies for dispensaries?​
Award: SGD30,000

Understanding Customer Order Behaviour for More Efficient Supply Chain
How can we better understand our customers’ orders to fulfil their requests in a timely manner to
improve the customer experience, while ensuring efficiency in supply chain planning and inventory
management?​
​Award: SGD 25,000

Tracking Solution for Liquid-based Stock
How can we help our customers track and manage their liquid-based stock on a real-time basis?
Award: SGD 10,000

Dynamic Digital Floor Plans, Time Schedules and Route Optimization for Exhibition Spaces
How might we better plan and execute the movement of exhibits into and out of diverse and dynamic event sites with greater efficiency?
Award: SGD 35,000

Data Analytics To Identify Opportunities For Developing Better Financial And Non-Financial Offerings
How might we better understand our customer’s needs, so we develop financial and nonfinancial offerings (e.g. products, insights, education materials, etc.) that better meets their current and emerging needs to better engage the investors in the customer buying journey?​
Award: SGD 50,000

Real-Time Data Visualization and Predictive Analytics
How might we create a platform, drawing on our database of real-time receipts data, to not only visualise shopper past behaviour but also to provide predictive shopper actionable insights that will enable brand owners to timely, effectively reach and engage targeted
shoppers?
Award: SGD 20,000

Elevated Customer Experience Through Integrated Insights From Digital Solutions
How can we elevate our customers’ digital experience in a seamless and personalised manner by providing valuable integrated insights across Carrier’s suite of digital solutions?
Award: SGD 25,000

Collaborative Platform For Mall Tenants To Provide Complementary Services That Delight Mall Goers
​How might we create a digital collaboration tool, powered by collective data insights, for shopping mall tenants to collaborate among themselves, so as to provide complementary products and services for the mall-goers?
Award: SGD 30,000

Predictive Recommendation Engine To Match Business Event Attendees With The Right People And The Right Content
​How might we create a predictive engine for more accurate match rate for professional event attendees to networks and content during and after the event?
Award: SGD 35,000

Visualization Tool that Provides Data Driven Insights For Better Event Evaluation
How might we create a visualisation tool to process visitors and other related-event data so as to empower event organisers and owners to better evaluate event success and ROIs?​
Award: SGD 35,000

Smart Customer Relationship Management System
​How might we automate the ordering process to be more efficient and effective, and achieve a better customer experience?
Award: SGD 35,000

Understanding Customer Order Behaviour For Better Customer Experience
​How might we gain insights of the customer’s ordering behavior to facilitate an improved order management with better customer experience?
Award: SGD 25,000

A Data Analytic Collaborative Platform for Insurance Ecosystem Partners and Clients
​How might we create a shared data platform with our ecosystem of partners and clients that can support innovative health and life insurance services?
Award: SGD 20,000

Understanding Users' Behaviour Through Data Analytics And Transaction Tracking Methods Within Mobile App
​How might we provide an integrated mobile platform that can enable, track and manage communications and transactions between app users (home residents) and ResidentServices™ Providers (RSPs) and effectively connecting and engaging them, so that we can turn these data into valuable insights, predictions and decisions?
Award: SGD 20,000

Healthcare Oncology Patient Experience Portal
​How might we create a digital platform to empower cancer patients and their families along their treatment and recovery journey with external parties and treatment information, so as to make better and sound decisions and stay connected with key communities?
Award: SGD 25,000

Analytics and Insights to Improve Efficiency of Internal Business & Operational Processes
How might we improve our internal processes to derive relevant insights, particularly through utilising our data, in order to operate more effectively and efficiently?​
Award: SGD 20,000

Enhance Maintainability of Pre-Fabrication Facility
​How might we intelligently manage and perform preventive maintenance of equipment and machinery in our construction and pre-fabrication facility?
Award: SGD 30,000

Automation Of Data Extraction And Verification For Contact List Building
​How might we automate the collection and verification of potential customer contact lists, to increase accuracy and save time for higher value work?
Award: SGD 20,000

Asset Management & Investment Recommendation Solution for Portfolio Managers and Analysts
​How might we create solution that provides robust investment models, that takes into account the huge amounts of data that are available for analysis, in order to come up with well-timed actionable investment recommendations that results in market outperformance, after all possible slippage costs are considered?
Award: SGD 20,000

Intelligent Dynamic Scheduling & Placement System to Facilitate Grave Exhumation & Reinterment
​How might we create a dynamic yet able to meet time specific needs with automated exhumation scheduling and reinterment placement process of graves?
Award: SGD 35,000

Integrated Procurement Chain System for Optimisation of F&B Ecosystem
​How might we provide an integrated procurement chain system that can connect F&B operators’ front-of-house to its suppliers’ warehousing and logistics needs seamlessly, to enable smarter purchasing decisions?
Award: SGD 25,000

  1. https://www.openinnovation.sg

  2. https://epic.ace.org.sg/

  3. https://thebridge.ace.org.sg/#1

 

Interesting Stuff

〰️

Interesting Stuff 〰️

 

External Whitepapers

〰️

External Whitepapers 〰️

  1. Databricks 3 Critical Criteria for AI Success.pdf

  2. Databricks State of Data Report.pdf

  3. Capture AI Value With These 5 Benefit - Gartner.pdf

  4. MIT CIO Generative AI Report.pdf

  5. Access the 2023 State of AI Infrastructure Report

  6. The DataOps Cookbook

  7. slides from unicsoft

  8. L-Energy Capital introduction

  9. Singapore-Fintech-Report-2021-Alibaba-Cloud-Fintech-News-SG

  10. Introduction to Groundup.AI

  11. IMDA - ICT Navigation Tool 2020

  12. Fengshui Prosper Guide 2021_E

  13. ey-global-becoming-an-analytics-driven-organization

  14. Domino_Data Science Innovators Playbook-compressed

  15. asean-sme-transformation-study-2022

  16. STRIPE - The_DNA_of_an_Adaptive_Enterprise

  17. STRIPE - Stripe_2023_Insights_Report

  18. tdwi-managing-big-data-106702

  19. SIT-Industry-Partner-Research-Paper

  20. SMU LARC Analytics Newsletter

  21. MCKINSEY GLOBAL INSTITUTE— The Turning Point_ Reinvention And Opportunity In The Economy Of The Future__ 12 Highlights From The MGI 2021 Research (10Dec2021)

  22. MCKINSEY Covid Report

  23. 2022-AI-Index-Report_Master

  24. IntroductionToBlockchainTechnology-by PAtrick Oh

  25. LOUSY - EQUINIX architecting_the_digital_infrastructure_for_singapore

  26. BI_Maturity_Framework_eBook_1.23V1

  27. design thinking - the importance of the problem space

  28. Hype Cycle for Artificial Intelligence, 2020, Published 27 July 2020_ Gartner Reprint

  29. Gartner MAGIC QUADRANT 2022 FOR BI TOOLS

  30. stock calculation

  31. oracle netsuite - 7-steps-to-recession-proof-your-business

  32. State of AI in Financial Services 2023

  33. The economic potential of Generative AI by McKinsey

  34. Into the AI Frontier by DBS CIOVP AI

  35. What is a Docker?

  36. Scalable Efficient Big Data Pipeline Architecture – Machine Learning for Developers

  37. Top 5 fastest growing AI skills APAC for Pan-Asia - 2023

  38. Top 6 Data Science and Analytics Trends 2023-Snowflake

  39. EDB Singapore Tech Ecosystem 2023

  40. EDB Guide to Hiring Your Dream Tech Team in Singapore 2023

  41. EDB Guide to Setting Up Your Business In Singapore Tech-Startup_Tech-Guide 2023

  42. tech-predictions-report-2024

  43. NUS Chief Data Officer Brochure

 

Useful Sites

〰️

Useful Sites 〰️

Learning

EBooks

https://freecomputerbooks.com/

https://www.libgen.is/

https://pdfdrive.to/

https://www.pdfdrive.com/

Ecommerce analytics _ analyze and improve the impact of your digital strategy.pdf

The Executive Guide to Artificial Intelligence.pdf

Bullshit Jobs_ A Theory.pdf

An Introduction to Stochastic Modeling - Karlin.pdf

The Ultimate Guide to Writing a Dissertation.pdf

Getting Started with Kanban.pdf

Discrete Event Simulation I - Jerry Banks.pdf

Discrete Event Simulation II - Jerry Banks.pdf

What Are ChatGPT and Its Friends.pdf

How to (Actually) Use ChatGPT to Its Full Potential.pdf

Real Life Analysts / Scientists

For LeWagon.ipynb

Others

  1. https://playground.ai/

  2. https://research.aimultiple.com/

  3. Stats and R

  4. Erik Marsja - Erik Marsja

  5. https://www.dbta.com/

  6. https://www.blackline.com/

  7. https://copyleaks.com/

  8. https://pivottable.js.org/

  9. https://thenewstack.io/why-are-so-many-developers-hating-on-object-oriented-programming/

  10. https://medium.com/machine-words/the-rise-and-fall-of-object-oriented-programming-d67078f970e2

  11. https://h2oai.github.io/db-benchmark/

  12. https://dataprep.ai/

  13. https://github.com/ResidentMario/missingno

  14. https://iianalytics.com/community/blog/data-mesh-the-balancing-act-of-centralization-and-decentralization

  15. https://iianalytics.com/community/blog/the-age-of-agile-must-end

  16. https://statguyuser.github.io/feature-engg-selection-for-explainable-models.github.io/

  17. https://medium.com/mlearning-ai/this-study-shows-how-ai-can-change-your-job-f55d88256e1

  18. https://medium.com/mlearning-ai

  19. https://ryxcommar.com/2022/11/27/goodbye-data-science/

  20. https://waitbutwhy.com/2015/01/artificial-intelligence-revolution-1.html

  21. https://www.ml4devs.com/

  22. https://tabula.technology/

  23. https://beebom.com/how-draw-graphs-charts-diagrams-chatgpt/

  24. https://unicsoft.com/blog/building-an-ai-proof-of-concept-benefits-and-steps/

  25. https://github.com/bigscience-workshop/petals

  26. https://www.disconnect.blog/

  27. https://cloud.google.com/blog/products/gcp/5-google-cloud-product-cheat-sheets-2021

  28. https://www.indsights.sg/

  29. https://www.palantir.com/

  30. https://www.codewars.com/

  31. https://substack.com/

  32. https://hackernoon.com/

  33. https://machinehack.com/

  34. https://artificialintelligencemadesimple.substack.com/

  35. https://imperialharvest.com/

  36. https://ai100.stanford.edu/

  37. https://mjm.convertri.com/profitcode-regular-ds

  38. https://fairyid.com/

  39. https://www.datacenters.com/locations

  40. https://www.datacentreworldasia.com/

  41. https://oa.mg/journals/open-access-computer-science-journals

  42. https://humanaigc.github.io/emote-portrait-alive/

  43. https://sausheong.com/how-chatgpt-works-af2064fc1ec4

AI for MUSIC

  1. https://boomy.com/

  2. https://getaisinger.live/