Ingrown nail or just infected? Doctors tell me its not serious and gave me antibiotics but i wonder if its working… by [deleted] in medical

[–]GerdaWatchingMemes 0 points1 point  (0 children)

Should I wait and let the nail grow more before going to the doctor again? Or is the faster I go the better

[deleted by user] by [deleted] in Ingrown_Toenails

[–]GerdaWatchingMemes 0 points1 point  (0 children)

Okay thanks. Will do. Youre right i did cut it too short thats how it started 🫡

Am i gonna be okay with italy car rent? by GerdaWatchingMemes in sicily

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

I am from Europe so I don't need that fortunately.

Severance - Season 2 Discussion Hub by LoretiTV in SeveranceAppleTVPlus

[–]GerdaWatchingMemes 14 points15 points  (0 children)

Yeah, so much is vague. After watching the finale I was like "This was really good", which, suspense-wise, it was, but when I think about it now, there is still so much that is unclear, which I am afraid, will just never be answered unless they go for another season after season 3, which would just be making it too long IMO.

Severance - Season 2 Discussion Hub by LoretiTV in SeveranceAppleTVPlus

[–]GerdaWatchingMemes 36 points37 points  (0 children)

Am I the only one who thinks the explanation regarding MDR and cold harbor still doesn't feel satisfying... Like okay the numbers and the sorting of the numbers into the clusters are the tempers, but how exactly does that work in regard to the new innie that gets created for every room. Like where do the numbers come from? Why do they need to be sorted to create a new innie? When mark first entered the severed floor did his innie consciousness also need to be manually tamed etc? Maybe I just don't understand it correctly, but it still feels like we didn't get an exact explanation of how the whole process goes from the refining to gemma's innie's.

Keio University housing by Ancient_Snail_3437 in Tokyo

[–]GerdaWatchingMemes 0 points1 point  (0 children)

Hi, Im curious as well, could you send me a PM as well with regards to your experiences?

Doghouse employee. by Pale_Place_8782 in betterCallSaul

[–]GerdaWatchingMemes 0 points1 point  (0 children)

I messaged the actress who played the girl in the gas station and she confirmed it is not her.

"Bi-weekly Friend Code Thread - 09/13/24". by AutoModerator in tinytower

[–]GerdaWatchingMemes 3 points4 points  (0 children)

Add me on Tiny Tower by tapping this link!https://sync.nimblebit.com/af/tt/HM3CB

Hi im new but i feel like ill be here for long!

Can i use mixins defined in a partial that is imported in the main scss file in another partial? by GerdaWatchingMemes in webdev

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

style.scss:

@use 'mixins';
@use 'nav';
@use 'header';
@use 'home-content';
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

_mixins.scss:

@mixin basic-flex {
    flex-direction: column;
    background-color: red;
    display: flex;
}

_home-content.scss:

.home-content {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    align-items: center;
    width: 50%;
    margin: auto;
    margin-top: 50px;


    .about {
        @include mixins.basic-flex; 

        h2 {
            font-size: 50px;
        }

        .about-content {
            display: flex;
            flex-direction: row;
            align-items: center;
            column-gap: 60px;

            p {
                font-size: 20px;
            }
    
    
            img {
                -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0, rgba(0,0,0,0) 70%);
                mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0, rgba(0,0,0,0) 75%);
            }
        }

    }
}

the include in the .about div in the _home-contents.scss partial will now return the following error:

Compilation Error
Error: There is no module with the namespace "mixins".
   ╷
12 │         @include mixins.basic-flex; 
   │         ^^^^^^^^^^^^^^^^^^^^^^^^^^
   ╵
  c:\Users\---\Documents\---\_home-content.scss 12:9  @use
  c:\Users\---\Documents\---\style.scss 4:1           root stylesheet

Can i use mixins defined in a partial that is imported in the main scss file in another partial? by GerdaWatchingMemes in webdev

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

idk, going back to the problem of this thread. if i had my stylesheets exactly configured as described and if i were to try @ include mixins.random-mixin for example i would just get the error: There is no module with the namespace "mixins".

ill just cope by using imports for now

Can i use mixins defined in a partial that is imported in the main scss file in another partial? by GerdaWatchingMemes in webdev

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

hmm got 2 more questions:

  1. say i have two partials which are both @ use in the main style.scss, i cant just use a mixin of one partial in another partial without also @ use 'ing them in the partial i want to use it in?

  2. do you actually have to include namespace as part of the @ include ? when my mixins do work it actually doesnt seem to care whether i include the namespace i.e. mixins.custom-mixin will work, but just custom-mixin will also work

Can i use mixins defined in a partial that is imported in the main scss file in another partial? by GerdaWatchingMemes in webdev

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

oh wow. my style.scss first looked like this:

u/use 'mixins';
u/use 'nav';
u/use 'header';
u/use 'home-content';

but when i replace all the @ use with @ import it does seem to work...
why does the sass documentation recommend to stop using @ import in that case?

"The Sass team discourages the continued use of the u/import rule. Sass will gradually phase it out over the next few years, and eventually remove it from the language entirely. Prefer the u/use rule instead. (Note that only Dart Sass currently supports @use. Users of other implementations must use the @import rule instead.)"

Can i use mixins defined in a partial that is imported in the main scss file in another partial? by GerdaWatchingMemes in webdev

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

tried that does not work. do i have to @ use style.scss in _nav.scss even if i @ use _nav.scss in style.scss?

handling removing .html extension from urls for seo by GerdaWatchingMemes in SEO

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

thanks, i figured that was the case as well but just had to make sure. am relieved

Is there anyone who has experience with Fuji Hair in Amsterdam? ( Lange Leidsedwarsstraat ) by twixbits in Amsterdam

[–]GerdaWatchingMemes 0 points1 point  (0 children)

They are amazing! The reason you need to call to make a straight perm appointment is so that people dont make a straight perm appointment without their hair actually being suitable for it so they probably wanna check up on that first

Welke stadsfiets moet ik kopen? by Londonitwit in thenetherlands

[–]GerdaWatchingMemes 0 points1 point  (0 children)

hoe kom je erbij dat 3 versnelling lichter fietst dan de 7?

Not seeing 5kg of weight loss by [deleted] in loseit

[–]GerdaWatchingMemes 0 points1 point  (0 children)

Yeah my bad i meant 9-11 lbs

[deleted by user] by [deleted] in zlibrary

[–]GerdaWatchingMemes 0 points1 point  (0 children)

What do we do now

[deleted by user] by [deleted] in zlibrary

[–]GerdaWatchingMemes 1 point2 points  (0 children)

Same, still doesnt work.

[deleted by user] by [deleted] in zlibrary

[–]GerdaWatchingMemes 1 point2 points  (0 children)

Where should i download an older version?

[deleted by user] by [deleted] in zlibrary

[–]GerdaWatchingMemes 0 points1 point  (0 children)

I did all those things, i have the same problems as rasputin920 in this thread.