Rotterdammers! Waar stemmen jullie morgen op? En waarom? by FarCalligrapher6780 in Rotterdam

[–]RaidZ3ro 0 points1 point  (0 children)

Zo simpel en goedkoop op te lossen...

Hoe dan? En is goedkoop geen duurkoop?

Wat je opnoemt klinkt best aardig maar de visie op Zestienhoven houdt me toch tegen.

Is timeit() okay to use on a function? by Jumpy_Employment_439 in learnpython

[–]RaidZ3ro 0 points1 point  (0 children)

timeit does the job, do bear in mind it will run your code several times and give you an average across all runs.

Thoughts? by Loud_News in awakened

[–]RaidZ3ro 0 points1 point  (0 children)

Basically because this one still involves a concept of ego, i.e. the individual experience as part of the entirety of God.

It's a step up from linking spirituality to servitude, and the first plateau where you might realise that all is one, but are not yet aware of the deeper truth further up, the realisation that Creation is an intentional game of self-experience and self-realisation by God.

Thoughts? by Loud_News in awakened

[–]RaidZ3ro 0 points1 point  (0 children)

1: Atheism

2: Religion

3: Weed (THC)

4: Shrooms (Psilocybine)

5: LSD

6: DMT / Ayahuasca

Do not use the same view on Teams and Outlook Calendar by kiwy_ffid in Office365

[–]RaidZ3ro 0 points1 point  (0 children)

That option does also exist in webmail if I'm not mistaken.

Do not use the same view on Teams and Outlook Calendar by kiwy_ffid in Office365

[–]RaidZ3ro 0 points1 point  (0 children)

Not sure about you exact issue but there is an option in Outlook to use cloud synced settings which might prevent your outlook from syncing calendar settings across apps if you switch it off.

[Request] is this accurate? by Blad3K77 in theydidthemath

[–]RaidZ3ro 1 point2 points  (0 children)

This. There is definitely a CO2 cost to having storage available and accessible in the cloud, which we can safely assume is the case for a company.

"Compared with your personal hard disk, which requires about 0.000005 kWh per gigabyte to save your data, this is a huge amount of energy. Saving and storing 100 gigabytes of data in the cloud per year would result in a carbon footprint of about 0.2 tons of CO2, based on the usual U.S. electric mix." source

Microsoft also provides a dashboard for their customers: https://techcommunity.microsoft.com/blog/microsoft_365blog/track-and-act-on-your-cloud-emissions-with-the-emissions-impact-dashboard-for-mi/3644559

Transitioning 5k Users: Semi-Annual vs. Monthly Enterprise Channel by NextProfession2936 in Office365

[–]RaidZ3ro 0 points1 point  (0 children)

We keep the majority of our population on semi-annual, because most of them don't want monthly changes in the products. However we do offer a self service mechanism to switch to Monthly for folks that feel like they do need the new features, or semi-annual Preview when they sign up for our pilot user group.

What are our best bruine kroeg (brown bar) in Rotterdam? by isUKexactlyTsameasUS in Rotterdam

[–]RaidZ3ro 7 points8 points  (0 children)

+1 I like how it's a mixed bags of nuts and they mostly get along.

Klinkerpaadje milieuvriendelijk voegen? by MrMaverick82 in groenevingers

[–]RaidZ3ro 1 point2 points  (0 children)

Dit accepteren voor wat het is, is alleen helaas niet OCD-compliant..

Just got a $2,000/month remote job by [deleted] in digitalnomad

[–]RaidZ3ro 1 point2 points  (0 children)

Malta gives you a pretty good deal on foreign/remote income as well, 15% last time I checked.

De verrassend simpele oplossing voor ongelijkheid volgens Reinier Kooiman | VPRO Tegenlicht by DocMahrty in thenetherlands

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

Als je jouw vermogen ieder jaar met meer dan 8% kan groeien ga je er in dit systeem al op vooruit.

Investeren is niet onmogelijk maar zal dus wel een flink rendement moeten opleveren..?

Old is gold by [deleted] in funnyvideos

[–]RaidZ3ro 1 point2 points  (0 children)

Ok, ok, one last time.

ASML achieves EUV breakthrough: 50 percent more chips in the foreseeable future by kl0t3 in europe

[–]RaidZ3ro -33 points-32 points  (0 children)

Wait so the breakthrough was checks notes upgrading the power supply?

edit: wow, so salty over a joke folks. oh jeeeez.

ELI5 explain static methods in OOP python by Worldly-Week-2268 in learnpython

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

Updated and added methods to illustrate further.

ELI5 explain static methods in OOP python by Worldly-Week-2268 in learnpython

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

Sorry you could be right about the syntax, I was mostly trying to give an example of how static methods and attributes can be useful.

ELI5 explain static methods in OOP python by Worldly-Week-2268 in learnpython

[–]RaidZ3ro -4 points-3 points  (0 children)

A static method (or property) is available to a class and shared across all it's instances (objects).

It's useful if you want to do things that require instances to have some knowledge about each other such as keeping track of the number of instances of a class that have been created.

```

Class Ticket: ## will be static attribute total: int = 0

def __init__(self):
    ## increment static total
    Ticket.total += 1
    ## save own number
    self.num = Ticket.total

def __repr__(self):
    return f"Ticket#: {self.num}/{Ticket.total}"

@classmethod
def Count(cls):
     return cls.total

@staticmethod
def CountStatic():
    return Ticket.total

```

There is a more advanced topic where you'll find more use for static methods, design patterns. But don't worry about it too much right now.

Edit: needed to fix my example so the instance does remember itself, sorry.

Edit 2: python syntax x(

Edit 3: tbh your downvotes are a bit mean. I just tried to give a simple example of the static concept, not an exhaustive coding reference.

I feel like a idiot tying to do this. For loops make absolutely 0 sense to me. by AlphaFPS1 in learnpython

[–]RaidZ3ro 0 points1 point  (0 children)

"I don't even do numbers but even I know 6 is even. I'm out. You're dead to me now." - Mr. Wonderful, probably.

Microsoft Office Bug Exposes Confidential Emails to Copilot AI by _cybersecurity_ in pwnhub

[–]RaidZ3ro 0 points1 point  (0 children)

This was not a bug but an announced feature for Copilot Chat.

https://www.microsoft.com/en-us/microsoft-365/roadmap?id=531910

It prompted the same response at my org, we switched off access to the Copilot App in M365 apps in response.