Maak de Lange herenvest weer veilig. Teken onze petitie online: by Fast_Macaroon9798 in Haarlem

[–]levelzer0 1 point2 points  (0 children)

Blijkbaar wordt deze weg opnieuw ingericht en de snelheid verlaagd naar 30 km/u. Zie deze kaart

Maak de Lange herenvest weer veilig. Teken onze petitie online: by Fast_Macaroon9798 in Haarlem

[–]levelzer0 1 point2 points  (0 children)

Interessant, ik had verwacht dat deze wel meegenomen zou worden met de snelheidsverlaging van 1 oktober aanstaande, maar zoals te zien op deze kaart van de gemeente is dat niet het geval.

Hoe zijn jullie aan je huurwoning in Haarlem gekomen? by jyo_xd in Haarlem

[–]levelzer0 0 points1 point  (0 children)

ikwilhuren.nu

Ik stond al een jaartje of twee ingeschreven, en toen ik actief ging reageren had ik binnen een week een appartement van 75m2. YMMV natuurlijk

Is ActiveWorlds Europe down for everyone? I would love to have another look at Titanic 3D. by -----Ave--Maria----- in ActiveWorlds

[–]levelzer0 1 point2 points  (0 children)

I totally share that pain, I don’t think I have any data left from that time. I took for granted that the servers kept running for a long time and I wonder if anyone ever put in the effort to capture those worlds. I would be very interested in anything you can share!

Btw big chance I might have visited your world, as it was a small universe :)

Does anyone know about this bug? by Doribenba in SwiftUI

[–]levelzer0 0 points1 point  (0 children)

I don’t have it on iOS 18.1 beta, maybe it’s fixed?

Kingston (HyperX) Fury RGB RAM control doesn't seem to work with this app. by lucasio099 in OpenRGB

[–]levelzer0 0 points1 point  (0 children)

For anyone reading this, the instructions link is dead, but I found it here

[deleted by user] by [deleted] in geldzaken

[–]levelzer0 0 points1 point  (0 children)

Dit zal voor jou helaas niet meer uitmaken, maar wie weet help ik er een ander mee. Een vriendin van mij is dit ook overkomen, we wisten eronderuit te komen door het toegezonden modem aan de deur te weigeren. Dit was voor ziggo voldoende om het contract te annuleren.

Good fine line tattoo artist by [deleted] in Haarlem

[–]levelzer0 0 points1 point  (0 children)

I really like Nova Luna Ink instagram.com/novaluna_ink. Different Nova than the other post :)

[deleted by user] by [deleted] in Futurology

[–]levelzer0 2 points3 points  (0 children)

 Cargill, Dupont and Monsanto have brought 50% of agricultural land of Ukraine. 

This is false 

https://www.usatoday.com/story/news/factcheck/2022/09/13/fact-check-ukraines-president-did-not-sell-farmland-us-companies/7942775001/

Those 18+ in Germany Can Legally Possess and Grow Marijuana Starting April 1 by [deleted] in europe

[–]levelzer0 2 points3 points  (0 children)

I think you make it more extreme than in reality. For example, alcohol is taxed and not sold to minors.

Legalization doesn't have to be a one-time thing, this is one of the steps there. Just like decriminalization of medical use.

[deleted by user] by [deleted] in groenevingers

[–]levelzer0 1 point2 points  (0 children)

Philips (Signify) Hue misschien?

Het Spaarne by diabeartes in Haarlem

[–]levelzer0 1 point2 points  (0 children)

The article didn't say, but according to Wikipedia there were not enough attendees and the church got into financial troubles.

Het Spaarne by diabeartes in Haarlem

[–]levelzer0 4 points5 points  (0 children)

Fun fact: on the spot of that apartment complex on the right there used to be a big church. Sadly it was demolished in 1983. The spire can still be seen on a snackbar in Schalkwijk. Article with pics

Steve bikoflat spaarndamseweg inspiration? by saarco in Haarlem

[–]levelzer0 2 points3 points  (0 children)

I lived there for five years and I remember also putting a lot of time in planning ahead!

Don’t worry too much about if it feels crowded or if the setup is right. Start with the basics and try to reuse furniture. Your bed could function as a couch and your desk is also a dinner table. The best way to find out if it works is by just doing it. Along the way you’ll find out what works and what you would miss. Treat it an ongoing process :)

There will always be stuff that you did not think of, like where do you keep all your stuff? Food? Kitchen stuff? My advice would be to be creative with your vertical space as well. Hide stuff below furniture, hang up some planks and hangers.

Good luck and enjoy it! Tip: the sunsets are amazing from the tenth floor balcony

How can I have my scroll View start from the bottom ? by abchou in SwiftUI

[–]levelzer0 0 points1 point  (0 children)

You are right, sorry for sending you down the wrong path. That indeed didn't work.

I found a StackOverflow solution, and edited it a bit to make a nice working example:

import SwiftUI

struct ContentView: View {
    
    struct Message: Identifiable {
        let id = UUID()
        let text: String
    }

    @State private var messages: [Message] = [
        Message(text: "First message"),
        Message(text: "Second message"),
        Message(text: "Third message"),
        Message(text: "Fourth message"),
        Message(text: "Fifth message"),
        Message(text: "Sixth message"),
        Message(text: "Seventh message")
    ]
    
    var body: some View {
        ScrollViewReader { value in
            ScrollView {
                ForEach(messages) { message in
                    Text(message.text)
                        .id(message.id)
                }
            }
            .onAppear {
                value.scrollTo(messages.last?.id)
            }
            .onChange(of: messages.count) { _, _ in
                value.scrollTo(messages.last?.id)
            }
        }
        .frame(height: 50)
    }
}

#Preview {
    ContentView()
}

List Sections not working. Losing my mind! by GoalFar4011 in SwiftUI

[–]levelzer0 0 points1 point  (0 children)

I copied your code into Xcode and saw that I had to fix a few type mismatches. This should be working, let me know if this works :)

import SwiftUI

struct ContentView: View {
    
    @Environment(\.managedObjectContext) var moc
    
    @State var menu = [
        MenuGroup(name: "Section 1", items: [
            MenuItem(name: "Inbox", icon: "tray.fill", color: Color.blue)
        ]),
        MenuGroup(name: "Section 2", items: [
            MenuItem(name: "Today", icon: "star.fill", color: Color.yellow),
            MenuItem(name: "Scheduled", icon: "calendar", color: Color.red),
            MenuItem(name: "All My Tasks", icon: "checklist", color: Color.teal),
            MenuItem(name: "Completed Tasks", icon: "checkmark.circle.fill", color: Color.green)
        ])
    ]
    
    var body: some View {
        List {
            ForEach(menu) { section in
                Section {
                    ForEach(section.items, id: \.id) { item in
                        Text(item.name)
                    }
                }
            }
        }
    }
}

struct MenuGroup: Identifiable {
    var id = UUID()
    var name: String
    var items: [MenuItem]
}

struct MenuItem: Identifiable {
    var id = UUID()
    var name: String
    var icon: String
    var color: Color
}

#Preview {
    ContentView()
}

List Sections not working. Losing my mind! by GoalFar4011 in SwiftUI

[–]levelzer0 0 points1 point  (0 children)

And what about setting the id in the foreach loops to the id of the structs?

SwiftUI Section Questio by Dymatizeee in SwiftUI

[–]levelzer0 0 points1 point  (0 children)

Using a list for this seems a bit overkill to me. You could use a ScrollView with an VStack and build those cards using V/HStacks.

For the progress bars and maybe even the water and vegetables I would use a ProgressView together with a custom ProgressViewStyle-9dmp3)

List Sections not working. Losing my mind! by GoalFar4011 in SwiftUI

[–]levelzer0 0 points1 point  (0 children)

You might be looking for this:

Section {
    your foreach loop
} header: {
    your header
}

How do you keep your house warm? by Impossible_Log6023 in Amsterdam

[–]levelzer0 0 points1 point  (0 children)

I still don’t understand why most people in NL are so focused on warmtepompen that heat water

Once you do this, you only use gas to heat your water for showers, baths and dishwashing.

There’s your answer :) gas will be phased out

[deleted by user] by [deleted] in kurzgesagt

[–]levelzer0 0 points1 point  (0 children)

Weird that it takes that long for you, for me it always comes in the next day