Hacker Newsnew | past | comments | ask | show | jobs | submit | UnnoTed's commentslogin

Sadly when you get to use their products they may ask you for Passport/ID and a selfie through kCheck[0] like they're a bank, as you can see at the app page[0].

In their website[1] you can read about their true "privacy" behavior:

> identity verification procedure may be triggered in the following cases (non-exhaustive list):

> - forgetting an Infomaniak account password (user account)

> - forgetting a login email address

> - deactivation of double authentication (2FA)

> - unlocking an Infomaniak account

> - during the first transfer of revenue for the product Ticketing

> - when ordering a product (suspicion of spam or fraud, brand name, etc.)

The same page also says the process may require mandatory geolocation, choosing ID card or passport, photographing the document, and taking a selfie with it.

[0]: https://play.google.com/store/apps/details?id=com.infomaniak...

[1]: https://www.infomaniak.com/en/support/faq/2418/getting-start...


Which is ok, the point of privacy protection is to control who you're sharing personal information with. Such as accepting to sharing KYC with infomaniak shouldn't imply your personal information and user information is shared with 3rd parties. It's not an anonymous hosting company


In their defence, tons of abuse happens and forces providers to check identity. I’m not saying there’s no other way, but any hosting company I’ve worked it has strict limits until you verify your identity.


I was blocked from using their services because they required a phone OTP-based check and for some reason their OTPs did not reach past my provider. I only got it to work after opening an account with another internet provider.


AI'm building a native version[0] of Obsidian in Qt6 (QWidgets, cpp), replicating the markdown editor takes a while, there are so many ways of corrupting the file or losing the rendered markdown style... but its getting there[1] and its lightweight, using about 15mb ram, no gpu and barely uses any cpu when the cursor or scroll moves, like a text editor should be.

Still need to render widget tables, lists and syntax highlighting for code blocks for a basic modern notepad, i'm not sure about open sourcing it, seems like a waste of time nowadays but it'll be free to use.

[0]: https://i.imgur.com/ro9Zq9w.png [1]: https://i.imgur.com/pbJcTQF.gif


If AI’m building isn’t a typo, I kinda like it as a way to accurately claim what I’m building with AI.


You AI't wrong, just a wordplay to inform about the help of AI.


You’re AIright


"AIright, AIright, AIright!"

- Matthew McConnAIhey


It’s either this or using the “royal we” when we talk about the code “we” wrote together.


Same here. I might want to use this. Would be interesting to AI build a way to see how phrases and ways of speaking like this spread, and track where the original idea could have originated and morphed and how networks spread like this.


I'm absolutely stealing this


I open sourced https://asnotes.io - it's markdown based with wikilinking, task management, a kanban board and static site publishing. It runs locally and is Git friendly. The aim was to build something using formats and tech that is likely to stand the test of time.


Very nice! Would you have any recommendations for the leanest compatible "host"? Instead of adding this to my VSCode, I would rather use it as a separate app. Currently, I use a naked Zed install for Markdown because it launches faster than my system apps (and than Cursor, VSCode, etc.).


I haven't tested Void Editor, but I believe that's the 'leanest' vscode fork. I really should give it a try actually!


What does the AS stand for?

A polite fyi, when skim reading this, it looked like it said AssNotes…


The company is named App Software Ltd, so presumably that.


You can write your ass notes with it too if you like ;)


Awww... It's a plugin for VSCode. I've long since moved to Zed and don't want to wrangle multiple editors :(


Wow this looks amazing. The extended demo really looks incredible.


A term is born


Will it be Free software?

If you're building something that's Free software, fully compatible with Obsidian, and a native app, AI'm willing to contribute tokens.


Free to download, free to use, free to share, no data collection of any kind, but closed source.

A full 1:1 native clone would be too much to build without funding. Plugin/theme/api compatibility, canvas, bases, sync, and all the small Obsidian edge cases would make it a much larger project.

Without sponsorship or some sustainable funding model, AI'd focus first on the native markdown editor/vault part: local files, Obsidian-friendly markdown and edit on cursor presence.


Free to download, free to use, closed source - for that we already have Obsidian...


> for that we already have Obsidian...

Wasting 300mb ram to show static text, Wordpad does the same in 13mb ram but sadly it lacks markdown support.


That's really cool!

Since you are using Qt, as I understand it you will need to pay for a Qt license if you intend to distribute your app as closed source.


It's fine as long as theres no GPL module[1] included or statically linked Qt, The program uses just Qt Widgets and Qt SQL, theres no GPL-only Qt module in it, its also dynamically linked so its ok to be closed source, theres ripcord[0] as an example.

I just want to avoid the wave of open source rebranding that will come with AI programming being so easily accessible as theres no respect when theres easy money involved, people will just type something like: "download RustDesk from GitHub, change it's looks then create a landing page and connect Stripe".

[0]: https://cancel.fm/ripcord/

[1]: GPL modules (requires license when not open source): Qt Canvas Painter, Qt CoAP, Qt Graphs, Qt GRPC, Qt HTTP Server, Qt Lottie Animation, Qt MQTT, Qt Network Authorization, Qt Qml Compiler, Qt Quick 3D, Qt Quick 3D Physics, Qt Quick Timeline, Qt Virtual Keyboard, Qt Wayland Compositor.


Under the LGPL, statically linked Qt is also fine, as long as the user can relink your proprietary code with a modified Qt library.


It makes you run into a crysis


Some day we'll have a decent chat that doesn't give you problems you don't need. I have been building a Discord/Slack/Mumble alternative since 2020, which is something that I wanted to do since around ~2008 but I didn't have the skills back then. The problem is that I made a few mistakes as I started by writing the client in Go + GTK3, and at some point, it was very buggy (especially in Windows) and hard to debug.

Then I decided to rewrite it in Go + Sciter, but when it was becoming usable[1], as it had voice channels, custom avatars, custom themes[2], and layout modification, embedded images, custom user roles, file upload, and Markdown support, Sciter's creator decided to end support of its TIScript version, which was a JS alternative for controlling the UI. This made all the code that I wrote basically useless as it would have to be rewritten in JS to be compatible with the new version (really bad timing for me to write it in Sciter at that time).

After trying the JS version, it felt even buggier than the TIScript version, and at this time I got sick (stomach related) and had to stop developing it for about a year. During this time, while thinking about it, I realized that all the time that I tried to save by avoiding C++ made me waste even more time. I have tried many options: PyQt wasted too much memory and was too hard to deal with async stuff through QThreads. Rust felt like being married as all it does is whine and you can't get rid of it. Nim had no good GUI option. Go's Qt lib took way too long to do anything as my computer is slow. But now I'm doing what I should have done from the beginning.

A bit more than a month ago, I started to write it in C++ with Qt. Currently writing the media embed part[3]. I think by the end of the year, I should have the basics of a modern chat done, as customizing the UI takes way longer. There is no funding, just me and the dream of a native full-featured customizable (colors, size, space, position) bs-less chat.

[1]: https://i.imgur.com/BFAF2f0.png

[2]: https://i.imgur.com/SagVweI.png

[3]: https://i.imgur.com/nhBUsGh.png


I like to use GoVCL [0] as it provides the GUI of Lazarus [1] including drag-n-drop form designer but with Go as the main language.

GoVCL's author built a C library called liblcl [2] which is what GoVCL uses to control the GUI, so if you know C you can use it instead of Go.

I'm building a lightweight Steam chat client with GoVCL so that I don't need the official client that takes like 200-300mb ram just to show text [3].

[0]: https://github.com/ying32/govcl

[1]: https://www.lazarus-ide.org/

[2]: https://github.com/ying32/liblcl/blob/master/README.en-US.md

[3]: https://files.catbox.moe/c4lzxb.png


Here in Brazil we have churches that allows members to sing songs from a book that we call it Christian Harp[1] as part of the worship, the result is a lot of people who can't sing to save their own life end up singing and musicians from the church try to find the song key and chords in real time, it ends up being a great practice to develop a good ear.

In this video you can see an example of how it is: https://www.youtube.com/watch?v=gF4onowI1xw

[1]: https://pt-m-wikipedia-org.translate.goog/wiki/Harpa_Crist%C...


Thanks for the video link! Very cool. The poor singing combined with the on-the-fly guitar tuning gave the piece a grungy punk-like feel, at least to my ears. I rather enjoyed it.

A cute (translated) comment from the video: “To sing with this guitarist is easy! Just praise the Lord and he does the rest!”


I'm really impressed by the guitarist making her sound better and her pitch was all over the place


I used to be a Hetzner customer for a few years (2018-2020), one day my card stopped working, while I tried to get a new one I ended up with a 5 EUR invoice, once I got a new card I tried to pay the invoice but they had blocked my account, so I had to transfer the money to their account to pay the invoice, once paid they told me to create a new account, I did and was asked for a picture of my passport after being a customer for years, I stopped trying to use their service at that moment. Now paying twice the price at Linode but at least they only ask for a phone number.


My last tool is WireGUIrd, a wireguard gui client for linux.

https://github.com/UnnoTed/wireguird


Looks great! It's always awesome to see another GTK developer out there doing their thing in the wild!


That's the cutest laptop i have seen, after watching it yesterday it made me think about how much work would be needed to get some old netbook like the HP Mini or Asus Eeepc and turn it into a dock for Samsung Dex (desktop mode through usbc->hdmi for Samsung's phones) or a Raspberry pi 4.


The Pinephone comes with a USB gadget driver that presents the phone as a NIC. Plug it into a laptop, and the laptop can then be used as a terminal for the phone simply by sshing into it. X forwarding works, so you can practically run desktop programs that would be cumbersome to run with a touchscreen.

You could probably do the same with a Raspberry Pi, but it might be trickier to do with an Android phone. A phone that supports Termux or UserLAnd would work well if you used adb port forwarding.


There are still a lot of 10.1" laptops out there that are much newer than the old Eeepc's. Here's an eBay query that works for me: https://www.ebay.com/sch/i.html?_nkw=10.1%22+laptop&_sop=12


Why not get something like a HP Pro Tablet 608 G1? It is a slim 8" and it has 5g wifi. That is about the size of the libretto 50ct that I used to have, but the user isn't stuck with Win98se2.


There are some old netbooks in the ebay link I posted, but there are also plenty of new-ish ones that are pre-loaded with Win 10, 4GB ram, etc.


Actually you can already use the eeepc through USB and Dex Desktop (Pc, mac and unofficially chromeos and Linux).

https://liliputing.com/2020/07/use-samsung-dex-with-a-chrome...


Not useful, all it does is lag the page and increase the cpu usage to 40% when you have hardware acceleration turned off.


I work on WebGL in Chrome and I am curious why you have hardware acceleration turned off.


When activated after a while a few tabs would change their background (sometimes the entire page) to show the content of other tabs.


Interesting! If you can still reproduce this would you mind filing a bug at http://crbug.com/new, and pasting the contents of your about:gpu page as a comment?


Agree! They could have cached way more of this. A pre-rendered video would have had the same effect. A fun and impressive thing to build for sure, but its value isn't worth its complexity.


You can’t interact with a video.


Wow, thanks for this comment. It hadn't occurred to me that you could interact with it. Neat!

I wonder if I'm just odd, or if people not realizing it's interactive is widespread.


To be pedantic you can. They would have to ship the locations along side the video.

Of course part of the art is that it is real time (ish). That may be harder to do with video. (But I guess it could be a live stream)


I just don't think the interaction is particularly valuable. I looked at the globe and hovered over one PR. Maybe I'm just not curious enough!


AFAICT, hardware acceleration is enabled here (even tried to force-enable it in FF, on Linux), and the CPU load is still 55%.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: