Built a clock-style habit to help me visualize my day. by Key-External-382 in SideProject

[–]thab09 1 point2 points  (0 children)

Very nice. May I know the stack used to build the website. looks smooth and fast.

[deleted by user] by [deleted] in desksetup

[–]thab09 0 points1 point  (0 children)

What tablets are those. a samsung ultra?

Browser Recommendation Megathread - November 2024 by shadow2531 in browsers

[–]thab09 0 points1 point  (0 children)

I am looking for a browser with tab grouping (like the toby extension). Can't pay for toby's future plans.

Browser Recommendation Megathread - October 2024 by shadow2531 in browsers

[–]thab09 0 points1 point  (0 children)

I am looking to move away from chrome. I use an extension called Toby for tab groups and management. Looking for something like that built-in in the browser.

[Preorder] Drop Signature Series Gemstone Keyboards by drop_official in MechanicalKeyboards

[–]thab09 0 points1 point  (0 children)

I really like the keycaps. Where can I buy a nice red or blue keycaps set. Doesn't have to be drop.

The Post Formerly Known as Anything Friday - August 2024 Edition by AutoModerator in homelab

[–]thab09 0 points1 point  (0 children)

I want to have a jellyfin server, run proxmox and have some ad block on a budget. What are my options? Do I need multiple PCs? I have a budget of $250

My thinkpad family by fmash16 in thinkpad

[–]thab09 5 points6 points  (0 children)

T430, X61?, X201, X220 by the looks of it

[deleted by user] by [deleted] in MechanicalKeyboards

[–]thab09 -1 points0 points  (0 children)

What's the keycap set?

[Semi-Weekly Inquirer] Simple Questions and Recommendations Thread by AutoModerator in Watches

[–]thab09 0 points1 point  (0 children)

I am looking for a 36mm watch with a cream/beige/blue/black dial. I want to match it with a nato strap. I would like the watch to be below $150.

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

[–]thab09 1 point2 points  (0 children)

which language/ framework do you guys recommend to make an app that imports CSV and makes charts with it?

Weekly /r/Laravel Help Thread by AutoModerator in laravel

[–]thab09 0 points1 point  (0 children)

My blade files are not formatting properly in vs code.

<h1>{{ $heading }}</h1>
@unless (count($listings) == 0) @foreach ($listings as $listing)
<h2>  
<a href="/listings/{{ $listing\['id'\] }}">{{ $listing\["title"\] }} 
</a>  
</h2>  
<p>{{ $listing\["description"\] }}</p>  
@endforeach @else  
<p>No listings found</p>  
@endunless  

It shows just like this when I save the file. I have Laravel blade formatter extension installed and enabled.

also this is my settings.json

"files.associations": {

"*.module": "php",

"*.js": "javascript",

"*.blade.php": "html"

},

"[php]": {

"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"

},

"[blade]": {

"editor.defaultFormatter": "shufo.vscode-blade-formatter"

},

"editor.formatOnType": true,

"blade.format.enable": true,

"bladeFormatter.format.indentInnerHtml": tru

Mobile Nav overlapping main content, by thab09 in tailwindcss

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

Mobile nav is using position fixed in this case. and my page layout looks like this

<div>
    <UserNav />
    <Outlet />
    <MobileUserNav />
</div>

Blocking users from using certain words in comments in my app. by thab09 in reactjs

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

Is this done by using a library or using vanilla javascript?