

From the article https://icespy.org/
From the article https://icespy.org/
Ah, that’s right. Antipasto is Italian or something for first course.
I use if__name__main__ often when working with AWS Lambda, but I also want to run it locally. Lambda wants to call a function with the params event
and context
. So I would do something like this:
def handler(event, context):
things
return {
'statusCode': 200,
'body': 'Hello from Lambda!'
}
if __name__ == '__main__':
event = {}
context = {}
response = handler(event, context)
print(response)
I think I’m an antipastafarian now. What do we worship? Hot dogs? Wikipedia?
My policy for the last 30 years has been; I shave for weddings and funerals. Worked well so far 👍
This song is really good https://www.youtube.com/watch?v=yoYZf-lBF_U
:motions at trillions of times people that signed up for Fb, Ig, Twit, TkTk, etc/everything without reading the Terms of Service:
hosting mutual aid comms
I’ve seen those posts (I have no filter)… “I need money for rent” 🦗 🦗 🦗
Whoa. People born around this time will (hopefully) live to the year 2100.
mind be blown.
Look no further than wikipedia to provide that information haha https://en.wikipedia.org/wiki/List_of_Wikipedia_pages_banned_in_Russia
Nassau County in NY state passed a law this summer https://www.nyclu.org/press-release/nassau-county-mask-ban-signed-into-law YES, there are exceptions for health, religious or cultural reasons BUT they’ve also used it as probable cause to search someone https://www.nbcnewyork.com/news/local/nassau-county-police-issue-first-face-mask-ban-violation/5741363/ (it doesn’t matter that he was found with a knife. My son wears a mask because he thinks his nose is ugly)
The word “hack” is pre-internet. A “hack” journalist or a “hack job” is basically something unprofessional. It is movies that turned “hackers” into someone that gained access to the “mainframe”. In the realm of computer systems, I would argue that a “hack” is doing anything the system was not intended/designed to do. A successful DoS or DDoS needs to find some component of the system that wasn’t designed to handle the amount of traffic about to be sent to it.
There are protections for DDoS (iptables, fail2ban, Cloudflare and so on), you have to figure out a way around them, that’s a hack.