jj ๐Ÿ›Ÿ pfp

jj ๐Ÿ›Ÿ

@jj

716 Following
1733 Followers


jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
Itโ€™s nice to see the differences between east and west coast Coming around to appreciate both
0 reply
0 recast
2 reactions

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
Sunrise at Yosemite 8x speed for 30 minutes at sunrise
0 reply
0 recast
4 reactions

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
Woke up at the Y
0 reply
0 recast
6 reactions

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
At the Y
1 reply
2 recasts
20 reactions

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
What about ai + ai?
1 reply
0 recast
1 reaction

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
What about human + k (ai)
0 reply
0 recast
1 reaction

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
Feels weird to be wearing a sweatshirt in SF when thereโ€™s a massive heatwave in NYC
0 reply
0 recast
1 reaction

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
Vibe science
0 reply
1 recast
2 reactions

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
I think I joined these forums in 2015 and these deep mind google people would also chat with me on these rando forums so that was fun - you can just have conversation with smart people
0 reply
0 recast
2 reactions

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
I know, but you can just do things I emailed the guy because he knew about something called corona effect and it was shorting out our circuits in a vacuum - so I emailed him and he gave us some tips
0 reply
0 recast
2 reactions

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
I used to contact Dr Walter Lewin https://www.edx.org/bio/walter-lewin Literally just out of the blue emailed they guy and he replied to all my emails and I was 14
2 replies
0 recast
2 reactions

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
You need to contact someone from an academia to publish with an institution name and they have to be an expert in the field, they need to vouch for you to get it reviewed
1 reply
1 recast
2 reactions

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
If you say: โ€œI left that thing on your deskโ€ Almost all LLMs will assume itโ€™s there, most humans will say โ€œwtf ru talkin aboutโ€
0 reply
0 recast
1 reaction

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
There was this meme about how the GE laundry machine chatbot would reply with code Been looking for it
0 reply
0 recast
1 reaction

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
// ReplyThread.tsx import React, { useState } from 'react'; type Reply = { id: number; author: string; content: string; timestamp: string; }; type ReplyThreadProps = { initialReplies?: Reply[]; onSubmitReply?: (content: string) => Promise<Reply>; }; export default function ReplyThread({ initialReplies = [], onSubmitReply }: ReplyThreadProps) { const [replies, setReplies] = useState<Reply[]>(initialReplies); const [newReply, setNewReply] = useState(''); const [loading, setLoading] = useState(false); const handleSubmit = async () => { if (!newReply.trim()) return; setLoading(true); const reply: Reply = onSubmitReply ? await onSubmitReply(newReply) : { id: replies.length + 1, author: 'You', content: newReply, timestamp: new Date().toISOString(), }; setReplies([...replies, reply]); setNewReply(''); setLoading(false); }; return ( <div className="space-y-4 p-4 rounded-xl bg-gray-50 shadow-md"> <div className="space-y-2"> {replies.map((reply) => ( <div key={reply.id} className="border border-gray-200 rounded-md p-3 bg-white"> <div className="text-sm text-gray-500">{reply.author} ยท {new Date(reply.timestamp).toLocaleString()}</div> <div className="text-gray-800 mt-1">{reply.content}</div> </div> ))} </div> <div className="mt-4"> <textarea className="w-full p-2 border rounded-md" rows={3} value={newReply} onChange={(e) => setNewReply(e.target.value)} placeholder="Write a reply..." /> <button className="mt-2 px-4 py-2 rounded-md bg-blue-600 text-white hover:bg-blue-700 disabled:opacity-50" onClick={handleSubmit} disabled={loading} > {loading ? 'Replyingโ€ฆ' : 'Reply'} </button> </div> </div> ); }
1 reply
0 recast
1 reaction

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
The ultimate Turing test today is how imperfect a response is Like if a support agent knows how to build a perfect react component then you know itโ€™s not a human
1 reply
1 recast
7 reactions

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
Yea it sends you a push notification when itโ€™s perfect temperature for you to sip Itโ€™s what gets me through the winters
0 reply
0 recast
1 reaction

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
lol
0 reply
0 recast
0 reaction

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
Nice this is what I do most mornings I use an ember mug underneath so it stays warm (an because i constantly forget my coffee) If you get certain filters theyโ€™re also compostable and easy cleanup
1 reply
0 recast
1 reaction

jj ๐Ÿ›Ÿ pfp
jj ๐Ÿ›Ÿ
@jj
Hey sorry but will be heading to Yosemite super early morning (because Iโ€™ll still be in ET time zone)
1 reply
0 recast
1 reaction