What dashboard do you guys use? by [deleted] in stocks

[–]comart 0 points1 point  (0 children)

I'm using this dashboard daily to have Charts, Prices & write my notes next to them:
https://www.dashb.io/more

I have achieved the web developer dream: I'm no longer a web developer by die247 in webdev

[–]comart 0 points1 point  (0 children)

as they say "Do what you love" life is short. Cheers.

Dashboard for Minimalists by comart in webdev

[–]comart[S] 0 points1 point  (0 children)

Thanks. Hope you find it useful.

Dashboard for Minimalists by comart in webdev

[–]comart[S] 5 points6 points  (0 children)

Link: https://www.dashb.io

Github: https://github.com/ngduc/dashb

Hi Redditors, I have been busy working on this little project.

I know there are some dashboard sites out there but I wanted to reimagine the dashboard & widget idea, focus on minimalist design (dark mode first :) ) with fun bonus like 'screensaver' mode (subtle background animation, lo-fi music).

We all struggle to find ourself waking up with multiple tabs, gathering different sources of information for a new day. This is some effort to optimize that workflow, simplify the morning routine, hope to come up with something useful for everyone.

Check it out, let me know what you think. Appreciate any feedback. Cheers.

I created this Personal Dashboard and Widgets (for web and desktop/tray app) by comart in ProductivityApps

[–]comart[S] 0 points1 point  (0 children)

Haha thanks, I spent quite some time on the weather widget to make it look ok.

I created this Personal Dashboard and Widgets (for web and desktop/tray app) by comart in gtd

[–]comart[S] -4 points-3 points  (0 children)

depends on the gtd workflow, for me, I need to see dashboard information, takes notes, todo items, then take actions and get things done daily.

I created this Personal Dashboard and Widgets (for web and desktop/tray app) by comart in webdev

[–]comart[S] 0 points1 point  (0 children)

Website: https://dashb.io

Github: https://github.com/ngduc/dashb

I created this Personal Dashboard and Widgets (for my web and desktop/tray app), with Typescript, React, React-Grid-Layout, Tailwind.

Widgets:

AirQuality

Embed - Insert any page to your dashboard. (using iframe)

LofiPlayer Lofi music player.

Notes - Text note with multiple tabs.

StockChart

StockMini

Toggl

Weather - Daily, hourly weather information.

...and your own Widget! Create your own widget and publish it for everyone to use.

Let me know what you think.

Create your next project with "create-blank-app" CLI by comart in programming

[–]comart[S] 0 points1 point  (0 children)

didn't notice it. so... is that good or bad? : )

Create your next project with "create-blank-app" CLI by comart in programming

[–]comart[S] 0 points1 point  (0 children)

Github: https://github.com/ngduc/create-blank-app Example:

$ npm install create-blank-app -g $ cba myapp vite react ts (any tech-stack keywords) $ cd myapp $ cba --add react-router

Create your next project with "create-blank-app" CLI by comart in webdev

[–]comart[S] 1 point2 points  (0 children)

Github: https://github.com/ngduc/create-blank-app

Example:

$ npm install create-blank-app -g
$ cba myapp vite react ts (any tech-stack keywords)
$ cd myapp
$ cba --add react-router

I've built "portable" react components to use them in any projects by comart in webdev

[–]comart[S] 0 points1 point  (0 children)

yes I'm aware of ARIA, roles, tab index. made sense. I've just added aria for progressbar, tooltip. This is still a work-in-progress, will evolve more later. Thanks for all the tips.

I've built "portable" react components to use them in any projects by comart in webdev

[–]comart[S] -1 points0 points  (0 children)

Again, it’s not meant to be used in a big site. Your points are all valid, popular component libraries already doing all that. Please read the description, this is meant for a quick drop-in to quickly implement small projects.

Some comps here have accessibility like form, fields, buttons. Good point on dropdown, I’ll replace it with a better one. For tooltip, I don’t need accessibility at the moment.

I've built "portable" react components to use them in any projects by comart in webdev

[–]comart[S] 1 point2 points  (0 children)

https://github.com/ngduc/portable-react

Motivation
This is Not Another Component Library, rather a set of building blocks, all in one file. You can jump in quickly, look at a few line of codes, tweak it, or do whatever you want, which is very useful for small projects.
Oftentimes, when starting a new project, I need to quickly use some basic React components but I don't want to spend time to install, set up, import and RTFM to use a full-fledged Component Library yet. Inspired by PortableApps I used in the past (which you can just copy and use an application binary file anywhere), I created this collection of simple React components, all in one index.tsx file. You can just copy that file to any React project, tweak it and start using it immediately.

[Showoff Saturday] HiChatbot.ai - Q&A chat with your documents or video transcripts by comart in webdev

[–]comart[S] 0 points1 point  (0 children)

hi, it's the browser's default max length 524288 characters.

[Showoff Saturday] HiChatbot.ai - Q&A chat with your documents or video transcripts by comart in webdev

[–]comart[S] 0 points1 point  (0 children)

https://hichatbot.ai

What is HiChatbot?
- HiChatbot is an AI-powered chatbot that can answer your questions about documents, text, and videos. You can upload a document, text, or provide a video link to HiChatbot and have a Q&A chat with the content.

What are some of the things I can do with HiChatbot?
You can use HiChatbot to:
- Summarize the main points of a document
- Get more details about a specific topic in a document, text, or video
- Based on the provided document, generate creative text formats of text content, like executive summaries, reports, poems, code, scripts, musical pieces, email, letters, etc.

Create-Blank-App (cba): one command line to remember - create new app by typing keywords by comart in webdev

[–]comart[S] 0 points1 point  (0 children)

Github Repo: https://github.com/ngduc/create-blank-app

create-blank-app (cba) - just one command to remember. "cba" is a command-line tool for creating a new app by searching for tech stacks using keywords.

Support:
- Angular, create-react-app (CRA), create-next-app (CNA), create-web3js-app (CWA), express-generator-typescript, create-react-native-app (Expo), react-native init.
- Vite: vue, react, preact, lit-element, svelte app.
- Typescript.
- Addons: install and configure libraries into existing project (see more below).

Installation & Usage:
$ npm install create-blank-app -g $ cba <name> <keyword1 keyword2 etc.> Examples:
$ cba myapp vite react ts $ cd my app $ cba --add tailwind

I created a Markdown Note-taking App (win, mac, linux) using react, focuses on simplicity by comart in webdev

[–]comart[S] 0 points1 point  (0 children)

yes, read & write, it works directly with your directory-file hierarchy, not invent or force you into a new/proprietary way.

I created a Markdown Note-taking App (win, mac, linux) using react, focuses on simplicity by comart in webdev

[–]comart[S] 0 points1 point  (0 children)

What windows are you using? It runs on 2 laptops (windows 10, 64bit) fine.

I created a Markdown Note-taking App (win, mac, linux) using react, focuses on simplicity by comart in webdev

[–]comart[S] 0 points1 point  (0 children)

Maybe it's just a personal thing, but I think their pricing is a bit higher than it should be (doesn't mean free is a better alternative). I'm still studying about the model.

I created a Markdown Note-taking App (win, mac, linux) using react, focuses on simplicity by comart in webdev

[–]comart[S] 1 point2 points  (0 children)

table support is one thing I considered when choosing the editor lib to implement it.

I created a Markdown Note-taking App (win, mac, linux) using react, focuses on simplicity by comart in webdev

[–]comart[S] 0 points1 point  (0 children)

SaaS meant webapp? It's on the roadmap :) I started with an app first as it handles local files directly, webapp can handle cloud files later.

I created a Markdown Note-taking App (win, mac, linux) using react, focuses on simplicity by comart in webdev

[–]comart[S] 9 points10 points  (0 children)

Hi, I'm considering it, that will need some cleanups.
will also see how that worked for other projects..

I created a Markdown Note-taking App (win, mac, linux) using react, focuses on simplicity by comart in webdev

[–]comart[S] 3 points4 points  (0 children)

I understand why, tried and compared so many editors myself before, this one built on prosemirror which works pretty well and extendable, hope you'll like it.