HackerTrans
TopNewTrendsCommentsPastAskShowJobs

HiPHInch

no profile record

Submissions

Scheme Interpreter

cs61a.org
24 points·by HiPHInch·há 2 meses·0 comments

Ty Type system feature overview

github.com
2 points·by HiPHInch·há 3 meses·0 comments

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

2 points·by HiPHInch·há 6 meses·0 comments

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

retrogames.cc
1 points·by HiPHInch·há 6 meses·0 comments

You are how you act

boz.com
332 points·by HiPHInch·há 9 meses·185 comments

How is einx notation universal?

einx.readthedocs.io
30 points·by HiPHInch·há 10 meses·4 comments

Large Atomic Model's checkpoint has reached over 10G

huggingface.co
1 points·by HiPHInch·ano passado·0 comments

SQLite: Code Of Ethics

sqlite.org
7 points·by HiPHInch·ano passado·0 comments

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

aavetis.github.io
254 points·by HiPHInch·ano passado·122 comments

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

11 points·by HiPHInch·ano passado·4 comments

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

screendaily.com
3 points·by HiPHInch·ano passado·0 comments

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

arxiv.org
2 points·by HiPHInch·ano passado·0 comments

Zotero Fullscreen Mode by Script

github.com
21 points·by HiPHInch·ano passado·5 comments

The Modern Struggle Is Fighting Weaponized Addiction (2020)

nav.al
39 points·by HiPHInch·ano passado·16 comments

Dextromethorphan

psychonautwiki.org
3 points·by HiPHInch·ano passado·0 comments

Smithery.ai - MCP market

smithery.ai
1 points·by HiPHInch·ano passado·0 comments

There is no such thing as sleep

hnyu.org
3 points·by HiPHInch·ano passado·0 comments

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

2 points·by HiPHInch·ano passado·3 comments

A Solution of the Kakeya Conjecture

arxiv.org
2 points·by HiPHInch·ano passado·0 comments

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

postimg.cc
76 points·by HiPHInch·ano passado·52 comments

comments

HiPHInch
·há 10 meses·discuss
http://archive.today/POtnc
HiPHInch
·há 11 meses·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
·há 11 meses·discuss
is it a good idea to alias "dig @ch.at TXT +short" to a command say `c`

then use `c "the prompt"`
HiPHInch
·ano passado·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
·ano passado·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
·ano passado·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
·ano passado·discuss
parent post:https://nav.al/happiness
HiPHInch
·ano passado·discuss
thank you
HiPHInch
·ano passado·discuss
Great work, welcome to HN
HiPHInch
·ano passado·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
·ano passado·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
·ano passado·discuss
one of the greatest ai idea on 2025, although the product has its own issues
HiPHInch
·há 2 anos·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
·há 2 anos·discuss
Happy new year, everyone.