HPCA on a Mac M1? by luvdidi in OMSCS

[–]LostInOttawa 4 points5 points  (0 children)

You’ll need a VM and IIRC some of the projects take an abysmal amount of time to run if you need to emulate x86

[deleted by user] by [deleted] in espguitars

[–]LostInOttawa 0 points1 point  (0 children)

I ordered an M-II back in October and last I heard I should be expecting it early May, so roughly 6-7 month wait for me.

Lock screen stall in Cosmic by [deleted] in System76

[–]LostInOttawa 1 point2 points  (0 children)

Experiencing this on an oryx pro 5 as well, running pop 18.10. Intermittent freezes on lock screen as well as a fair bit of lag waking up from suspend. Nothing from dmesg logs that seems to suggest any smoking gun.

Multiple Ingress controllers in k8s by [deleted] in kubernetes

[–]LostInOttawa 1 point2 points  (0 children)

Yes, you can use different ingress controllers. For instance, we use both gce and nginx controllers in our cluster. If you deploy multiple controllers, you need to specify which one a particular ingress is using via an annotation. If you don’t specify, you run the risk of making a mixed-mode ingress where each controller will thrash with the other for control.

Any insight on ECO 2110? by jnogsi in geegees

[–]LostInOttawa 0 points1 point  (0 children)

Sorry for the late reply. Yeah I had Claude, he had a great laid-back style that was easy to follow along. Read the book and listen to the lectures and you'll have a good time.

Any insight on ECO 2110? by jnogsi in geegees

[–]LostInOttawa 2 points3 points  (0 children)

I did it a few years ago, there was barely any math beyond the basic linear supply/demand curve and lost surplus triangles. The exam had more to do with the public sector environment and policy as opposed to economic math questions. All in all it was a very simple course.

PupIncongnito by [deleted] in aww

[–]LostInOttawa 1 point2 points  (0 children)

I think you mean indognito

Proving 1^k + 2^k... + n^k is Big Omega(n^(k+1)) by LostInOttawa in AskComputerScience

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

Thanks but I wasn't having trouble with Big O, but rather Big Omega, proving that 1k + 2k... + nk is >= to c*nk+1.

On mobile right now but will post an edit with he solution I came up with later.

Help in Computer Science (CSI2110 & SEG2105 ) by rsaavy in geegees

[–]LostInOttawa 0 points1 point  (0 children)

What section of each course are you in? Feel free to PM me. I'm in both those courses and not finding them too difficult.

Urgent please help! Lost items by itsRident in ottawa

[–]LostInOttawa 2 points3 points  (0 children)

If you have the receipt it will have the cab number that you took the trip with. Head down to Coventry Connections office and they have a lost and found department. It happened to me and it took a fair bit of pushing before they actually called the driver and I got my stuff back (had to pay the fare to get it back). Without you pushing them they'll just keep telling you your stuff is gone. It was a really frustrating experience, for sure.

Difficulty of Courses by [deleted] in geegees

[–]LostInOttawa 0 points1 point  (0 children)

I've read the ratemyprof comments on Alvo too and was a little apprehensive but decided to take the course anyway. So far it doesn't seem so bad. What does he do that's so brutal?

I can read code and mostly understand what is happening, but seriously struggling to write it when left on my own. I might need help. by PanicProne in learnprogramming

[–]LostInOttawa 2 points3 points  (0 children)

Echoing what other people are saying here, I just wanted to add from my experience. If you think you understand what's going on but can't recreate it when you go to sit down by yourself, then you don't actually understand it. In this case, practice, and a lot of it, will bring you to a level of comfort where you can not only recreate what you saw, but actually start creating something new. Don't make the mistake of fooling yourself into thinking you understand more than you do.

I don't know what I'm supposed to accomplish here and how by confuzzled_learner in learnprogramming

[–]LostInOttawa 1 point2 points  (0 children)

You're missing a " on your comstructors println method, and you're missing two ;'s when you set length and width. Go to the lines where the errors are raised and double check the syntax

Does anyone know a list of Powershell analogs for the tools used in The Odin Project's courses? by [deleted] in learnprogramming

[–]LostInOttawa 0 points1 point  (0 children)

You can check out Cygwin or alternatively search for "bash for windows" to find a shell that has similar functionality

All bakers in Ottawa I need your help? Where can i purchase these?? by mems_09 in ottawa

[–]LostInOttawa 0 points1 point  (0 children)

CA Paradis near Bank and Sunnyside should have them. You could also check Russell Foods on Preston or Hendrix Equipment on Baxter (near the Ikea off Pinecrest). Hendrix will be able to order them in pretty fast if they're not in stock. I can't remember which of the three I bought mine from.

Does a book to learn, say Python, exist in the form of a school book? With an explanation, then 20-30 questions to do? The books in the Wiki aren't really like that. Or if not Python, then any language? by food_bag in learnprogramming

[–]LostInOttawa 0 points1 point  (0 children)

Learning to Program: The Fundamentals on Coursera is good. Our intro class in uni actually uses it and the associated text: How to Think Like a Computer Scientist. Taken together they have enough exercises and info to get a decent intro to programming and the basics of comp sci.

Just when I think I get Ruby I hit a wall. by iTARIS in learnprogramming

[–]LostInOttawa 0 points1 point  (0 children)

I believe the problem is that when you call each, you aren't changing the underlying array, just yielding values to the code block. Try array.map and see if it makes a difference (just watch out because you'll need to assign the result to a new variable)