HN user

HiPHInch

357 karma
Posts42
Comments22
View on HN
cs61a.org 2mo ago

Scheme Interpreter

HiPHInch
24pts0
github.com 3mo ago

Ty Type system feature overview

HiPHInch
2pts0
news.ycombinator.com 5mo ago

Ask HN: What should I do when the coding agents run?

HiPHInch
2pts0
www.retrogames.cc 6mo ago

Online Play Game Boy Advance Mother 3 (Eng. Translation)

HiPHInch
1pts0
boz.com 8mo ago

You are how you act

HiPHInch
332pts185
einx.readthedocs.io 10mo ago

How is einx notation universal?

HiPHInch
30pts4
huggingface.co 1y ago

Large Atomic Model's checkpoint has reached over 10G

HiPHInch
1pts0
sqlite.org 1y ago

SQLite: Code Of Ethics

HiPHInch
7pts0
aavetis.github.io 1y ago

Tracking Copilot vs. Codex vs. Cursor vs. Devin PR Performance

HiPHInch
254pts122
news.ycombinator.com 1y ago

Ask HN: What is your current LLM-assisted coding tool?

HiPHInch
11pts4
www.screendaily.com 1y ago

'Burning' sets record score in history of Screen's Cannes jury grid (2018)

HiPHInch
3pts0
arxiv.org 1y ago

The Open Molecules 2025 (OMol25) Dataset, Evaluations, and Models

HiPHInch
2pts0
github.com 1y ago

Zotero Fullscreen Mode by Script

HiPHInch
21pts5
nav.al 1y ago

The Modern Struggle Is Fighting Weaponized Addiction (2020)

HiPHInch
39pts16
psychonautwiki.org 1y ago

Dextromethorphan

HiPHInch
3pts0
smithery.ai 1y ago

Smithery.ai - MCP market

HiPHInch
1pts0
hnyu.org 1y ago

There is no such thing as sleep

HiPHInch
3pts0
news.ycombinator.com 1y ago

Ask HN: Is there something we lost when using AI to read a research paper?

HiPHInch
2pts3
arxiv.org 1y ago

A Solution of the Kakeya Conjecture

HiPHInch
2pts0
postimg.cc 1y ago

Best Books ever of 10 years' votes at 4chan /lit/

HiPHInch
76pts52
fortelabs.com 1y ago

The Para Method: The Simple System for Organizing Your Digital Life

HiPHInch
1pts0
www.youtube.com 1y ago

3b1b: Terence Tao on how we measure the cosmos | Part 1 [video]

HiPHInch
4pts0
soundcloud.com 1y ago

Soulection Radio #667: The Best of 2024

HiPHInch
1pts1
github.com 1y ago

Questions to ask yourself every year

HiPHInch
2pts0
pages.cs.wisc.edu 1y ago

Twelve Significant Publications of Jin-Yi Cai, Professor [pdf]

HiPHInch
1pts0
2kki.app 1y ago

Yume 2kki Navigation

HiPHInch
1pts1
twitter.com 1y ago

Andrej Karpathy on learning (should never be fun)

HiPHInch
75pts57
pmotschmann.github.io 1y ago

Evolve: An incremental game about evolving a civilization

HiPHInch
4pts0
www.oxfordstudent.com 1y ago

Can gaming act as meditation? (2020)

HiPHInch
2pts0
github.com 1y ago

Zen Browser

HiPHInch
5pts3

ported to macos using raycast

```

#!/bin/bash

# Required parameters: # @raycast.schemaVersion 1 # @raycast.title Ask LLM # @raycast.mode fullOutput

# Optional parameters: # @raycast.icon # @raycast.argument1 { "type": "text", "placeholder": "Your question" }

# Documentation: # @raycast.author Your Name # @raycast.authorURL https://github.com/you

QUERY="$1" [ -z "$QUERY" ] && exit 0

FULL_QUERY="Answer in as little words as possible, concisely, for an intelligent person: $QUERY"

# URL encode (pure bash) encode_query() { local query="$1" local encoded="" local c for (( i=0; i<${#query}; i++ )); do c="${query:$i:1}" case $c in [a-zA-Z0-9.~_-]) encoded+="$c" ;; *) encoded+=$(printf '%%%02X' "'$c") ;; esac done echo "$encoded" }

ENCODED_QUERY=$(encode_query "$FULL_QUERY")

# Get response RESPONSE=$(curl -s "https://ch.at/?q=$ENCODED_QUERY")

# Output to Raycast echo "$RESPONSE"

# --- Optional: also pop up a big dialog --- osascript -e 'display dialog "'"$RESPONSE"'" buttons {"OK"} default button 1 with title "LLM Answer"'

```

Claude 4 1 year ago

Claude register need a phone number, but cannot select China (+86), and even if I have a account, it may hard to purchase because the credit card issue.

Some app like Windsurf can easily pay with Alipay, a everyone-app in China.

Claude 4 1 year ago

How long will the VScode wrapper (cursor, windsurf) survive?

Love to try the Claude Code VScode extension if the price is right and purchase-able from China.

You are right. But I think nearly a half of DFT calcs are done with VASP.

Particularly, if one using ASE or other higher level wrapper of calculators(like quacc), he can share all the params in just one python script.

If not, just share the INCARs and POSCARs using a github link or whatsoever.

I took some effort to change my research interest from computer vision to DFT calculation in quantum chemistry.

Honestly, I'm kind of frustrated now, too many work is close-source in this area. The research paper will tell you everything except how to reproduce this work in minimal effort, it's like they are hiding something.

They also using a `Origin` to plot and MS Word to write paper, which is also non-free licensed, and made them harder to collaborate and reproduce.

I find it frustrating that after purchasing an item, the email notifications are endless. They include every minor update, like the delivery person stopping for a bagel. It feels like my phone is constantly bombarded with unnecessary information these days.

Thanks for your recommendation! I just ran Llamafile for the first time with a custom prompt on my Windows machine (i5-13600KF, RX6600) and found that it performed extremely slowly and wasn't as smart as ChatGPT. It doesn't seem suitable for productive writing. Did I do something wrong, or is there a way to improve its writing performance?