Y a ma tête qui chauffe
Barbarie culturelle 2

#culture #art #politique #arguments #IA #barbarie #discours #démocratie #contre-discours

‘A web of deceipt’: Closing arguments heard at Toronto BBQ smoke murder trial
A Liberty Village couple charged in relation to the death of their upstairs neighbour whose body was found in a garbage compactor will soon go to a jury for deliberations.
#Crime #BBQSmokeDispute #SecondDegreeMurder #Torontocrime
https://globalnews.ca/news/11872597/closing-arguments-toronto-bbq/
‘A web of deceipt’: Closing arguments heard at Toronto BBQ smoke murder trial
A Liberty Village couple charged in relation to the death of their upstairs neighbour whose body was found in a garbage compactor will soon go to a jury for deliberations.
#Crime #BBQSmokeDispute #SecondDegreeMurder #Torontocrime
https://globalnews.ca/news/11872597/closing-arguments-toronto-bbq/
‘A web of deceipt’: Closing arguments heard at Toronto BBQ smoke murder trial
A Liberty Village couple charged in relation to the death of their upstairs neighbour whose body was found in a garbage compactor will soon go to a jury for deliberations.
#Crime #BBQSmokeDispute #SecondDegreeMurder #Torontocrime
https://globalnews.ca/news/11872597/closing-arguments-toronto-bbq/
Tony Humby trial's closing arguments delayed by Dean Penney trial
Closing submissions for the trial of Tony Humby have been delayed again due to the trial of convicted murderer Dean Penney. Humby and Penney share the same lawyer.
https://www.cbc.ca/news/canada/newfoundland-labrador/tony-humby-sexual-abuse-trial-delayed-again-dean-penney-9.7210988?cmp=rss

Following up on my previous post https://mastodon.social/@yegorov/116594842832339445 (where I showed how to set default values in Ruby methods), it turns out you can write not just a single expression on the right side, but an entire block of code inside a begin-end construct.

#Ruby #Method #Default #Arguments #KeywordArguments #BeginEnd

Weakness

Strong and bitter words indicate a weak cause.

~ Victor Hugo

slip:4a848.

#Arguments #Quotes #ReasonAndRationality #VictorHugo
Craig Constantine

Presence, not pursuit.

Craig Constantine

Understanding

I have found you an argument; But I am not obliged to find you an understanding.

~ Samuel Johnson

slip:4a853.

#Arguments #Quotes #SamuelJohnson
Craig Constantine

Presence, not pursuit.

Craig Constantine

If you work with Ruby, you should know that arguments in methods can be set to a default value, for example:
```
def perform(arg: "d")
# .
end
```

But did you know that you can use instance variables as default values, like this:
```
class MyCls
def initialize(arg); @arg = arg; end
def perform(arg = @arg); end
end
```

Or other arguments of this method:
```
module MyMod
def self.perform(a = nil, arg: a); end
end
```

#Ruby #Method #Default #Arguments #KeywordArguments #InstanceVariable