Skip to content

Instantly share code, notes, and snippets.

View harshadsatra's full-sized avatar
👨‍💻
Coding...

Harshad Satra harshadsatra

👨‍💻
Coding...
View GitHub Profile
@harshadsatra
harshadsatra / index.html
Created October 15, 2023 11:45
Map with Animated Bubbles
<script src="https://cdn.amcharts.com/lib/5/index.js"></script>
<script src="https://cdn.amcharts.com/lib/5/map.js"></script>
<script src="https://cdn.amcharts.com/lib/5/geodata/worldLow.js"></script>
<script src="https://cdn.amcharts.com/lib/5/themes/Animated.js"></script>
<div id="chartdiv"></div>
@harshadsatra
harshadsatra / Vue3.md
Last active November 5, 2023 13:45
Vue3 related lists
@harshadsatra
harshadsatra / lazy-load-files.js
Created July 19, 2016 04:42 — forked from seantunwin/lazy-load-files.js
Lazy load JavaScript files
/* This is a technique to lazy load your javascript files
* Handy for those pesky slow, load blocking off-site scripts
* function lazyLoad
* @s: String of path to file
*/
function lazyLoad(s) {
var d = window.document;
b = d.body; /* appends at end of body, but you could use other methods to put where you want */
e = d.createElement("script");