Nigeria No1. Music site And Complete Entertainment portal for Music Promotion WhatsApp:- +2349077287056
Friday, 19 August 2022
Show HN: How hard can it be to draw a line? https://bit.ly/3dCL5eF
Show HN: How hard can it be to draw a line? https://bit.ly/3dHfOaq August 19, 2022 at 06:13PM
Show HN: I built a simple review to see if you deserve a raise https://bit.ly/3PG2GzE
Show HN: I built a simple review to see if you deserve a raise https://bit.ly/3PQ2dex August 19, 2022 at 06:16PM
Show HN: Create Native Desktop Apps from WebAssembly https://bit.ly/3ptFUQT
Show HN: Create Native Desktop Apps from WebAssembly https://bit.ly/3PwvFpr August 19, 2022 at 04:45PM
Show HN: What is your go-to free email provider with custom domain support? https://bit.ly/3A7bAQY
Show HN: What is your go-to free email provider with custom domain support? It used to be Google's workspaces, but they no longer have free accounts. August 19, 2022 at 05:17PM
Show HN: Modifying Clang for a Safer, More Explicit C++ https://bit.ly/3A6k1w4
Show HN: Modifying Clang for a Safer, More Explicit C++ Modified C++ Inspired by the paper "Some Were Meant for C" by Stephen Kell, I decided to show that it's possible to iterate C++ to be safer, more explicit, and less error-prone. Here's a possible starting point: I didn't invent a new language or compiler, but took the world's best compiler, clang, and modified it to begin iterating towards a new furture of C++. Naming things is hard, so I call this 'Modified C++'. Some of the following could be implemented as tooling in a linter or checker, but the idea is to update the compiler directly. I also wanted to learn more about clang. This compiler needs a flag to enable/disable this functionality so that existing library code can be used with a 'diagnostic ignored' pragma. You can build clang using the normal non-bootstrap process and you'll be left with a clang that compiles C++ but with the following modifications: - All basic types (excluding pointers and references) are const by default and may be marked 'mutable' to allow them to be changed after declaration - Lambda capture lists must be explicit (no [&] or [=], by themselves) - Braces are required for conditional statements, case and default statements within switches, and loops - Implicit conversions to bool are prohibited (e.g., pointers must be compared against nullptr/NULL) - No goto support - Explicit 'rule of six' for classes must be programmer-implemented (default, copy, and move c'tors, copy and move assignment, d'tor) - No C style casts Here's an example program that's valid in Modified C++: mutable int main(int, char**) { mutable int x = 0; return x; } Here's another that will fail to compile: mutable int main(int, char**) { int x = 1; x = 0; // x is constant return x; } I'd like your feedback. Future changes I'm thinking about are: - feature flag for modified c++ to enable/disable with 'diagnostic ignored' pragma, to support existing headers and libraries - support enum classes only - constructor declarations are explicit by default - namespaces within classes - normalize lambda and free function syntax - your ideas here https://bit.ly/3py4Wyc August 17, 2022 at 08:21PM
Show HN: SineRider - A game about love, math, and graphing built by teenagers https://bit.ly/3T4LeIb
Show HN: SineRider - A game about love, math, and graphing built by teenagers https://bit.ly/3K8tXJL August 19, 2022 at 03:29PM
Show HN: ClavaScript: a ClojureScript syntax to JavaScript compiler https://bit.ly/3wiFUqS
Show HN: ClavaScript: a ClojureScript syntax to JavaScript compiler https://bit.ly/3dMeYcI August 19, 2022 at 02:42PM
Thursday, 18 August 2022
Show HN: An HTML endless runner under 900 lines without frameworks or libraries https://bit.ly/3Ch0WcX
Show HN: An HTML endless runner under 900 lines without frameworks or libraries My wife and I recently submitted to a mobile game jam on Newgrounds (yes, it's still around). What started as a question of whether we could do it somehow morphed into whether we could do without so many of the seemingly needless complications rampant in our respective industries. My wife thus did all the art as traditional frame-by-frame animation (no puppets or tweening) and I preceded without a game engine. I did use a pre-processor that gives JS a Lisp syntax (Parenscript), because C-syntax is gross. We hope the end result, while definitely of small scope, will serve to inspire some thought as to what is and isn't needed in your next project. https://bit.ly/3QCNN2i August 19, 2022 at 05:12AM
Show HN: MyNotifier – Simple Notifications https://bit.ly/3QzpTVy
Show HN: MyNotifier – Simple Notifications https://bit.ly/3QwrZFy August 18, 2022 at 10:36AM
Show HN: I spent a year designing a low profile, minimal mechanical keyboard https://bit.ly/3c3SEKQ
Show HN: I spent a year designing a low profile, minimal mechanical keyboard Hi HN, During lockdown I took up the keyboard hobby but I couldn't find anything I liked the aesthetic of. So I set out to design my own keyboard from scratch that shunned the gamer look in favour of a more minimal, serious design. I've built several prototypes but I would love to get some feedback from the HN community. https://bit.ly/3A5e3vp August 18, 2022 at 10:24AM
Show HN: StoneDB—A Real-Time HTAP Database Based on the MySQL Kernel https://bit.ly/3PxlHEt
Show HN: StoneDB—A Real-Time HTAP Database Based on the MySQL Kernel StoneDB is an open-source hybrid transaction/analytical processing (HTAP) database designed and developed by StoneAtom based on the MySQL kernel. It is the first database of this type launched in China. StoneDB can be seamlessly switched from MySQL. It provides features such as optimal performance and real-time analytics, offering you a one-stop solution to process online transaction processing (OLTP), online analytical processing (OLAP), and HTAP workloads. StoneDB is fully compatible with the MySQL 5.6 and 5.7 protocols, the MySQL ecosystem, and common MySQL features and syntaxes. Tools and clients in the MySQL ecosystem, such as Navicat, Workbench, mysqldump, and mydumper, can be directly used on StoneDB. In addition, all workloads on StoneDB can be run on MySQL. StoneDB is optimized for OLAP applications. StoneDB that runs on a common server can process complex queries on tens of billions of data records, while ensuring high performance. Compared to databases that use MySQL Community Edition, StoneDB is at least 10 times faster in processing queries. StoneDB uses the Knowledge Grid technology and a column-based storage engine. The column-based storage engine is designed for OLAP applications and uses techniques such as column-based storage, Knowledge Grid-based filtering, and high-efficiency data compression. With such storage engine, StoneDB ensures the high performance of application systems and reduces the total cost of ownership (TCO). https://bit.ly/3IhU7J8 August 18, 2022 at 06:56AM
Show HN: Allsearch – Making it easier to use different search engines seamlessly https://bit.ly/3Qw5ell
Show HN: Allsearch – Making it easier to use different search engines seamlessly Allsearch is a tool I made after getting fed up with Google's search results and reading up on conversations on HN about the state of search on the internet. This is a tool I made as a spiritual successor to GnodSearch ( https://bit.ly/3dCKd9Q ), which I've seen in a couple conversations about search on HN. GnodSearch is great, but a bit barebones in terms of looks and functionality; Allsearch is my attempt to build off of it. Similar to Gnod, Allsearch allows you to apply any given search query to a search engine of your choice (either through only keystrokes, or via mouse). However, it also allows you to add your own engines to its catalogue, and allows you to define macros to use multiple engines simultaneously (useful for easily comparing engines). It's not feature complete; there are still some things I'd like to add in. There are way more engines I want to add to it's default catalogue, and I also want to add in the ability to export your settings to allow people to easily share their Allsesarch configurations. Curious about people's thoughts on it :) https://bit.ly/3Qw9UHz August 17, 2022 at 07:47AM
Wednesday, 17 August 2022
Show HN: Fuzzyhome – A Fast Fuzzy Finding New-Tab Page https://bit.ly/3QQJMqJ
Show HN: Fuzzyhome – A Fast Fuzzy Finding New-Tab Page Fuzzyhome is a lightweight new-tab page that lets you very quickly fuzzy find links and navigate to a result. If there are no matching links, you can use your query to perform a search with your search engine of choice. You can also append your query to arbitrary links with a bang-like feature. Cohesive usage instructions can be found on the GitHub page: https://bit.ly/3ArmzGn Fuzzyhome is free, entirely client-side, and statically hosted with Cloudflare pages. No sign in or account required. Export your links to a JSON file in the settings menu to keep a backup. Links are stored in IndexedDB and the bundle is cached with service workers for fast loading. Thanks for checking it out, consider giving it a star :) https://bit.ly/3A1ZWqB August 18, 2022 at 01:04AM
Show HN: Match(it): A C++17 pattern-matching library with lots of good stuffs https://bit.ly/3pt2pWd
Show HN: Match(it): A C++17 pattern-matching library with lots of good stuffs A lightweight single-header pattern-matching library for C++17 with macro-free APIs. Try it at https://bit.ly/3K2JGKt https://bit.ly/3K4pVCf August 17, 2022 at 02:36PM
Show HN: Authorizer 1.0 https://bit.ly/3bY2cr1
Show HN: Authorizer 1.0 I am excited to announce the stable version of https://bit.ly/3wyvJyD with the most significant updates . The most complex part of your application, i.e. auth has never been this simple in the open-source space before. Bring your database and have auth layer ready for the application within minutes . Amazing Features of Authorizer Support for 11+ databases | Sign-in / Sign-up with email ID and password | Password-less login with magic link login | Social logins (Google, Github, Facebook, LinkedIn, Apple more coming soon) | Secure session management | OAuth2 and OpenID compatible APIs | APIs to update profile securely | Forgot password flow using email | Role-based access management | Multi factor authentication | Email templating | Webhooks | For more information check: Website: https://bit.ly/3wyvJyD | Docs: https://bit.ly/3pnMus8 | Github: https://bit.ly/3AtqDpG | React SDK: https://bit.ly/3wcL7At | Javascript SDK: https://bit.ly/3JYsgPe | Youtube: https://youtube.com/playlist?list=PLSQGbUjHc6bpaAgCiQPzNxiUP... | Examples: https://bit.ly/3AsrPcR | Discord: https://bit.ly/3bYM60i | Github Sponsorship: https://bit.ly/3pnMuIE | Buy me Coffee: https://bit.ly/3bZckzJ | https://bit.ly/3AtqDpG August 17, 2022 at 02:01PM
Show HN: I created a site you can upload a photo a day https://bit.ly/3zXzZbE
Show HN: I created a site you can upload a photo a day a photo is the theme of the day, and everyday deserves a theme. It's kind of interesting to see the world with photos in a simple way daily. so I built this mini site. what's your photo today? https://bit.ly/3waZ0yR August 17, 2022 at 10:49AM
Show HN: I made a web-based notepad with a built in unit calculator https://bit.ly/3AtWXsy
Show HN: I made a web-based notepad with a built in unit calculator Hi HN It also supports percentages, dates and variables. I've been working on this alone for a few years now, so would love to get some feedback. https://bit.ly/3bYLxUb August 17, 2022 at 10:01AM
Show HN: Android app that helps businesses and professionals saved 230K+ hours https://bit.ly/3we6QrB
Show HN: Android app that helps businesses and professionals saved 230K+ hours https://bit.ly/3w9M2BB August 17, 2022 at 07:43AM
Tuesday, 16 August 2022
Show HN: A network for Americans who can't afford health insurance https://bit.ly/3QxgHkn
Show HN: A network for Americans who can't afford health insurance Hey HN, launched this recently and looking for early feedback. The problem to solve: In the US, patients who can't afford health insurance are regularly charged the highest prices for healthcare - prices that are deliberately inflated by 2x-4x above market. But theoretically they should be getting the best prices, because they are paying without the expenses and delays of insurance claims. However, insurance contracts are written in a way that prevents anyone outside a network from getting better prices than insurers. The Pocketero solution: An affordable non-insurance network for people who pay out of pocket for healthcare, especially those who can't afford health insurance. Network members get the best prices from network providers. If you have any comments about the design, implementation, business model, etc. - please share your thoughts! https://bit.ly/3STkme3 August 16, 2022 at 09:41PM
Show HN: Hire experts in popular SaaS/no-code tools https://bit.ly/3Pw9Pm5
Show HN: Hire experts in popular SaaS/no-code tools Hi HN We have built Heep to help startups take advantage of the best no-code/SaaS tools and increase their ROI on the tools they already are paying for. It's super simple - we match you with experts in popular tools like Notion, Bubble, Webflow for any kinds of project. So far we had over 200 companies build all kind of staff with makers on Heep - from improving their internal ops with automations (Zapier, Airtable) to building full scale MVPs (Bubble, Glide). We focus on curating talent and making it easy for anyone to navigate the no-code space. We have messenger and payments built-in inside the platform and adding simple contracts soon. On the talent side we are allowing you to monetise your expertise in any SaaS/no-code tool and earn $2K+ per month. Right now we have over 300 experts on the platform across 40+ tools. We are still working on making the experience smooth for customers and the main point of launching here is to get feedback on what could be done better on finding/hiring an expert. Would love to discuss what do you like/dislike about existing freelance platforms out there. Love from Kyiv/Berlin https://bit.ly/3SOYbWp August 16, 2022 at 07:22PM
Subscribe to:
Posts (Atom)