Skip to content

Instantly share code, notes, and snippets.

@MarshallChris
MarshallChris / andrewyng.json
Created September 4, 2023 20:03
Example of a public LinkedIn page Json
{
"public_identifier": "andrewyng",
"profile_pic_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/person/andrewyng/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20230904%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20230904T193034Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=d3d415fae4548108f5287119c908411c27ca2773d7913fd41871a1651ded6adb",
"background_cover_image_url": null,
"first_name": "Andrew",
"last_name": "Ng",
"full_name": "Andrew Ng",
"follower_count": 1218498,
"occupation": "Founder & CEO at Landing AI",
"headline": "Founder and CEO of Landing AI; Founder of DeepLearning.AI; Managing General Partner of AI Fund",
# -*- coding: utf-8 -*-
"""
Created on Thu Oct 24 11:14:24 2013
@author: cmarshall
"""
import time
import numpy as np
print '######################################'
@MarshallChris
MarshallChris / checkbox.py
Last active April 15, 2022 15:41
Python - PyQt & Pandas - Implement a Column of Check boxes in a table Problem updating state.
# -*- coding: utf-8 -*-
"""
Created on Wed Jul 17 10:50:56 2013
@author: cmarshall
"""
import sip
sip.setapi('QString', 1)
sip.setapi('QVariant', 1)
@MarshallChris
MarshallChris / combobox.py
Last active August 17, 2023 22:38
Attempt to derive QtCore.QAbstractTableModel in PyQt
# -*- coding: utf-8 -*-
"""
Created on Wed Jul 17 10:50:56 2013
@author: cmarshall
"""
import sip
sip.setapi('QString', 1)
sip.setapi('QVariant', 1)