HN user

FerkiHN

75 karma

The true power of open source lies not in code, but in community. When we unite, help each other, and refine shared ideas, we create something no company can buy — freedom and quality that belong to everyone.

Posts36
Comments150
View on HN
news.ycombinator.com 9mo ago

Ask HN: Is Fortran the first high-level language?

FerkiHN
3pts6
news.ycombinator.com 12mo ago

Show HN: Unied Lightweight Terminal Code and Text Editor with Advanced Commands

FerkiHN
6pts3
news.ycombinator.com 12mo ago

Show HN: Header-only GIF decoder in pure C – no malloc, easy to use

FerkiHN
47pts42
gist.github.com 1y ago

Show HN: XID – Dependency-Free Unique ID Generator in One C File

FerkiHN
7pts2
news.ycombinator.com 1y ago

Ask HN: What rules do you think beginners and users should follow HN?

FerkiHN
2pts1
news.ycombinator.com 1y ago

Ask HN: What are interesting do you know any terminal utilities?

FerkiHN
5pts5
news.ycombinator.com 1y ago

Ask HN: How and where to gain popularity for your project?

FerkiHN
2pts9
github.com 1y ago

Show HN: Easy alternative to giflib – header-only decoder in C

FerkiHN
24pts10
news.ycombinator.com 1y ago

Ask HN: How promote your project?

FerkiHN
6pts6
news.ycombinator.com 1y ago

Show HN: I Recently Built a Project

FerkiHN
3pts5
news.ycombinator.com 1y ago

Recommend interesting free online books on C programming

FerkiHN
1pts3
news.ycombinator.com 1y ago

Ask HN: Where have the posts with open source projects of enthusiasts gone?

FerkiHN
3pts5
news.ycombinator.com 1y ago

Ask HN: Tell me, what is your favorite programming language?

FerkiHN
2pts5
news.ycombinator.com 1y ago

Ask HN: Let's learn more about each one, shall we?

FerkiHN
2pts2
news.ycombinator.com 1y ago

Ask HN: Do you still build terminal tools for fun?

FerkiHN
7pts9
news.ycombinator.com 1y ago

Show HN: Terminal-based image viewer using ANSI colors (~300kb, written in C)

FerkiHN
2pts4
news.ycombinator.com 1y ago

Ask HN: What are some non-standard ways to reduce the size of executable files?

FerkiHN
1pts4
news.ycombinator.com 1y ago

Ask HN: What makes you keep coming back to Hacker News?

FerkiHN
6pts15
news.ycombinator.com 1y ago

Show HN: Photo viewer, right in the terminal, cross-platform, no need for x11

FerkiHN
3pts3
github.com 1y ago

I built a minimal terminal image viewer in C with true RGB and no dependencies

FerkiHN
3pts1
news.ycombinator.com 1y ago

Ask HN: What the project you're most proud of?(Feel free to share a GitHub link)

FerkiHN
5pts12
news.ycombinator.com 1y ago

Show HN: ByteWise Search a Privacy, Zero-Traffic, Community-Driven Search Engine

FerkiHN
5pts2
news.ycombinator.com 1y ago

Ask HN: What types of posts do you most enjoy on Hacker News?

FerkiHN
5pts7
news.ycombinator.com 1y ago

Show HN: Pit – View PNG/JPG images directly in the terminal (no ASCII art)

FerkiHN
2pts3
news.ycombinator.com 1y ago

Ask HN: Would it make sense to have a "memes" tab for developer humor/stories?

FerkiHN
3pts2
news.ycombinator.com 1y ago

Ask HN: Why do my posts sometimes become popular and sometimes invisible?

FerkiHN
3pts4
news.ycombinator.com 1y ago

Ask HN: How can GitHub better include designers in open source?

FerkiHN
2pts1
news.ycombinator.com 1y ago

Show HN: ByteWise Search: 90% Lighter than DDG Lite – open-source Privacy Search

FerkiHN
1pts1
news.ycombinator.com 1y ago

Ask HN: I am looking for compression(ZIP), but for photo(.png/.jpg)?

FerkiHN
1pts8
news.ycombinator.com 1y ago

Ask HN: Why don't browsers load websites directly in WASM?

FerkiHN
4pts12

Dude, this is a really cool thing. I dreamed of creating this myself once. Now that you've done it, I can be happy because I always wanted to share the code and not hear the intrusive words "Don't self-promote."

Totally fair — this pattern can be confusing at first glance. The main motivation is ease of integration: no need to manage extra .c files, no build system tweaks, just drop in one file and go. It’s especially useful for embedded systems, scripts, and small projects where build friction matters. That said, I agree that for larger teams or long-term projects, the classic .h + .c split can be clearer — that’s why the implementation can easily be separated if needed. Appreciate the feedback!

Great question! It works the same way as stb-style libs: you only #define GIF_IMPLEMENTATION in one .c file (one translation unit). In all other files, you just #include "gif.h" without the define. The header uses #ifdef GIF_IMPLEMENTATION to include implementation code only once. So no linker errors — everything compiles cleanly as long as that rule is followed. I’ll make this clearer in the README too, thanks!

Yes, I used ChatGPT to help refine the README and occasionally get suggestions for cleaner or more efficient code patterns.

But the core logic, turbo decoding modes, and embedded optimization — that’s all written, tested, and understood by me.

I see AI as a tool, not an author — it helps speed things up, but I still do the thinking.

I don’t see AI as a threat to programmers now or in the future — it’s just a tool. Think of programming like cutting down trees: we used to swing axes, and now we’ve got chainsaws. But even the best chainsaw won’t cut a tree on its own — it still needs the woodcutter.

AI is trained on what humans have already done. It can remix and automate, sure, but it doesn’t innovate or create like humans do — at least not yet. Reaching that level of creativity is a whole different game, and if AI ever does get there, we’ll have way bigger questions to worry about than job automation.

Bottom line: AI won’t replace us — it’ll reshape how we work. The role of the programmer will evolve, just like it has with every major shift in tools and tech.

Hello, now the design is great, you did a great job, now you can either rest or start promoting your site again. Or if you still have the strength, you can add theme customization, for example: light, dark, system, custom (the ability to customize the color of the site for yourself).

And I don't know what it's all about, but your site sometimes loads for me, sometimes it doesn't, it seems like it decides for itself when to load and when not to.

Thanks for the answer, I'm glad you like it. :)

Your observation is appropriate, I didn't notice the error in my project's output, apparently I accidentally put "Photo", wrote "Phono".

I know you don't need the project, but if you want, you can star my repository to support me.

Fair point! XID targets niche scenarios where its properties shine: 1. Resource-constrained environments (IoT/embedded) where UUIDs are too heavy 2. Offline systems needing collision resistance without coordination 3. Debuggability - timestamp extraction avoids DB lookups for audit trails 4. Zero-dependency projects (OS kernels, bootloaders, firmware)

It’s not for every use case, but fills gaps where UUIDv4/Snowflake can’t go. Curious what specific problems you’re solving where it feels less useful?

Hello, now the design is great, you did a great job, now you can either rest or start promoting your site again. Or if you still have the strength, you can add theme customization, for example: light, dark, system, custom (the ability to customize the color of the site for yourself).

Hello, now the design is great, you did a great job, now you can either rest or start promoting your site again.

Or if you still have the strength, you can add theme customization, for example: light, dark, system, custom (the ability to customize the color of the site for yourself).

Great project, I love all these things,I also gave your repository a star, I hope you will have 1000 of them someday, you really add to the capabilities of the terminal, I'm also interested in this, if you want, check out my project too:

https://github.com/Ferki-git-creator/phono-in-terminal-image...

I don't want to seem greedy, but if you want, you can also star the repository, so that all our terminal projects can see the world!

I more details analysis at your website and immediately spotted a few things that I think could really elevate its look and make it much more pleasant to use. Right now, it's a bit "shouting" with those bright colors, the text sometimes gets lost, and some elements feel like they're crowding each other. But honestly, all of this is super fixable, and your site has a lot of potential! Here are some specific tips that should help make your website feel much more professional: First off, let's swap out those blaring blue shades for something calmer, something that won't strain the eyes as much. Think about muted blue tones, a light background, and dark text. That alone will instantly make the site feel more substantial. It's also really important that the text is easy to read, so it's worth checking the contrast – dark text on a light background always looks best. And don't forget about spacing! It's like breathing room – give your elements a bit of space so they don't blend together. This will make your site's structure much cleaner and easier to grasp. By the way, using a consistent font style, like Open Sans, and clear hierarchy for your headings (larger for H1, smaller for H2, etc.) will also significantly improve the visual appeal. Here's how that might look in your code – these are just examples, feel free to pick your own specific values:

:root {

  --primary: #4a7b9d; /\* Muted blue */

  --secondary: #e3f2fd; /* Light background */

  --accent: #1565c0; /* Accent color for buttons, for instance */

  --text: #333333; /* Main text */
}

body {

  font-family: 'Open Sans', sans-serif; /* Consistent font */

  font-size: 1rem;

  line-height: 1.6; /* Comfortable line spacing */

  color: var(--text);

  background-color: #f8f9fa; /* Light background */
}

h1 { font-size: 2.2rem; }

h2 { font-size: 1.8rem; }

h3 { font-size: 1.4rem; }

.container {

  padding: 2rem; /* Generous padding for main blocks */

  max-width: 1200px;

  margin: 0 auto;
}

.card {

  background: white;

  border-radius: 8px;

  box-shadow: 0 4px 12px 
rgba(0,0,0,0.08); /* Subtle shadow for "cards" /
  transition: transform 0.3s ease; /* Smooth hover effect */

  padding: 1.5rem;

  margin-bottom: 1.5rem;

}

.card:hover {

  transform: translateY(-5px); /* Card subtly lifts on hover \*/

  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

Don't forget about responsiveness – so many people browse on their phones these days, so make sure your site looks great on any device. You could simplify the menu and perhaps make the header a bit smaller, maybe even add a logo instead of just text. Overall, these changes shouldn't take too long. Swapping out colors and adding padding is probably just 1-2 hours. Improving the cards and optimizing tags – another 2-3 hours. Navigation and responsiveness are a bit more complex, maybe 3-4 hours. And then you can add the fine details, like animations, which might take 4+ hours. The main thing to remember is: "less is more." Even small tweaks can make a huge difference!