HackerTrans
TopNewTrendsCommentsPastAskShowJobs

HiPHInch

no profile record

Submissions

Scheme Interpreter

cs61a.org
24 points·by HiPHInch·2 เดือนที่ผ่านมา·0 comments

Ty Type system feature overview

github.com
2 points·by HiPHInch·3 เดือนที่ผ่านมา·0 comments

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

2 points·by HiPHInch·6 เดือนที่ผ่านมา·0 comments

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

retrogames.cc
1 points·by HiPHInch·6 เดือนที่ผ่านมา·0 comments

You are how you act

boz.com
332 points·by HiPHInch·9 เดือนที่ผ่านมา·185 comments

How is einx notation universal?

einx.readthedocs.io
30 points·by HiPHInch·10 เดือนที่ผ่านมา·4 comments

Large Atomic Model's checkpoint has reached over 10G

huggingface.co
1 points·by HiPHInch·ปีที่แล้ว·0 comments

SQLite: Code Of Ethics

sqlite.org
7 points·by HiPHInch·ปีที่แล้ว·0 comments

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

aavetis.github.io
254 points·by HiPHInch·ปีที่แล้ว·122 comments

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

11 points·by HiPHInch·ปีที่แล้ว·4 comments

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

screendaily.com
3 points·by HiPHInch·ปีที่แล้ว·0 comments

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

arxiv.org
2 points·by HiPHInch·ปีที่แล้ว·0 comments

Zotero Fullscreen Mode by Script

github.com
21 points·by HiPHInch·ปีที่แล้ว·5 comments

The Modern Struggle Is Fighting Weaponized Addiction (2020)

nav.al
39 points·by HiPHInch·ปีที่แล้ว·16 comments

Dextromethorphan

psychonautwiki.org
3 points·by HiPHInch·ปีที่แล้ว·0 comments

Smithery.ai - MCP market

smithery.ai
1 points·by HiPHInch·ปีที่แล้ว·0 comments

There is no such thing as sleep

hnyu.org
3 points·by HiPHInch·ปีที่แล้ว·0 comments

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

2 points·by HiPHInch·ปีที่แล้ว·3 comments

A Solution of the Kakeya Conjecture

arxiv.org
2 points·by HiPHInch·ปีที่แล้ว·0 comments

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

postimg.cc
76 points·by HiPHInch·ปีที่แล้ว·52 comments

comments

HiPHInch
·10 เดือนที่ผ่านมา·discuss
http://archive.today/POtnc
HiPHInch
·11 เดือนที่ผ่านมา·discuss
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"'

```
HiPHInch
·11 เดือนที่ผ่านมา·discuss
is it a good idea to alias "dig @ch.at TXT +short" to a command say `c`

then use `c "the prompt"`
HiPHInch
·ปีที่แล้ว·discuss
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.
HiPHInch
·ปีที่แล้ว·discuss
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.
HiPHInch
·ปีที่แล้ว·discuss
the Exploitation and exploration got me thinking, what if LLM generate, say, 5 results at a time and let user choose the best
HiPHInch
·ปีที่แล้ว·discuss
parent post:https://nav.al/happiness
HiPHInch
·ปีที่แล้ว·discuss
thank you
HiPHInch
·ปีที่แล้ว·discuss
Great work, welcome to HN
HiPHInch
·ปีที่แล้ว·discuss
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.
HiPHInch
·ปีที่แล้ว·discuss
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.
HiPHInch
·ปีที่แล้ว·discuss
one of the greatest ai idea on 2025, although the product has its own issues
HiPHInch
·2 ปีที่แล้ว·discuss
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.
HiPHInch
·2 ปีที่แล้ว·discuss
Happy new year, everyone.
HiPHInch
·2 ปีที่แล้ว·discuss
Great, I’m willing to recommend it to others around me
HiPHInch
·2 ปีที่แล้ว·discuss
It contains all the locations of the game Yume 2kki.

Yume 2kki [1] is a fan-made game of Yume Nikki [2].

Play the game here: https://ynoproject.net/2kki/

[1] https://www.backloggd.com/games/yume-2kki/

[2] https://www.backloggd.com/games/yume-nikki/
HiPHInch
·2 ปีที่แล้ว·discuss
People seem interested in this. But I still wonder what is the advantage over Obsidian.
HiPHInch
·2 ปีที่แล้ว·discuss
Cool, that's what I want to say - Arc-like browser
HiPHInch
·2 ปีที่แล้ว·discuss
Update: I think I'll just go with it. Maybe exchange/sell it later ;)

And thank you for your advice. I can't find a cheep and reliable marketplace for an old 3090 in China.

Our school provide some V100s on cluster, it may be tricky but able to run some program.
HiPHInch
·2 ปีที่แล้ว·discuss
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?