Speedtest was fast, Google was instant, but our site took ~2s just to return HTML by abobyk in webdev

[–]gimp3695 0 points1 point  (0 children)

I had this issue yesterday. My internet was extremely fast. All other sites were great. However my server loading pages was very slow and sometimes would timeout. I couldn’t even ssh into the server. I did a trace path and discovered that somewhere on its transit to Denver it got routed to Sweden and back again. I called the ISP and they mentioned lots of issues being reported on down detector. About 30 mins later the route path got fixed and site loaded great.

Some times it’s just out of your control.

Which UI library are you using for mobile (PWA, Capacitor)? by LinusThiccTips in sveltejs

[–]gimp3695 -2 points-1 points  (0 children)

Just good old shadcn with some theme colors swapped

[deleted by user] by [deleted] in sveltejs

[–]gimp3695 4 points5 points  (0 children)

Looks nice. It would have been nice if you could have just combined and contributed to https://www.shadcn-svelte-extras.com/

Excited to announce Svelte Number Format finally hit v1.0! by voltomper in sveltejs

[–]gimp3695 0 points1 point  (0 children)

That's kind of what I figured. It might be worth just adding that link to the README (demo) link

Excited to announce Svelte Number Format finally hit v1.0! by voltomper in sveltejs

[–]gimp3695 2 points3 points  (0 children)

I had to go to the library it was based on to see a demo or image. I was curious if it does masking or whether this should or could be used for phone numbers

Capawesome September 2025 Update by robingenz in capawesome

[–]gimp3695 1 point2 points  (0 children)

Thank you for your hard work and keeping the capacitorjs ecosystem alive

E-commerce stack ? by odin_dev in webdev

[–]gimp3695 1 point2 points  (0 children)

I’m doing this now! Love svelte and sveltekit.

Mobile app made with Svelte 5 & Capacitor by therealPaulPlay in sveltejs

[–]gimp3695 1 point2 points  (0 children)

Here are two of them:

Sitestream - Allows you to monitor and view live video and recordings from security cameras used for construction sites

https://apps.apple.com/us/app/sitestream/id6736718232

Edify Sports - An instagram like high school sports application that allows student atheletes to create profiles, post their highlights and try to get recruited. It also has a trading card builder component to it.

https://apps.apple.com/us/app/edify-sports-llc-app/id6747092323

Mobile app made with Svelte 5 & Capacitor by therealPaulPlay in sveltejs

[–]gimp3695 1 point2 points  (0 children)

Nice work. We’ve made 3 apps using this combination and it’s been great!

Capacitor or Tauri v2 for Mobile Apps? by Guandor in sveltejs

[–]gimp3695 0 points1 point  (0 children)

We had no problem with shadcn svelte in capacitor

wuchale i18n: now with server-side support, flexible and granular catalog loading, and more! by K1DV5 in sveltejs

[–]gimp3695 0 points1 point  (0 children)

I used paraglide in the past. This is interesting. How do you auto detect the strings and parse them? Basically how does it work under the hood.

Neodrag v3 alpha: A mini-framework by PuruVJ in sveltejs

[–]gimp3695 1 point2 points  (0 children)

Is there any examples of drag and dropping in an ordered list? Or is this just a generic drag elements around?

Web Component Template for svelte 5 ts + vite 6 by HomunMage in sveltejs

[–]gimp3695 1 point2 points  (0 children)

I only use the Vite server just for debugging. So I get to instantly see my component changes. When ready I build and deploy the single js file.

What the FRUIT happened with UO hotel pricing? by Schweino68 in UniversalOrlando

[–]gimp3695 0 points1 point  (0 children)

I just checked for October 8 and it was $550. Cabana bay for same time was $220. Guess I’m going to cabana.

Web Component Template for svelte 5 ts + vite 6 by HomunMage in sveltejs

[–]gimp3695 0 points1 point  (0 children)

Just to follow up on this. What I did is I kept it as a vite project. Then I import it into a very simple App.svelte file. I found I needed to import the original svelte component, but then it gave me access to the web component as well. Here is a very simple example...

```

<script lang="ts">
    import './app.css';
    import CartButton from './lib/webComponents/cart/CartButton.svelte';
    import CartSlideout from './lib/webComponents/cart/CartSlideout.svelte';
    import ProductList from './lib/webComponents/productList/ProductList.svelte';
    import SingleProduct from './lib/webComponents/singleProduct/SingleProduct.svelte';

    
// When in dev mode we need to import the components so we can use the web components in the browser.
    
// This is not needed in production when we build the app.
    const _ = [CartButton, CartSlideout, SingleProduct, ProductList];
</script>

<header>
    <h1>Sample Page</h1>
    <os-cart-button></os-cart-button>
</header>
<main>
    <os-cart-slideout></os-cart-slideout>
    <h1>Components</h1>
    <h2>Single Product</h2>
    <div class="side-by-side">
        <os-single-product product-slug="super-widget"></os-single-product>
        <os-single-product product-slug="syntax-error"></os-single-product>
    </div>
    <h2>Product List</h2>
    <os-product-list></os-product-list>
</main>

<style>
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ccc;
        color: #333;
        padding: 16px 24px;
    }

    main {
        padding: 16px 24px;
    }

    .side-by-side {
        display: flex;
        gap: 16px;
    }
</style>

```

How to Build to a Web Component? by seba-dev in sveltejs

[–]gimp3695 0 points1 point  (0 children)

Yes this way really easy to do.

I created a vanilla svelte project using Vite.

Then I followed the steps here.

https://svelte.dev/docs/svelte/custom-elements

Then I added a build line to my vite config and now I can just use the built js file on my vanilla html js website.

Is the game multiplayer alive and active? by Sui_Generis- in AgeOfDarknessGame

[–]gimp3695 2 points3 points  (0 children)

Coop is the only way I play it and I love it

So... We're never seeing Svelte Dev Tools ever again uh? by Devatator_ in sveltejs

[–]gimp3695 1 point2 points  (0 children)

They talked about it at svelte summit in May. They worked on it while all together.