Note: This jailbreak was disclosed to [email protected] on 3/19/2024
Date: 3/19/2024
Model: Claude 3 Sonnet
Additional Context Included: none
Note: This jailbreak was disclosed to [email protected] on 3/19/2024
Date: 3/19/2024
Model: Claude 3 Sonnet
Additional Context Included: none
awk '{if(a[$1])a[$1]=a[$1]", "$2; else a[$1]=$2;}END{for (i in a)print i, a[i];}' |
practice of programming has to be one of my all time favorites, seems really basic, but I love the way Kernighan breaks things down. I've found that the section on debugging is super helpful for mentoring jr engineers on how to approach problem solving.
coders at work is awesome because it helped me understand how some of my programmer heros work, and how they aren't all brilliant wizards or something. Well some of them are 🙂
designing data intensive applications the book on modern distributed systems at scale. Super helpful reference. Would be hard to read all the way through.
staff engineer you've probably heard of,
import sys | |
from typing import Any, Dict, Optional | |
import matplotlib.pyplot as plt | |
import seaborn as sns | |
import pandas as pd | |
import numpy as np | |
class Plotter: |
""" | |
A Lisp parser and interpreter supporting the following operators: | |
- (mutl a b), returns a * b | |
- (add a b), returns a + b | |
- (let a 1 b 2 a), assigns a = 1, b = 2, then returns a, | |
this supports an arbitrary number of even params, the | |
last param being the return value | |
Very similar to the parser David and I wrote years ago: | |
https://github.com/keyan/schemeling/blob/master/parser.py |
; This is the earliest version of HN I can find. It's 166 LOC, and | |
; the write date is 6 Sep 2006, meaning it's 4 days old. There are | |
; only two pages, news and submit, and there are no comments yet. | |
; ------------------------------------------------------------------- | |
; News. 2 Sep 06. | |
; todo: add newacct to login, | |
; clean up defop2, inbox, admin ability to edit, del stories, log files |
from pynput.mouse import Button, Controller | |
import time | |
mouse = Controller() | |
while True: | |
mouse.click(Button.left, 1) | |
print('sleeping...') | |
time.sleep(30) |
import time | |
import smtplib, ssl | |
import requests | |
RECEIVER_EMAIL = '[email protected]' | |
def send_email(name: str): | |
port = 465 |
// ==UserScript== | |
// @name Show Total Number of Lines Modified in Diff | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Show total number of lines modified in diff at bottom of table of contents | |
// @author lyahdav | |
// @match https://phabricator.dropboxer.net/D* | |
// @grant none | |
// ==/UserScript== |