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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 = ""; |