Skip to content

Instantly share code, notes, and snippets.

View h4rz's full-sized avatar
📱
Developing Apps

Harsh Rajgor h4rz

📱
Developing Apps
View GitHub Profile
@h4rz
h4rz / ml_colab_notebooks_res.md
Created September 23, 2020 05:26 — forked from shubham0204/ml_notebooks.md
A compilation of Google Colab notebooks made for teaching various interesting topics on TensorFlow and Keras.
@h4rz
h4rz / xml-to-har.py
Last active June 13, 2019 07:42 — forked from craigds/xml-to-har.py
When imported the .har file generated from @craigds's xml-to-har in firefox, I wasn't able to view the load and DOMContentLoaded time as that code was converting element.pyval to String and unicode so I have modified the code that will convert element.pyval based on its data type. On doing the changes I was able to view the load and DOMContentLo…
#!/usr/bin/env python
"""
Converts Internet Explorer 'capture network traffic' XML to a HAR file.
Turns out that XML is just a HAR file anyways, but in XML form. So this
just converts it to JSON, and Bob's your uncle.
Requires Python 2.7+ and LXML.
"""
from __future__ import unicode_literals
@h4rz
h4rz / gist:8dbc2f03423f009489bf37437667b724
Created November 17, 2018 17:28 — forked from dodyg/gist:5823184
Kotlin Programming Language Cheat Sheet Part 1

#Intro

Kotlin is a new programming language for the JVM. It produces Java bytecode, supports Android and generates JavaScript. The latest version of the language is Kotlin M5.3

Kotlin project website is at kotlin.jetbrains.org.

All the codes here can be copied and run on Kotlin online editor.

Let's get started.