• 4 Posts
  • 15 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle


  • Grain moth larva. Good luck. The damn things are a pain to get rid of once you have them. You’ll want to pitch any food that isn’t 100% air tight sealed (bags or boxes of cereal, rice, flour, sugar, noodles, etc.) and then clean out any cabinets really well to make sure you get rid of as many eggs as possible. After that make sure you don’t leave any food unsealed for the next few months because odds are they will keep popping back up ocasionally for a bit and if they can get into anything when they do then the infestation starts all over. As far as infestations go they aren’t the worst to deal with but they are anoying.






  • It’s a timeshare and it is basically a scam for most people. Basically you’re buying time to stay at the place that you can technically use at any time year round as long as you book it in advance. The problem is that all of the days that most people go on vacations (spring break, summer, holidays, etc) will already be booked by the 500 other people who also bought the same thing. So really the only times you will actually be able to use the place are when no one else wants to be there.

    If you have the ability and desire to drop everything and vacation there on a random week whenever it happens to be available then it can still be a good deal for you, but most people have obligations like work, school, or family that limits when they can just drop everything and leave to spend time at their timeshare.





  • It’s a dynamically-sized list of objects of the same type stored contiguously in memory.

    dynamically-sized: The size of it can change as needed.

    list: It stores multiple things together.

    object: A bit of programmer defined data.

    of the same type: all the objects in the list are defined the same way

    stored contigiously in memory: if you think of memory as a bookshelf then all the objects on the list would be stored right next to each other on the bookshelf rather than spread across the bookshelf.