u5surf.bsky.social
@u5surf.bsky.social
A software engineer, father, surfer
The scam mail which said themselves the Gitcoin obviously try to deceived anyone who received it.
September 24, 2025 at 1:19 AM
Third, They often lying to me when I ask some specialized question e.g. nginx proxy mechanism. They've replied suspicious or obviously lying answer againist I knew it in advance.
April 1, 2025 at 4:08 PM
Second whenever I try to use AI tools, they usually say "not supported", I heard they are so cleaver that they can do everything we couldn't, contrary I feel like they cannot do anything which is easy for me. There are many people who gonna be cleaverer than me, they're devoted to AI. It's wierd
April 1, 2025 at 3:59 PM
C#、Go、Java、JavaScript、Markdown、Python、Ruby、TypeScript

docs.github.com/ja/copilot/u...
GitHub Copilot コード レビューの使用 - GitHub Docs
GitHub Copilot からコード レビューを要求する方法について説明します。
docs.github.com
April 1, 2025 at 3:30 PM
```
% ./target/debug/ulid-test
thread 'main' panicked at 'assertion failed: `(left == right)`
left: `Err(InvalidChar)`,
right: `Ok(Ulid(1372106318229590578481349223515194401))`', src/main.rs:6:5
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
```
April 7, 2024 at 3:51 AM
```
% cat ./src/main.rs
use ulid::Ulid;

fn main() {
let result1 = Ulid::from_string("0LLLLLLLLLLLLLLLLLLLLLLLLL");
let result2 = Ulid::from_string("01111111111111111111111111");
assert_eq!(result1, result2);
}
```
April 7, 2024 at 3:50 AM
docs.rs/ulid/latest/...
rustのulidは弾いてそう。
April 7, 2024 at 3:49 AM