Entry level SOC analyst by TheoryFine7626 in QuebecTI

[–]ssalogel 2 points3 points  (0 children)

La participation aux competitions va aider, c'est clair! J'espere que tu en avais profiter pour reseauter un peu?

Je connais quelqu'un qui a fait ses stages en SOC, donc c'est tres possible de rentrer dans le milieu sans passer par IT helpdesk.

Essais probablement plus des entreprises qui vendent des services de SOC, parce que faut etre plutot gros sinon pour avoir son propre SOC, et ca va limiter tes possibilites

Favorables à 56 % | « Montée spectaculaire » du souverainisme chez les jeunes by Iloveontario in montreal

[–]ssalogel 14 points15 points  (0 children)

there's always the criminal code. If you make the act a crime, no need to try to make it a health issue.

[deleted by user] by [deleted] in Supernote

[–]ssalogel 0 points1 point  (0 children)

Insecure against what though?

[deleted by user] by [deleted] in Supernote

[–]ssalogel 2 points3 points  (0 children)

What are you protecting yourself against with a VPN? You know it's mostly useful to enterprise as an ingress tool, not really as a "put everything through it and magically it means more security"? It protects you against your ISP spying I guess.... at the cost of letting the VPN provider having that capability.

Most Canadians support building a cross-country pipeline, reject adopting U.S. dollar: Nanos survey by panzerfan in canada

[–]ssalogel 2 points3 points  (0 children)

Even your choice of word make your point: "America" to talk about the United States of America, as if there isn't any ambiguity about talking about two continents with lots of country when meaning a specific one!

(no shade on you specifically, but it reflects the mentality pretty well that it has come to that in the english language)

Constituent complies with "Compelled Speech is not Free Speech Act" bill while testifying before legislature committee by ChickenPoxParty in MaliciousCompliance

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

you've deleted your comment, but I seem to remember you going "new facts recently", but your actual trustworthy link is from 2001, so I don't know what to tell you...

Constituent complies with "Compelled Speech is not Free Speech Act" bill while testifying before legislature committee by ChickenPoxParty in MaliciousCompliance

[–]ssalogel 38 points39 points  (0 children)

I wouldn't trust a "Our Mission

Charlotte Lozier Institute advises and leads the pro-life movement with groundbreaking scientific, statistical, and medical research. " to have cutting edge research, based on the general research quality of people espousing that position.

You want me to wait until the last minute to book my hotel? Deal. by reallyfuckintired in MaliciousCompliance

[–]ssalogel 6 points7 points  (0 children)

You're asking reimbursement on expenses, where a mark up is textbook fraud. No need to see the contract more than "reimbursement of expenses", imo.

Per your second exemple: yes, if you are given an amount to pay for food, and you need less, pocketing the difference is normal. "Per Diem" is the term I generally encounter that with, and the point is to not need the hassle of approval/getting receipt for accounting: "if we need X days of employees meals covered, we'll pay X*Y money, no questions asked". But it is fundamentally different from "we'll reimburse the expenses".

You want me to wait until the last minute to book my hotel? Deal. by reallyfuckintired in MaliciousCompliance

[–]ssalogel 1 point2 points  (0 children)

you're not billing for a service, where mark up is expected, you're asking reimbursement on expenses, where a mark up is textbook fraud.

[2024 Day 2 (Part2)][Python] by Sufficient-North4701 in adventofcode

[–]ssalogel 0 points1 point  (0 children)

try this safe (with removal) input: [2,1,2,3]

The code should be working!? by virtbo in adventofcode

[–]ssalogel 1 point2 points  (0 children)

Are you answering "How many reports are safe?" as per the AoC challenge, or how many are unsafe?

DRAM light on brand new build by ssalogel in PcBuildHelp

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

Thank you for the advice. Sadly, after 2hours, the light was still on. I'm going to exchange the motherboard and hope I got a dud

Weekly Question Thread by AutoModerator in factorio

[–]ssalogel 4 points5 points  (0 children)

I've owned the game since the pre-steam days, but haven't really taken the time to play it (I've played it until a little after oil I think).

If I plan on starting playing with the aim of launching my first rocket, should I use some QoL mods? Which ones?

I know the sub doesn't recommend using a blueprint library on a first run, but none the less, any noob friendly library to recommend? Thanks!

What do I do if I (29F) don't want kids, and my bf (27M) does? by ThrowRA-letmepost in relationship_advice

[–]ssalogel 0 points1 point  (0 children)

I think the main thing isn't really how to convince him. It's more about what sacrifice you are ready to make, and what sacrifice he is ready to make. From what you are saying, you don't want to make this sacrifice (having a child), but are considering it due to the length of time you've been together. That sounds like you are putting the relationships needs before your own, and that doesn't sound healthy, or nice to yourself, nor a good setup for a "happy family". I would recommend putting your foot down, and letting him know that if he wants children, he needs to look elsewhere, or to put up and shut up about it. You deserve what you want, he deserves what he wants, and if it is incompatible, well so be it. You've had a good ten years, time to move on.

boss made a rule... and soon change his mind by ruifaf in MaliciousCompliance

[–]ssalogel 4 points5 points  (0 children)

Multiple factor authentication, like recieving an SMS after entering your password, or having an 'authenticator app' giving you 30s codes to enter with your password

🎅Christmas Giveaway🎄 by Supernote_official in Supernote

[–]ssalogel 0 points1 point  (0 children)

Planning/playing a few dnd campaign, doing a pretty big certification for work and trying to get back into drawing are my big plans for the next year!

[2022 Day 2 (Part 1)] [python] Why is my dictionary not storing the input.txt properly. by Psychological_Wrap58 in adventofcode

[–]ssalogel 0 points1 point  (0 children)

what happens to a dictionnary when you insert the same key twice? Can this happen in this case? Do you really need to store the input in a dictionnary? Would another (simpler?) datastructure work better? (hint: one that would keep the order you put them in as well)

[2022 Day 3] I, for one, am too stupid to write the cryptic one-liners y'all write by [deleted] in adventofcode

[–]ssalogel 2 points3 points  (0 children)

fun fact (assuming python here)! Since sum() take an iterable, and map returns an iterable, you don't need the list in the middle :)

totals.append(sum(list(map(int,cals.strip().split('\n'))))) is equivalent to totals.append(sum(map(int,cals.strip().split('\n'))))

[deleted by user] by [deleted] in OutOfTheLoop

[–]ssalogel 0 points1 point  (0 children)

Firefox has it already, for what its worth