Skip to content

Instantly share code, notes, and snippets.

View nlashinsky's full-sized avatar

Nick Lashinsky nlashinsky

  • San Francisco, CA
View GitHub Profile
@nlashinsky
nlashinsky / challenge.py
Created August 4, 2014 19:33
JSON challenge
import json, requests
url = 'http://letsrevolutionizetesting.com/challenge'
while url:
res = json.loads(requests.get(url, headers={"Accept": 'application/json'}).content)
print res
url = res.get('follow')
@nlashinsky
nlashinsky / clever_app_installs.ipynb
Last active August 29, 2015 14:15
District App Installs initial python manipulation
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@nlashinsky
nlashinsky / conversation.html
Created March 26, 2026 18:39
FieldAgent LLM Conversation Eval - Feb 26 2022 Teardown Day
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LLM Conversation Eval Report</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;