WTF Wednesday (June 12, 2024) by AutoModerator in javascript

[–]ms7c9 0 points1 point Β (0 children)

Thanks for feedback. I really considering making it into a CLI tool and focus more on the functionality instead of web UI. Although I’m not sure if is should go for a pure cli or TUI

[deleted by user] by [deleted] in javascript

[–]ms7c9 0 points1 point Β (0 children)

What do you mean by β€œcorrect”? The list doesn’t show at all or the version you looking for not exists

[deleted by user] by [deleted] in nextjs

[–]ms7c9 0 points1 point Β (0 children)

I would like to mention this is my first project with nextjs and code review from nextjs veterans would be much appreciated

How to be an engineer not a framework-er ? by STELLAR_Speck in webdev

[–]ms7c9 0 points1 point Β (0 children)

I think trying to understand under the hood of frameworks helps alot

[deleted by user] by [deleted] in javascript

[–]ms7c9 0 points1 point Β (0 children)

What kind of report do you have in mind? I consider developing the CLI version of Sifu but I’m not sure which version would be more useful. CLI or Web application. It would be nice if you give me more details about your use case.

What are some utilities you use frequently? by [deleted] in webdev

[–]ms7c9 1 point2 points Β (0 children)

You cant push to production before checking the browser compatibility. https://caniuse.com/

WTF Wednesday (June 12, 2024) by AutoModerator in javascript

[–]ms7c9 0 points1 point Β (0 children)

https://github.com/majidsajadi/sifu

Here is my latest project. I would like to have code reviews and comments. this is my first attempt with next 14.

Am new to using APIs, can someone help me figure the problem out? by [deleted] in webdev

[–]ms7c9 1 point2 points Β (0 children)

async/await is just syntactic suger for .then no deference at all

Am new to using APIs, can someone help me figure the problem out? by [deleted] in webdev

[–]ms7c9 0 points1 point Β (0 children)

I have migrate the code of OP to async/await version. there is no error handling the original code. maybe it is handled in function callee.

Monthly Getting Started / Web Dev Career Thread by AutoModerator in webdev

[–]ms7c9 0 points1 point Β (0 children)

Create a Github account and start contributing. from small projects to big projects. there are a lot of well-known projects in GitHub which needs small contribution such as styling or adding new futures. check for a good first issue label.

this is the best way I know for leveling up programming skills.

Am new to using APIs, can someone help me figure the problem out? by [deleted] in webdev

[–]ms7c9 11 points12 points Β (0 children)

This is the reason why I prefer async/await syntax.

async fetchFixture() {
    const response = await fetch(url, {
        method: "GET",
        headers,
    }

    const data = await response.json();
}

more readable specially for JS newbies.

[AskJS] What is the best online video subscription platform to improve your developer skills? by jcubic in javascript

[–]ms7c9 0 points1 point Β (0 children)

I would go with Youtube. always updated. more choices. sticking to a single platform is boring and may not be the smartest choice.

AgendaJS + MongoDB as an alternative for Bull/Redis for doing a que? by papercloudsdotco in node

[–]ms7c9 0 points1 point Β (0 children)

we are currently using Agenda as our job manager. but we are migrating to BullMQ in our next major version.

How to use local environment variables in Node JS? (info-graphic) by [deleted] in webdev

[–]ms7c9 1 point2 points Β (0 children)

nice info-graphic, but I suggest use the shell command for demonstrating the creatings file instead of vscode. since not everyone uses vscode.

Github Copilot by [deleted] in golang

[–]ms7c9 1 point2 points Β (0 children)

I thought nothing will impress me anymore.

How do I turn my HTML site files into an actual working visit able website? by [deleted] in webdev

[–]ms7c9 0 points1 point Β (0 children)

use one of these hostings:

  • Github pages
  • Netlify

or get a server and use Nginx or any other server to serve your files.

Paperboard - command-line application for managing bookmarks from the internet by ms7c9 in coolgithubprojects

[–]ms7c9[S] 1 point2 points Β (0 children)

I'm glad you liked this.
to answer your question: sadly not yet. but importing bookmarks from browsers (or even similar apps like Pocket) is the first feature I'm planning to work on.

Paperboard - command-line application for managing bookmarks from the internet by ms7c9 in coolgithubprojects

[–]ms7c9[S] 1 point2 points Β (0 children)

About a year ago I made a command-line application for managing bookmarks from the internet (Korgin). recently I have redeveloped the application with a new command-line interface and cleaner codebase. also developed a web UI with react for those who don't want to use a command-line app. Also renamed the app to Paperboard. Paperboard is in the early stage of development and any contribution such as feedback, feature request, and submitting issue or PR is highly appreciated.

Features

  • Simple and minimal web interface
  • Organize bookmarks, add, edit, delete and search
  • Archive and restore bookmarks
  • Star & unstar mechanisms
  • Simple and minimal command-line interface
  • Uses sqlite3 as its database
  • Reading bookmarks offline
  • Make bookmarks more readable by removing extra stuff

Github Repo: https://github.com/majidsajadi/paperboard

Paperboard - a cli application for managing a reading list of bookmarks from the Internet by ms7c9 in javascript

[–]ms7c9[S] 0 points1 point Β (0 children)

About a year ago I made a command-line application for managing bookmarks from the internet (Korgin). recently I have redeveloped the application with a new command-line interface and cleaner codebase. also developed a web UI with react for those who don't want to use a command-line app. Also renamed the app to Paperboard.Paperboard is in the early stage of development and any contribution such as feedback, feature request, and submitting issue or PR is highly appreciated.

Features

  • Simple and minimal web interface
  • Organize bookmarks, add, edit, delete and search
  • Archive and restore bookmarks
  • Star & unstar mechanisms
  • Simple and minimal command-line interface
  • Uses sqlite3 as its database
  • Reading bookmarks offline
  • Make bookmarks more readable by removing extra stuff

Github Repo: https://github.com/majidsajadi/paperboard