HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jakedahn

no profile record

Submissions

HuggingFace Text-to-CAD Generation Benchmark

huggingface.co
1 points·by jakedahn·पिछला माह·0 comments

Show HN: Oblique Strategies for Claude Code

github.com
2 points·by jakedahn·7 माह पहले·0 comments

The System Skill Pattern

shruggingface.com
1 points·by jakedahn·9 माह पहले·0 comments

Show HN: The System Skill Pattern

shruggingface.com
11 points·by jakedahn·9 माह पहले·2 comments

Show HN: Click the button, a global realtime leaderboard clicker game

clickthebutton.lol
2 points·by jakedahn·2 वर्ष पहले·1 comments

Show HN: Exploring the Model Context Protocol with Deno 2 and Playwright

shruggingface.com
2 points·by jakedahn·2 वर्ष पहले·0 comments

Show HN: Color.lol – Fun AI coloring page generator for adults and kids

color.lol
5 points·by jakedahn·2 वर्ष पहले·2 comments

How to use retrieval augmented generation with Chromadb and Mistral-7B-Instruct

replicate.com
1 points·by jakedahn·3 वर्ष पहले·0 comments

Show HN: Realtime Video Calls with ChatGPT

callannie.ai
20 points·by jakedahn·3 वर्ष पहले·9 comments

I used Stable Diffusion and Dreambooth to create an art portrait of my dog

shruggingface.com
663 points·by jakedahn·3 वर्ष पहले·236 comments

Blending Artist Styles Together with Stable Diffusion and LoRA

shruggingface.com
2 points·by jakedahn·3 वर्ष पहले·0 comments

Making Self Portraits with Stable Diffusion and LoRA

shruggingface.com
5 points·by jakedahn·3 वर्ष पहले·0 comments

Using PromptLayer to Analyze LangChain Prompts

shruggingface.com
1 points·by jakedahn·3 वर्ष पहले·0 comments

comments

jakedahn
·9 माह पहले·discuss
Ooo, yeah!

I’m excited to play with their memory stuff. I’m curious if they will add any hooks for allowing skills to store things intentionally.

The system skill idea is a little different in that you can store and query structured data out of your own SQLite db.
jakedahn
·9 माह पहले·discuss
Author here-- hah, I'm surprised someone posted this already-- I just came to share it as a Show HN post and get the conversation started:

I’ve been playing with Claude Skills and stumbled on a simple pattern for tiny, durable personal data systems:

* CLI: a small, self-contained executable

* SKILL.md: the operator's manual (what to run, how to parse output, how to think about the system)

* SQLite: a local DB for persistent state

It’s nothing mind-blowing, but the ergonomics of this combo feel great.

If you define a process/flow, Claude can "turn the crank" by running the CLI, accumulating context, and animating the system to life over time.

They’re also easy to share: you can distribute System Skills via Claude Code’s `/plugin marketplace add <repo>`.

More details in the blog post and the toy Pomodoro System Skill reference implementation here:

Blog: https://www.shruggingface.com/blog/the-system-skill-pattern Repo: https://github.com/jakedahn/pomodoro

--

Curious whether any of this resonates. Also excited to hear any interesting System Skill ideas worth exploring!
jakedahn
·11 माह पहले·discuss
what API are you using for recipes?
jakedahn
·2 वर्ष पहले·discuss
hi friends!

I'm the author of t2x and shrugginface.com, I'm surprised to see this landed on HN a month after I first shared it.

I originally planned to make it real during the holiday break but got distracted by other projects. This is the inspiration bump I needed, so I'll get back to shipping over the coming weeks
jakedahn
·2 वर्ष पहले·discuss
Simon's LLM tool is probably the best of any of these sorts of things! So thank you for making it, I still use it regularly to kick the tires on new models, and it served as a significant inspiration for the design of t2x.

The idea behind t2x was to make a stripped-down cli with a "functionality first" mindset and remove the actual selection of specific models from the user's flow.
jakedahn
·2 वर्ष पहले·discuss
If you run `ls -la | t2x "sort these files alphabetically"`, it will do the right thing.

However, subcommand like `t2x ask` are used to route you to a different model with different behavior. The ask subcommand currently makes requests to perplexity, where you can ask questions and get near realtime grounding from the world.
jakedahn
·2 वर्ष पहले·discuss
I'm curious, what specifically you're interested in from openrouter? Do they offer specific LLMs, or is it just a great way to kick the tires on new models as they emerge?

The original intention behind t2x was to be "functionality first", and make an opinionated call on which LLMs get used for specific functionality. However I think the way to go will be sane defaults and then allow user-specified models from something like openrouter.
jakedahn
·2 वर्ष पहले·discuss
oooo neat! I hadn't heard of aichat before, I'll definitely take a look.
jakedahn
·2 वर्ष पहले·discuss
I made this as a silly learning project to dive into some of the real-time interestingness of Elixir.

It's using Phoenix LiveView, and the whole game state lives inside a GenServer

Realtime state is written to ETS and periodically (every 5s) flushed to disk.

It's running on fly.io

---

code lives on github here: https://github.com/jakedahn/clickthebutton/blob/main/lib/cli...

and https://github.com/jakedahn/clickthebutton/blob/main/lib/cli...
jakedahn
·2 वर्ष पहले·discuss
ooo, that could be fun! Like an in-browser tldraw mspaint UI , good idea!
jakedahn
·3 वर्ष पहले·discuss
Has anyone done this analysis for other llms like llama2?
jakedahn
·3 वर्ष पहले·discuss
Thank you for making this!

I have a 1.5yo that’s obsessed with pointing out planes in the sky.

Now we can go plane watching together!
jakedahn
·3 वर्ष पहले·discuss
It has merged! https://github.com/ggerganov/llama.cpp/pull/1773

I haven't had a chance to try it yet, but I am :excitedllama:
jakedahn
·3 वर्ष पहले·discuss
https://www.shruggingface.com/

I started this blog a few months ago to explore the emerging world of generative AI. Hoping to write much more soon!

I built it as a next.js app with mdx support, and the microblog posts are rendered from a custom notion CMS setup.
jakedahn
·3 वर्ष पहले·discuss
ah-ha! This was probably it
jakedahn
·3 वर्ष पहले·discuss
Thank you for these recommendations! I'll definitely be trying them next time 'round.
jakedahn
·3 वर्ष पहले·discuss
Mostly because I thought of it more as an art project than a technical accuracy project. However, the honest answer to your question, is because I have a ridiculous amount of photos of my dog on my phone . Getting training data is hard work.

But this is totally true, I found that maybe 30% of the images I generated did not look like my dog at all. However the rest do a good job at capturing his eyes and facial expressions that he actually makes. I thought that the chosen image I worked from captured the look of his eyes super well.

But yeah, nobody but me would really appreciate that.
jakedahn
·3 वर्ष पहले·discuss
hah, these are pretty cool! Well done!
jakedahn
·3 वर्ष पहले·discuss
Yeah, it was likely just user error. I actually really love Draw Things, because I can run it locally on my mac and quickly experiment without having to sling HTTP requests or spin up GPUs.

I did the actual work back on March 11th, so I was likely on an older build; but I was seeing issues where inpainting was just replacing my selection/mask with a white background. I had the inpainting model loaded, but couldn't figure it out.

I'm planning to continue playing with Draw Things locally, and exploring the inpainting stuff. For such an iterative process I feel like a local client would make for the best experience.
jakedahn
·3 वर्ष पहले·discuss
Yeah!

Here's the colab notebook, in case anyone is interested: https://github.com/TheLastBen/fast-stable-diffusion

I've trained a few smaller models using their Dreambooth notebook, but I think for 4000 training steps, an A100 will usually take 30-40min. I believe replicate also uses A100s for their dreambooth training jobs.