Citroen 2cv pages
69 by dayve | 58 comments on Hacker News.
Sunday, July 31, 2022
Saturday, July 30, 2022
Friday, July 29, 2022
New top story on Hacker News: Apple Pay works in non-Safari browsers in iOS 16 Beta 3
Apple Pay works in non-Safari browsers in iOS 16 Beta 3
70 by san_amiro | 26 comments on Hacker News.
I was just poking around on a Shopify store on my Firefox browser and saw Apple Pay button showed up, first thought it's a front-end bug on the website but tapped on it and the widget slid up and you can legibly make the purchase! Tried on Chrome too and it worked there too! Tried a few other website and can confirm it works everywhere Apple Pay is offered. is it a feature? bug? Wanna try it yourself? you can check this Stripe test page https://ift.tt/QUm3uIO Haven't installed Beta 4 yet to see if it is still working.
70 by san_amiro | 26 comments on Hacker News.
I was just poking around on a Shopify store on my Firefox browser and saw Apple Pay button showed up, first thought it's a front-end bug on the website but tapped on it and the widget slid up and you can legibly make the purchase! Tried on Chrome too and it worked there too! Tried a few other website and can confirm it works everywhere Apple Pay is offered. is it a feature? bug? Wanna try it yourself? you can check this Stripe test page https://ift.tt/QUm3uIO Haven't installed Beta 4 yet to see if it is still working.
New top story on Hacker News: Show HN: Chunk – Code sandbox for back-end devs
Show HN: Chunk – Code sandbox for back-end devs
22 by theochampion | 6 comments on Hacker News.
Chunk co-founder here. We spent the last 2 weeks building this to scratch our own itch: As developers, we often have problems that could be solved just by running a few lines of code. Sometimes, running this code on your local machine is fine. But other time, the code need to run automatically reacting to external events or to run continuously, which means, it needs to run on a server somewhere. So now, you have to find a cloud provider, to package or build the code and finally to deploy it. All of that for what could be literally be 4 lines of code. We couldn’t find an easier way to do this, so we built it. Chunk is an all in one web editor (think of the codesandbox experience) that allows you to write, deploy and run a piece of code in the cloud from a variety of triggers: HTTP, WebHook, manual or scheduled (cron). No setup, no build, no deploy. Chunk makes you go from idea to code running in the cloud in seconds. Let me know what you guys think!
22 by theochampion | 6 comments on Hacker News.
Chunk co-founder here. We spent the last 2 weeks building this to scratch our own itch: As developers, we often have problems that could be solved just by running a few lines of code. Sometimes, running this code on your local machine is fine. But other time, the code need to run automatically reacting to external events or to run continuously, which means, it needs to run on a server somewhere. So now, you have to find a cloud provider, to package or build the code and finally to deploy it. All of that for what could be literally be 4 lines of code. We couldn’t find an easier way to do this, so we built it. Chunk is an all in one web editor (think of the codesandbox experience) that allows you to write, deploy and run a piece of code in the cloud from a variety of triggers: HTTP, WebHook, manual or scheduled (cron). No setup, no build, no deploy. Chunk makes you go from idea to code running in the cloud in seconds. Let me know what you guys think!
Thursday, July 28, 2022
Wednesday, July 27, 2022
New top story on Hacker News: Alpha: A translation of Genesis 1
Alpha: A translation of Genesis 1
34 by npilk | 6 comments on Hacker News.
From the post: "This was made with the help of a computer program [word2vec] that tries to express the meaning of any word by an adjective and a noun pair. Phrases like 'abstract astronomy' for 'space' and 'aquatic archipelagos' for 'islands' were generated by the program."
34 by npilk | 6 comments on Hacker News.
From the post: "This was made with the help of a computer program [word2vec] that tries to express the meaning of any word by an adjective and a noun pair. Phrases like 'abstract astronomy' for 'space' and 'aquatic archipelagos' for 'islands' were generated by the program."
New top story on Hacker News: Show HN: Peerdiem — Discover and discuss one painting a day
Show HN: Peerdiem — Discover and discuss one painting a day
16 by afkqs | 6 comments on Hacker News.
Hi everyone, I made Peerdiem (a portmanteau word between Peer and Per Diem, which means Per Day in latin). The idea is very simple, a new painting or artwork to discover and discuss with your peers every day. Content is currently only fetched from Chicago Art Institute Free API [1] but I'm planning to add more sources in the short future. It was built with a couple of technologies I wanted to try for some time. Frontend is made with Preact and styled with Tailwindcss. Backend consists of an FastAPI app deployed in a Docker container. [1] https://ift.tt/QgSxlsC
16 by afkqs | 6 comments on Hacker News.
Hi everyone, I made Peerdiem (a portmanteau word between Peer and Per Diem, which means Per Day in latin). The idea is very simple, a new painting or artwork to discover and discuss with your peers every day. Content is currently only fetched from Chicago Art Institute Free API [1] but I'm planning to add more sources in the short future. It was built with a couple of technologies I wanted to try for some time. Frontend is made with Preact and styled with Tailwindcss. Backend consists of an FastAPI app deployed in a Docker container. [1] https://ift.tt/QgSxlsC
Tuesday, July 26, 2022
Monday, July 25, 2022
New top story on Hacker News: Show HN: Pipes puzzle (a.k.a. Net) on a hexagonal grid
Show HN: Pipes puzzle (a.k.a. Net) on a hexagonal grid
18 by gereleth | 7 comments on Hacker News.
Hello, HN - I wanted to share this puzzle game I made during my vacation. I'm rather fond of the pipes puzzle where your goal is to restore a scrambled network of connections by rotating tiles. It's usually played on a grid of squares and this all started when I decided to make a programmatic solver for that kind of puzzle. Then I realized that with some minor changes the solver could generate new puzzle instances. I thought about what kind of puzzle to make and someone suggested a hexagonal grid. Adapting the generator wasn't too hard but then I had to create a way to play this variant. So I did just that =). I find hexagonal pipes a bit more difficult than the square variant because there's a larger variety of possible tile shapes. For an extra challenge I implemented wrap mode where the board can connect to itself (right to left and top to bottom), so there are no convenient outer walls to start from. The site is made with Svelte Kit, its code is available on github at < https://github.com/gereleth/hexapipes >. Hope you enjoy playing =).
18 by gereleth | 7 comments on Hacker News.
Hello, HN - I wanted to share this puzzle game I made during my vacation. I'm rather fond of the pipes puzzle where your goal is to restore a scrambled network of connections by rotating tiles. It's usually played on a grid of squares and this all started when I decided to make a programmatic solver for that kind of puzzle. Then I realized that with some minor changes the solver could generate new puzzle instances. I thought about what kind of puzzle to make and someone suggested a hexagonal grid. Adapting the generator wasn't too hard but then I had to create a way to play this variant. So I did just that =). I find hexagonal pipes a bit more difficult than the square variant because there's a larger variety of possible tile shapes. For an extra challenge I implemented wrap mode where the board can connect to itself (right to left and top to bottom), so there are no convenient outer walls to start from. The site is made with Svelte Kit, its code is available on github at < https://github.com/gereleth/hexapipes >. Hope you enjoy playing =).
Sunday, July 24, 2022
Saturday, July 23, 2022
Friday, July 22, 2022
Thursday, July 21, 2022
Wednesday, July 20, 2022
Tuesday, July 19, 2022
Monday, July 18, 2022
New top story on Hacker News: Tell HN: Internet Archive is facing a Big 4 Publishers lawsuit
Tell HN: Internet Archive is facing a Big 4 Publishers lawsuit
234 by antiverse | 52 comments on Hacker News.
Not sure why this isn't more prominently highlighted, but this is a very culturally significant project and a custodian of a tremendous amount of Internet and WWW-oriented history. I would imagine HN would put this at the forefront of the discussions happening here. I'm not affiliated, but I am a concerned netizen. All of us here have benefited from The IA. Please help raise awareness as to what is happening. Read more here, and elsewhere - https://ift.tt/BP6Hj2d > In June 2020, four major publishers—John Wiley & Sons and three of the big five US publishers, Hachette Book Group, HarperCollins and Penguin Random House—filed a lawsuit against the Internet Archive, claiming the non-profit organization, “is engaged in willful mass copyright infringement.” > The lawsuit stems from the corporate publishers response to an innovative temporary initiative launched by the Internet Archive during the first months of the coronavirus pandemic called the National Emergency Library. Given the impact of the public health emergency, the Internet Archive decided to ease its book lending restrictions and allow multiple people to check out the same digital copy of a book at once. > Up to that point, the Internet Archive had established a practice of purchasing copies of printed books, digitizing them and lending them to borrowers one at a time. When it kicked-off the emergency lending program, the Internet Archive made it clear that this policy would be in effect until the end of the pandemic. Furthermore, the archive’s publishers said that this program was in response to library doors being closed to the public during the pandemic. Under conditions where the Internet Archive was the only means of access to titles for many people, the policy was justified and a creative response to COVID-19.
234 by antiverse | 52 comments on Hacker News.
Not sure why this isn't more prominently highlighted, but this is a very culturally significant project and a custodian of a tremendous amount of Internet and WWW-oriented history. I would imagine HN would put this at the forefront of the discussions happening here. I'm not affiliated, but I am a concerned netizen. All of us here have benefited from The IA. Please help raise awareness as to what is happening. Read more here, and elsewhere - https://ift.tt/BP6Hj2d > In June 2020, four major publishers—John Wiley & Sons and three of the big five US publishers, Hachette Book Group, HarperCollins and Penguin Random House—filed a lawsuit against the Internet Archive, claiming the non-profit organization, “is engaged in willful mass copyright infringement.” > The lawsuit stems from the corporate publishers response to an innovative temporary initiative launched by the Internet Archive during the first months of the coronavirus pandemic called the National Emergency Library. Given the impact of the public health emergency, the Internet Archive decided to ease its book lending restrictions and allow multiple people to check out the same digital copy of a book at once. > Up to that point, the Internet Archive had established a practice of purchasing copies of printed books, digitizing them and lending them to borrowers one at a time. When it kicked-off the emergency lending program, the Internet Archive made it clear that this policy would be in effect until the end of the pandemic. Furthermore, the archive’s publishers said that this program was in response to library doors being closed to the public during the pandemic. Under conditions where the Internet Archive was the only means of access to titles for many people, the policy was justified and a creative response to COVID-19.
New top story on Hacker News: Show HN: Babble – Communicate privately on state-sponsored social media
Show HN: Babble – Communicate privately on state-sponsored social media
14 by yvbbrjdr | 1 comments on Hacker News.
Thanks for checking out Babble! You might wonder why this app is even useful and why not just use Signal/PGP. This app's target audience is actually ordinary people in China or similar countries who are under severe government surveillance and censorship, where access to Signal and similar E2EE messaging software is blocked by nationwide firewalls, such as the Great Firewall of China (GFW). Chinese people have been deprived of freedom of speech even before the COVID-19 pandemic. Li Wenliang, who was among the first to notice the spread of the virus and warned his colleagues about it in a private WeChat group, was admonished by the police for "spreading rumors"; his punishment was then aired on the national TV channel. After Wenliang passed away due to getting COVID-19 himself, discussions about it on China's public Internet were highly restricted; most discussions will be deleted upon being posted, which was done by some automatic keyword detection mechanism. Things got even worse over the years and especially during the Shanghai lockdown in early 2022. Everything related to questioning the public health policy is banned. Many people posted articles about how bad Shanghai's economic and social situation is on their WeChat public accounts. None of these articles, not even their accounts, can survive for longer than a few hours. Even articles crying for help, because people were starving, got deleted. A video called Voice from Shanghai Lockdown ( https://youtu.be/38_thLXNHY8 ), which contains audio recordings of desperate Shanghai people during the lockdown, went viral on Chinese social media at the end of this April. Unsurprisingly, this video was immediately censored. People got angry and tried to spread this video as much as possible by re-posting it again and again, racing against the detection algorithm. But it was futile. It's just like 1984, where the number of words available to say "legally" is decreasing. There are no tools available for people to speak out. Public social media and private messaging apps are all monitored by the government. Foreign tools such as Telegram, Signal, or anything similar are blocked by the GFW. PGP is too technical for normal people. The goal of Babble is to provide those people with a cryptographic and steganographic tool that's easy enough to use but secure enough against a censorship system. It's not perfect as of now, but we are making an effort to make it better. Yes, Babble might get removed from the App Store in China if the Chinese government asks, but it's fundamentally different from Signal being blocked - there are a considerable number of people in China who has an overseas Apple ID so that they can download apps not on Chinese App Store, but to use Signal, you have to bypass GFW, which fewer people know how to. One of the real challenges for this project though, is how to get people aware of the situation, because our education is brainwashing and people are starting to take surveillance and censorship for granted. And it's very hard for the app to reach its intended audience because the surveillance system is designed to prevent them from accessing this kind of tool.
14 by yvbbrjdr | 1 comments on Hacker News.
Thanks for checking out Babble! You might wonder why this app is even useful and why not just use Signal/PGP. This app's target audience is actually ordinary people in China or similar countries who are under severe government surveillance and censorship, where access to Signal and similar E2EE messaging software is blocked by nationwide firewalls, such as the Great Firewall of China (GFW). Chinese people have been deprived of freedom of speech even before the COVID-19 pandemic. Li Wenliang, who was among the first to notice the spread of the virus and warned his colleagues about it in a private WeChat group, was admonished by the police for "spreading rumors"; his punishment was then aired on the national TV channel. After Wenliang passed away due to getting COVID-19 himself, discussions about it on China's public Internet were highly restricted; most discussions will be deleted upon being posted, which was done by some automatic keyword detection mechanism. Things got even worse over the years and especially during the Shanghai lockdown in early 2022. Everything related to questioning the public health policy is banned. Many people posted articles about how bad Shanghai's economic and social situation is on their WeChat public accounts. None of these articles, not even their accounts, can survive for longer than a few hours. Even articles crying for help, because people were starving, got deleted. A video called Voice from Shanghai Lockdown ( https://youtu.be/38_thLXNHY8 ), which contains audio recordings of desperate Shanghai people during the lockdown, went viral on Chinese social media at the end of this April. Unsurprisingly, this video was immediately censored. People got angry and tried to spread this video as much as possible by re-posting it again and again, racing against the detection algorithm. But it was futile. It's just like 1984, where the number of words available to say "legally" is decreasing. There are no tools available for people to speak out. Public social media and private messaging apps are all monitored by the government. Foreign tools such as Telegram, Signal, or anything similar are blocked by the GFW. PGP is too technical for normal people. The goal of Babble is to provide those people with a cryptographic and steganographic tool that's easy enough to use but secure enough against a censorship system. It's not perfect as of now, but we are making an effort to make it better. Yes, Babble might get removed from the App Store in China if the Chinese government asks, but it's fundamentally different from Signal being blocked - there are a considerable number of people in China who has an overseas Apple ID so that they can download apps not on Chinese App Store, but to use Signal, you have to bypass GFW, which fewer people know how to. One of the real challenges for this project though, is how to get people aware of the situation, because our education is brainwashing and people are starting to take surveillance and censorship for granted. And it's very hard for the app to reach its intended audience because the surveillance system is designed to prevent them from accessing this kind of tool.
Sunday, July 17, 2022
Saturday, July 16, 2022
New top story on Hacker News: When coal first arrived, Americans said 'no thanks'
When coal first arrived, Americans said 'no thanks'
42 by WithinReason | 68 comments on Hacker News.
42 by WithinReason | 68 comments on Hacker News.
Friday, July 15, 2022
New top story on Hacker News: Leakage and the reproducibility crisis in ML-based science
Leakage and the reproducibility crisis in ML-based science
19 by randomwalker | 5 comments on Hacker News.
19 by randomwalker | 5 comments on Hacker News.
Thursday, July 14, 2022
Wednesday, July 13, 2022
New top story on Hacker News: Expanding the Tau VM family with Arm-based processors
Expanding the Tau VM family with Arm-based processors
27 by ashvardanian | 0 comments on Hacker News.
27 by ashvardanian | 0 comments on Hacker News.
Tuesday, July 12, 2022
Monday, July 11, 2022
New top story on Hacker News: Postgres full-text search: A search engine in a database (2021)
Postgres full-text search: A search engine in a database (2021)
111 by craigkerstiens | 28 comments on Hacker News.
111 by craigkerstiens | 28 comments on Hacker News.
New top story on Hacker News: The euro has tumbled near parity to the US dollar
The euro has tumbled near parity to the US dollar
206 by systemvoltage | 231 comments on Hacker News.
206 by systemvoltage | 231 comments on Hacker News.
Sunday, July 10, 2022
New top story on Hacker News: Show HN: Evryca – fractal thinking tool to brainstorm and organize thoughts
Show HN: Evryca – fractal thinking tool to brainstorm and organize thoughts
4 by efojs | 0 comments on Hacker News.
Made a tool to organize thoughts. Actually it is a mind tree, but in a more web-friendly form. It has pivoted from what I originally started building at evryca.com. Some years ago I got the idea of fractal conversation, instead of old-school tree/ladder-like comments. I wanted to see only comments related to the current level. I started making "something" with fractal comments. This "something" was a project discussion platform. But it turned out that even I myself don't use it, and the idea of fractal comments stuck there unused. And recently it dawned on me that it may be a conversation with yourself — thinking, brainstorming, taking notes, writing. So made this kind of cork/whiteboard, where one can dive into the subject and, being in the flow, write and see only related notes and rearrange them later. I'm trying to make it flawless and add keyboard shortcuts where it's possible (Ctr+Enter to submit idea, drag-and-drop to rearrange, Esc to jump level up). So finally I've made a tool that I use myself and will update it gradually (sorting, touch devices, ex/import (json, text), boards, more navigation with keyboard and other stuff, and login).
4 by efojs | 0 comments on Hacker News.
Made a tool to organize thoughts. Actually it is a mind tree, but in a more web-friendly form. It has pivoted from what I originally started building at evryca.com. Some years ago I got the idea of fractal conversation, instead of old-school tree/ladder-like comments. I wanted to see only comments related to the current level. I started making "something" with fractal comments. This "something" was a project discussion platform. But it turned out that even I myself don't use it, and the idea of fractal comments stuck there unused. And recently it dawned on me that it may be a conversation with yourself — thinking, brainstorming, taking notes, writing. So made this kind of cork/whiteboard, where one can dive into the subject and, being in the flow, write and see only related notes and rearrange them later. I'm trying to make it flawless and add keyboard shortcuts where it's possible (Ctr+Enter to submit idea, drag-and-drop to rearrange, Esc to jump level up). So finally I've made a tool that I use myself and will update it gradually (sorting, touch devices, ex/import (json, text), boards, more navigation with keyboard and other stuff, and login).
Saturday, July 9, 2022
New top story on Hacker News: The Commodore Plus/4, 3-Plus-1 and computer literacy
The Commodore Plus/4, 3-Plus-1 and computer literacy
5 by classichasclass | 0 comments on Hacker News.
5 by classichasclass | 0 comments on Hacker News.
Friday, July 8, 2022
Thursday, July 7, 2022
Wednesday, July 6, 2022
New top story on Hacker News: Show HN: C3 – A C alternative that looks like C
Show HN: C3 – A C alternative that looks like C
16 by lerno | 2 comments on Hacker News.
Compiler link: https://ift.tt/3VYUX0v Docs: http://www.c3-lang.org This is my follow-up "Show HN" from roughly a year ago ( https://ift.tt/slgtL7P ). Since then the language design has evolved and the compiler has gotten much more solid. Assorted extra info: - The C3 name is a homage to the C2 language project ( http://c2lang.org ) which it was originally inspired by. - Although C3 mostly conforms to C syntax, the most obvious change is requiring `fn` in front of the functions. This is to simplify searching for definitions in editors. - There is a comparison with some other languages here: https://ift.tt/Pa4Y6gj - The parts in C3 which breaks C semantics or syntax: https://ift.tt/cJBLsfu - Aside from the very C-like syntax, one the biggest difference between C3 and other "C competitors" is that C3 prioritizes C ABI compatibility, so that all C3 special types (such as slices and optionals) can be used from C without any effort. C and C3 can coexist nicely in a code base. - Currently the standard library is not even alpha quality, it's actively being built, but there is a `libc` module which allows accessing all of libc. Raylib is available to use from C3 with MacOS and Windows, see: https://ift.tt/9IdOY2u - There is a blog with assorted articles I've written during the development: https://ift.tt/8WJVRsI
16 by lerno | 2 comments on Hacker News.
Compiler link: https://ift.tt/3VYUX0v Docs: http://www.c3-lang.org This is my follow-up "Show HN" from roughly a year ago ( https://ift.tt/slgtL7P ). Since then the language design has evolved and the compiler has gotten much more solid. Assorted extra info: - The C3 name is a homage to the C2 language project ( http://c2lang.org ) which it was originally inspired by. - Although C3 mostly conforms to C syntax, the most obvious change is requiring `fn` in front of the functions. This is to simplify searching for definitions in editors. - There is a comparison with some other languages here: https://ift.tt/Pa4Y6gj - The parts in C3 which breaks C semantics or syntax: https://ift.tt/cJBLsfu - Aside from the very C-like syntax, one the biggest difference between C3 and other "C competitors" is that C3 prioritizes C ABI compatibility, so that all C3 special types (such as slices and optionals) can be used from C without any effort. C and C3 can coexist nicely in a code base. - Currently the standard library is not even alpha quality, it's actively being built, but there is a `libc` module which allows accessing all of libc. Raylib is available to use from C3 with MacOS and Windows, see: https://ift.tt/9IdOY2u - There is a blog with assorted articles I've written during the development: https://ift.tt/8WJVRsI
Tuesday, July 5, 2022
New top story on Hacker News: Opening up our code and logic for algorithmic decision-making
Opening up our code and logic for algorithmic decision-making
10 by open-source-ux | 0 comments on Hacker News.
10 by open-source-ux | 0 comments on Hacker News.
Monday, July 4, 2022
Sunday, July 3, 2022
New top story on Hacker News: Show HN: Desklamp – convenient and collaborative notemaking on PDFs
Show HN: Desklamp – convenient and collaborative notemaking on PDFs
14 by pj747 | 3 comments on Hacker News.
Hey HN! I'm Prajwal, the co-creator of Desklamp! I just completed my undergrad, which is where we got the idea for Desklamp. A bunch of friends and I built this because we hated the experience of studying on our laptops. It was boring, and we found ourselves staring at the screen for hours on end with no output to show for it. To make reading more engaging and to make sure we could remember what we read, we built a note-making system integrated with a PDF reader. The aim is to encourage you to make notes! LaTeX support, clipping out sections from the document, linking notes to sections in the PDF - everything is designed to really make sure you have no excuse to not make notes as you read. We've also added a lot of fixes for minor inconveniences (scrolling across sections, hitting the wrong page number, light mode, viewing your highlights at a glance). And all of this is collaborative, because that just makes notes even more useful. It's free for a while - we want to know what the rest of you think! Feedback can only help us make this even better. It's available as a web-app and a desktop app for Mac and Windows (Linux users, mail us, we're operating on a very closed beta right now).
14 by pj747 | 3 comments on Hacker News.
Hey HN! I'm Prajwal, the co-creator of Desklamp! I just completed my undergrad, which is where we got the idea for Desklamp. A bunch of friends and I built this because we hated the experience of studying on our laptops. It was boring, and we found ourselves staring at the screen for hours on end with no output to show for it. To make reading more engaging and to make sure we could remember what we read, we built a note-making system integrated with a PDF reader. The aim is to encourage you to make notes! LaTeX support, clipping out sections from the document, linking notes to sections in the PDF - everything is designed to really make sure you have no excuse to not make notes as you read. We've also added a lot of fixes for minor inconveniences (scrolling across sections, hitting the wrong page number, light mode, viewing your highlights at a glance). And all of this is collaborative, because that just makes notes even more useful. It's free for a while - we want to know what the rest of you think! Feedback can only help us make this even better. It's available as a web-app and a desktop app for Mac and Windows (Linux users, mail us, we're operating on a very closed beta right now).
Saturday, July 2, 2022
Friday, July 1, 2022
New top story on Hacker News: Ask HN: Why not have reverse life insurance that rewards longevity?
Ask HN: Why not have reverse life insurance that rewards longevity?
19 by amichail | 46 comments on Hacker News.
In particular, reverse life insurance would only pay out to your loved ones if you live beyond a certain age. This would encourage your loved ones to keep you alive until you reach that age.
19 by amichail | 46 comments on Hacker News.
In particular, reverse life insurance would only pay out to your loved ones if you live beyond a certain age. This would encourage your loved ones to keep you alive until you reach that age.
Subscribe to:
Posts (Atom)