Skip to content

Instantly share code, notes, and snippets.

Analysis: Claude Code Creator's Workflow (HN Discussion)

Summary

Boris Cherny, the creator of Claude Code, shared his workflow on Twitter, showing himself running 5-10 parallel Claude Code sessions simultaneously, claiming to produce 50-100 PRs per week. The Hacker News discussion (139 comments) reveals a community divided between enthusiasm and skepticism. Key themes include questions about scalability, cost concerns, rate limiting for normal users, and the practical challenges of reviewing AI-generated code at scale. Many commenters note that Boris's unlimited access as an Anthropic employee makes his workflow unreproducible for average users. The discussion also surfaced persistent bugs in Claude Code (UI flickering, concurrency issues) and debates about whether high PR counts translate to meaningful productivity.


Pros and Cons

@notjulian
notjulian / signaling_mqtt.html
Created September 18, 2025 07:44 — forked from mganeko/signaling_mqtt.html
WebRTC signaling over MQTT
<!DOCTYPE html>
<html>
<head>
<title>MQTT signaling</title>
<meta charset="urt-8"/>
<script src="http://git.eclipse.org/c/paho/org.eclipse.paho.mqtt.javascript.git/plain/src/mqttws31.js"></script>
</head>
<body>
<button type="button" onclick="startVideo();">Start video</button>
<button type="button" onclick="stopVideo();">Stop video</button>
@notjulian
notjulian / gist:0f930e037053e957b421a58d88c4ca86
Created August 23, 2025 15:29
Remove text from all pdf in a folder
using System;
using System.IO;
using System.Linq;
using System.Collections.Generic;
using System.Text;
using iText.Kernel.Pdf;
using iText.Kernel.Pdf.Canvas.Parser;
using iText.Kernel.Pdf.Canvas.Parser.Listener;
using iText.Kernel.Pdf.Canvas.Parser.Data;
using iText.Kernel.Pdf.Canvas;
import React, { useEffect, useState } from 'react';
import { ActivityIndicator, View } from 'react-native';
import { WebView } from 'react-native-webview';
import { AuthHeaders, getCognitoHeaders } from '@root/cognito/cognitoSessionInfo';
import { useAppSelector } from '@hooks/hooks';
export interface IAuthenticatedWebviewProps {
url: string;
injectedJavaScript?: any;
onShouldStartLoadWithRequest: any;
@notjulian
notjulian / SpeechGenerator.cs
Created October 16, 2019 08:11
Generate wav file with Amazon Polly and .NET C#
using System;
using System.Collections.Generic;
using System.IO;
using Amazon.Polly; //nuget AWSSDK.Core AWSSDK.Polly
using Amazon.Polly.Model;
using NAudio.Wave; //nuget NAudio
public class SpeechGenerator
{
public string awsAccessKey = "";