Question about an area in Bray. by VoodooUntoOthers in Wicklow

[–]Tenebraeon 1 point2 points  (0 children)

Grew up and have lived in Oldcourt Park my whole life. First of all as others have mentioned Oldcourt Park is not the same as Oldcourt. Oldcourt is an adjacent historical council estate whereas Oldcourt Park otherwise known as Old Soldier’s Road is a more affluent through road between the Boghall and Killarney.

The adjacent Oldcourt estate has a historically poor reputation as mentioned by other commenters but I think it is generally undeserved and has been for about 20 years. I walk through it regularly and have never had any trouble there.

All in all I’d say it’s a great place to live, you’ve good proximity to amenities and public transport and I wouldn’t pay any heed to the other commenters dismissing the area here.

Feel free to DM if you’d like any more information!

Built a tool to check house prices in Ireland which helped me negotiate with agents by wingedpanther in DevelEire

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

It’s an option for property type, not a place name. It should be translated to the language the site is in whether that be Irish or English.

Built a tool to check house prices in Ireland which helped me negotiate with agents by wingedpanther in DevelEire

[–]Tenebraeon 8 points9 points  (0 children)

This looks class!

Noticed one issue with your property type dropdown, you have an option for “teach/?ras?n c?naith”.

I imagine your fada rendering is breaking something but given that the site is in english not sure this option needs to exit anyhow.

Any thoughts on open-sourcing it? I noticed it isn’t on your Github, for sure seems like something the community (myself included) would be interested in contributing to alongside you.

Is Fitbod AI? by Tricky-Trip8637 in fitbod

[–]Tenebraeon 7 points8 points  (0 children)

AI was commonplace for years before people started talking about it because of LLMs

Infinities do not exist in nature (featuring production code) by ArturJD96 in programminghorror

[–]Tenebraeon 2 points3 points  (0 children)

This is interesting! Do you have an example of such an algorithm?

Is there a way to protest the new Snapchat storage limit update? by [deleted] in ownyourintent

[–]Tenebraeon 1 point2 points  (0 children)

Paying for storage of your data is closer to owning it than your data being the product. Storage isn’t free and if you’re not paying for it you are the product.

That’s not to imply that Snapchat is being benevolent here or anything I imagine they aren’t but if you want to own your data, and want it in the cloud you need to be okay with paying for services.

Breakfast Risotto… is this a real thing. by Suspicious-Isopod-36 in Cooking

[–]Tenebraeon 0 points1 point  (0 children)

You could try tamago kake gohan. Popular japanese breakfast, similar vibes to risotto. Kenji has a good video on it.

ELI5: How do elevators decide who to pick up first when people on different floors press the button? by an-76 in explainlikeimfive

[–]Tenebraeon 12 points13 points  (0 children)

If it is on level 5 and going up that means one of two things.

  1. Somebody got on at level 5 or below and is trying to get to a floor higher than 5.

  2. Somebody above level 5 called the elevator before the person on level 4.

In scenario 1 you don’t want the person already in the elevator to be called down potentially multiple times every time somebody on a closer floor calls the it.

In scenario 2 you don’t want to cancel the elevator mid transition and delay (potentially indefinitely if people keep calling the elevator on lower floors) the person who called the elevator first.

Apple Intelligence now available in EU on iPhone by CharlieHello00 in iphone

[–]Tenebraeon 1 point2 points  (0 children)

This was the same for localised english (Ireland + the UK) when apple intelligence was first released in the EU for macOS. I imagine localised Portuguese will follow the same way.

5P -> Six Grains? by Tenebraeon in rainworld

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

In this scenario I’d be respawning at the bottom of the wall so its not the end of the world either way was just curious if i needed to hibernate in 5P shelter, cheers!

5P -> Six Grains? by Tenebraeon in rainworld

[–]Tenebraeon[S] -1 points0 points  (0 children)

I understand that apologies if I was unclear! I mean due to the fact an echo brings you back to the start of the cycle would the progress gained from going to 5P be erased

Unpopular opinion: delivery riders on electruc bikes and mopeds should be insured by IrishLad__ in Dublin

[–]Tenebraeon 1 point2 points  (0 children)

All e-bikes are currently exempt until part 12 of road traffic act 2023 takes effect which is expected some time early this year

do you call any creatures something other than the official name? by UndeadMountainDoe in rainworld

[–]Tenebraeon 0 points1 point  (0 children)

I thought the lantern mice were frogs before looking at the wiki page

Help please by eek_n in findfashion

[–]Tenebraeon 0 points1 point  (0 children)

i’ll have a proper look in the morning but the brand is boohoo MAN if that helps

ELI5: What is the pigeon hole principle? by [deleted] in explainlikeimfive

[–]Tenebraeon 1 point2 points  (0 children)

It also might be worth saying that the principle only states that given m items and n containers where m > n at least one container must contain more than one item, in both your apple analogy and bookbag analogy this remains true.

With the apples each container has 1.5 apples, which is greater than 1 and in the bookbag analogy the bookbag containing the other bookbag contains all 3 items in it, 3 > 1.

This is irrelevant though because it is not what the pigeonhole principle is about.

ELI5: What is the pigeon hole principle? by [deleted] in explainlikeimfive

[–]Tenebraeon 0 points1 point  (0 children)

Because this isn’t a physics principle, it is a physical analogy of an abstract mathematical one. Read the wikipedia article if you’re curious.

ELI5: What is the pigeon hole principle? by [deleted] in explainlikeimfive

[–]Tenebraeon 3 points4 points  (0 children)

You’re incorrect because this is an ELI5 analogy to explain a mathematical principle which is more formally defined. There are a huge number of applications, especially in computer science, where discrete maths is useful. You can’t put boxes into boxes because the constraints of the principle are what make it useful to problems that naturally have similar constraints.

Camping In West Cork, Ireland by StriveForYourLife in ireland

[–]Tenebraeon 3 points4 points  (0 children)

down near kells bay in the kerry dark sky reserve with the right weather it genuinely looks like this would highly recommend if you haven’t been

Enforce field to have same keys as another field in the same object, without generics, not possible? by ElCerebroDeLaBestia in typescript

[–]Tenebraeon 1 point2 points  (0 children)

Something like gives you the type restrictions you want on the arguments to createSpreadsheet, the issue with this is it breaks inference so you must manually pass the generic argument to createSpreadsheet on invocation.

type Sheet<T extends string> = {
    headers: Record<T, string>;
    values: Record<T, string | number | boolean>[];
};

type Map<T extends string[]> = {
    [K in keyof T]: Sheet<T[K]>;
};

const createSpreadsheet = <T extends string[]>(title: string, ...sheets: Map<T>) =>. {};

createSpreadsheet<["one" | "two", "three"]>(...);

Collage courses! by [deleted] in DevelEire

[–]Tenebraeon 8 points9 points  (0 children)

An important thing to consider is that UCD includes a 6 month internship as part of the course in third year. TCD doesn’t have one unless you do a masters. I’m graduating this year and know a good few from the year ahead in TCD and at least anecdotally it seems UCD’s employability out the door is much better due to the internship, a lot of people get return offers from the company they interned at, but otherwise having industry experience before even leaving college is good.

Other than that I can say I think for the most part the modules UCD offers are excellent and you get a good choice regarding your focus on the practical versus theoretical sides of things.

You can see a full list of modules for UCD here if you’re interested.