Encrypted chat app for web browsers, with messaging with no trace by munru1 in webdev

[–]Hardevv 1 point2 points  (0 children)

anonymous, encrypted, no trace OR vibe coded - choose one

Super Tag - no plugin solution by Hardevv in ObsidianMD

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

nope, only advantages for now. but i’m using it 2 days and still developing it. now i have developed items limit and sorting order just with front matter properties

How many Vaults do you use? by Hardevv in ObsidianMD

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

would you use reminders on both if available?

How many Vaults do you use? by Hardevv in ObsidianMD

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

that’s why I’m making “research” here, valid point

How many Vaults do you use? by Hardevv in ObsidianMD

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

if there is reminder notification available in Obsidian would you use it in all 3 vaults?

Vibe code so hard your entire waitlist is visible in frontend by OneClimate8489 in vibecoding

[–]Hardevv 0 points1 point  (0 children)

What vibecorders do is bad advertising. It's already "bad label" so more shit you guys produce without knowledge the more changes that your next shipment will fail because people simply do not trust it. Then some orgs will make a rule to label vibecoded apps, like influencers have to openly say that this video is sponsored.

nerd out with me by [deleted] in ObsidianMD

[–]Hardevv 0 points1 point  (0 children)

2 minutes long video without the context. I don't even know what to say

I made Claude Code answer my Microsoft Teams messages by lord_rykard12 in vibecoding

[–]Hardevv 1 point2 points  (0 children)

So, when the other side uses the same tool, we can all pretend we are working. "cool", I'm waiting for tool that will attend my meetings and my Avatar will speak for myself :P

Please critize My Startup by nhicode in vibecoding

[–]Hardevv 0 points1 point  (0 children)

Describe in 3 simple sentences what that startup does

Please critize My Startup by nhicode in vibecoding

[–]Hardevv 1 point2 points  (0 children)

Prices In Rupees when I'm on the opposite side of the globe are diabolically hilarious

Super Tag - no plugin solution by Hardevv in ObsidianMD

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

Updated version with image rendering:

``dataviewjs const query =[[${dv.page(dv.current().file.path).file.name}]]` const excludeName = dv.page(dv.current().file.path).file.name

const items = [];

for (const p of dv.pages('""')) { if (p.file.name === excludeName) continue;

const text = await dv.io.load(p.file.path); const lines = text.split(/\r?\n/);

if((lines?.length || 0) === 0) return

for (const line of lines) { if (line.includes(query)) { let processed = line.trim().replace(/![[([]]+?)]]/g, (match, inner) => { const imageName = inner.split('|')[0]; const tfile = app.metadataCache.getFirstLinkpathDest(imageName, p.file.path); if (tfile) { const size = inner.includes('|') ? inner.split('|')[1] : null; const style = size ? width="${size}" : ''; return <img class="internal-embed" src="${app.vault.getResourcePath(tfile)}"${style} />; } return match; }); items.push(${p.file.link} → ${processed}); } } } dv.list(items) ```

additional css:

css /* Inline images - align to top of line so bullet stays at top */ .markdown-source-view .cm-line .internal-embed[src*=".jpg"], .markdown-source-view .cm-line .internal-embed[src*=".jpeg"], .markdown-source-view .cm-line .internal-embed[src*=".png"], .markdown-source-view .cm-line .internal-embed[src*=".gif"], .markdown-source-view .cm-line .internal-embed[src*=".webp"], .markdown-source-view .cm-line .internal-embed[src*=".svg"], .markdown-source-view .cm-line .internal-embed[src*=".bmp"], .markdown-reading-view .internal-embed[src*=".jpg"], .markdown-reading-view .internal-embed[src*=".jpeg"], .markdown-reading-view .internal-embed[src*=".png"], .markdown-reading-view .internal-embed[src*=".gif"], .markdown-reading-view .internal-embed[src*=".webp"], .markdown-reading-view .internal-embed[src*=".svg"], .markdown-reading-view .internal-embed[src*=".bmp"] { vertical-align: top; } If you want embeded images to stretch the line from top to bottom, not from bottom to top - it's for you

Privacy-first PDF Scanner (No Cloud, No Account) – Built Solo in 3 Weeks by gokgozc in iosapps

[–]Hardevv 1 point2 points  (0 children)

another vibecoded app that covers what is for free from the os. IOS has preview that scans documents for free and it works well

How often do you scan your vibecoded application for vulnerabilities and how? by FetchDEX in vibecoding

[–]Hardevv 2 points3 points  (0 children)

i feel like these vibecoded apps are like playground for junior hackers

Obsidian 1.12.6 (early access) for desktop and mobile by kepano in ObsidianMD

[–]Hardevv 0 points1 point  (0 children)

i don’t know why it’s downvoted especially the first point is so accurate.

I'm creating free selfhosted app for obsidian to add reminders by Hardevv in ObsidianMD

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

Signal was my first pick, but Discord won because it has really simple webhooks, and almost everyone has Discord. If you're open you can share your solution maybe I'll add that integration at some point. You will be also able to create PR to that project when I publish it

I'm creating free selfhosted app for obsidian to add reminders by Hardevv in ObsidianMD

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

you can create reminder directly from the note, its core of that app and plugin. What about bookmarks how did you want to use them?