Few links to share
Originally published on iHateReading
canine the open source hosting platform at cheaper cost then heroku, netlify, it runs on docker container and compatible with
Bana UI: after so long I've witness a react-native UI library, we have lot of options in website development but very less in react-native compatibale with Expo as well.
Hono is catching attention in building full-stack applications when comes to frameworks, I am using Next.js with server side API and firebase and sometimes supabase API as full-stack tech-stack and now as an alternative to nextjs and vercel ecosystem developers are looking for options and soon I'll also cover a nice blog on Hono.js
BKND, yeah that is the name of the firebase/supabase lightweight alternative, see when it comes to alternatives we often become critical as it's a pain in the ASS (sorry for the word) to change the tech-stack but we have to do what's necessary and choosing self hosting cheap alternatives are good.
Most of the technical and frontend documentation websites are either using github markdown pages or using a tool like mintlify. As a developer, documentation website are nothing much different than a content based platform and gitbook is among one of those popular list.
Some web3 information, wagmi.sh is improved and released new version, it's compatible with React, Vite and Next.js works well with ether.js the most used npm module for frontend web3 applications even for react-native.
Rust is again the second most used programming language in web3 ecosystem after solidity and of course, javascript, anyone looking to learn Rust if you are a rust developer you might want to check out this newsletter,👉🏻 this week in Rust.
Few alternatives in the category of text editors, Tiptap, Editorjs, Lexical and Quill
CSS new if condition by Google, code below, read details
button {
aspect-ratio: 1;
width: if(media(any-pointer: fine): 30px; else: 44px);
}
Free Next.js SAAS boilerplate that supports, auth, database, i18n and more. When it comes to free boilerplates, do check our website store, where we provide templates, Nextjs and Tailwind with Firebase along at decent price 😁
Few DSA question to bore your mind, yesterday I was solving sudoku we got int he newspaper everyday, yeah everyday and post that I want to know program for sudoku might looks like. You will learn recursion along with working with 2D arrays with rows and colums.
function isValid(board, row, col, num) {
for (let x = 0; x < 9; x++) {
if (
board[row][x] === num || // Check row
board[x][col] === num || // Check column
board[3 * Math.floor(row / 3) + Math.floor(x / 3)]
[3 * Math.floor(col / 3) + x % 3] === num // Check box
) {
return false;
}
}
return true;
}
function solveSudoku(board) {
for (let row = 0; row < 9; row++) {
for (let col = 0; col < 9; col++) {
if (board[row][col] === 0) {
for (let num = 1; num <= 9; num++) {
if (isValid(board, row, col, num)) {
board[row][col] = num;
if (solveSudoku(board)) {
return true;
}
board[row][col] = 0; // backtrack
}
}
return false; // no valid number found
}
}
}
return true; // puzzle solved
}
Developing a Color Seach Engine that somehow understands hex or converts into human english or language, this is what a developer tried to develop a color search engine, one good extended idea I've around this is to bring search engine closer to human language using AI within the browser. One github example for reference for color search engine.
Let's keep it short, see you in the next one
iHateReading
Top comments (0)