#voice-chat-text-0
1 messages ยท Page 971 of 1
@somber heath
My dudeee
not well but I am ready to learn
oh
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.weather.gov/stations/kash/observations/latest"
method := "GET"
client := &http.Client {
}
req, err := http.NewRequest(method, url, nil)
if err != nil {
fmt.Println(err)
return
}
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
Always could just do this kinda thing lol
import requests
station = "KASH"
try:
r = requests.get(f"https://api.weather.gov/stations/{station}/observations/latest")
r.raise_for_status()
return r.json()
except requests.HTTPError:
print(f"Error exists between keyboard and chair")
This way if you get anything other than 200 OK, it'll handle it.
๐ฅ
@willow light https://www.youtube.com/watch?v=LmgaSvu5Z14
A man from rural Ireland talks about sheep.
The greater white-toothed shrew (Crocidura russula) is a small insectivorous mammal found in Europe and North Africa. It is the most common of the white-toothed shrews. This species is found along the Mediterranean, Netherlands, Belgium, Ireland, Germany and Portugal; in addition, the Osorio shrew of the Canary island of Gran Canaria, originally...
!fstring
ยป sql-fstring
ยป f-strings
raw_url = f'{url_base}func_{route}?{x_argument}={string_args}{f"&request_id={request_id}" if request_id else ""}'
eh?
Damn good
Howdy fam
we won't help with bypassing captcha
if that's what you're attempting
!rule 5 see below
5. Do not provide or request help on projects that may break laws, breach terms of services, or are malicious or inappropriate.
usually not law, but terms of service yes
Ok ok no problem
I know but the sadest thing is that they are not giving a normal api
where I can veryfy a user
for my system
meh idk why but thank u still
@grim viper #voice-verification Check out that channel. That'll tell you what you need to know
!pypi PyMusic-Instrument
!paste
Pasting large amounts of code
If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
pglet website. Contribute to pglet/website development by creating an account on GitHub.
is this related to whinney the pooh?
This
@molten pewter who you got in the superbowl dad?
what do you mean?
i mean who is going to win
the bengals or the rams
๐คฃ
wow detect you had a VPN?
Damn taiiwan aint playing...
๐ got you
Slingbox setup your device
is the inhaled form called a covid-oven, and its made by the dutch?
?
sometimes i dont know what I'm saying :/
so you like it.. or ?
hobby, to use at work
my code ๐คฎ
fn negative_numbers_fix(data: Result<Vec<Token>, String>) -> Result<Vec<Token>, String> {
let mut result = data.unwrap();
match result.len() {
0 => Ok(result),
_ => {
let mut successful_iteration = false;
while !successful_iteration {
for i in 0..result.len() - 2 {
if result[i].token_type == TokenType::Operator
&& result[i + 1].content == "-"
&& result[i + 2].token_type == TokenType::Operand
{
result[i + 2].content =
if result[i + 2].content.chars().nth(0).unwrap() == '-' {
result[i + 2].content[1..].to_string()
} else {
format!("-{}", result[i + 2].content)
};
result.remove(i + 1);
break;
}
if i == result.len() - 3 {
successful_iteration = true;
}
}
if result.len() < 3 {
successful_iteration = true;
}
}
if result[0].content == "-" && result[1].token_type == TokenType::Operand {
result[1].content = format!("-{}", result[1].content);
result.remove(0);
}
Ok(result)
}
}
}
@zenith radish This is my homelab
!e
spam = [1, 2, 3]
ham = [i * 2 for i in spam]
print(ham)
@rugged root :white_check_mark: Your eval job has completed with return code 0.
[2, 4, 6]
@zenith radish
That is so lispy
It's nice, I liked it
!e
list_2d = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
flattened = [element for l in list_2d for element in l]
print(flattened)
@whole bear :white_check_mark: Your eval job has completed with return code 0.
[1, 2, 3, 4, 5, 6, 7, 8, 9]
Reason lets you write simple, fast and quality type safe code while leveraging both the JavaScript & OCaml ecosystems.
(+ 1 2 3 4 5)
=> 15```
func _physics_process(delta):
# we keep this in line with our camera but we remove the tilt
var new_transform = get_node("../ARVRCamera").transform
var new_basis = Basis()
new_basis.z = Vector3(new_transform.basis.z.x, 0.0, new_transform.basis.z.z).normalized()
if new_basis.z.length() > 0.5:
new_basis.y - Vector3(0.0, 1.0, 0.0)
new_basis.x = new_basis.y.cross(new_basis.z)
new_transform.basis = new_basis
transform = new_transform
else:
# we're looking straight up or down, ignore this
pass
someone share their screen
adn start coding
plesase
YESS
codeeeeeeee
im a new beginner so i just wannasee
i mean you ghet fired and get 3 months of pay
hoiw much is salary there atm?
tytytyty
with the company
or old compony
how did you BRIO
THE M1
OML
HOLY SHAT
ITS NEVER LOUD
OML
ITS 20 HOURS OF BATTERY AND LITERALKLKY
SOOOO GOOOOOOD
i work at best buy so i know alot of it
where do u work LP?
what do yuo do in the compony?
what do u do
;-;
how did you get the job
???
wheree uy applied?
how about google
lol
send me ur resumeee lol
dont swear ;;;-;
aii
how did u do that
!paste
Pasting large amounts of code
If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
{
"row1":[1,0,1],
"row2":[1,0,1],
"row3":[1,0,1]
}
https://paste.pythondiscord.com/ixewihonub.rb segment class
https://paste.pythondiscord.com/difekogije.apache how it reads coordinates
Imma go ill be back in a bit
venomous
If you bite it and you die, it's poisonous.
It it bites you and you die, it's venomous.
OH GOD
Build internal web apps quickly in the language you already know.
tye
thanks a lot to all the peoples' efforts to bring this analog-only release together online.
i've personally enjoyed the songs on this album a lot, hence why i decided to put all the tracks together into one video.
/!\ i get that the nature of the release type itself is there to allow the album to remain a lot less publicized as his other works.
...
ใปใใจใซ
ใฏใใกใคใ
mmmmmmh Iget it mate, hahahaha what a way to put it ๐
!stream 335393324573655043 10M
โ @cunning lake can now stream until <t:1644556714:f>.
@cunning lake sorry you can re-start your stream
!e n=input('name') n=='Sheldon'?n+'Cooper': 'Not Sheldon'
@cunning lake i will have to go in about 5~10 minutes though, and you'll have to end the stream before then
!e n='name'
n=='Sheldon'?n+'Cooper': 'not shelly'
hello
Opal you are back
non
no
non
first way
is fine
How was dinner? lol
i might go sleep its 1:16 AM rn i have school and i neeeda wake up at 5 am
;-;
please help meh
and i have homework lol
yummy
hows ur day?
idk
but i cant
i have school work
and i have work tomorrow
after school : P
English
lol
About native peiople ;-;
hsi
this
some of it
i have to watch a documentary
;-;
40minutes loing
and there are 2 documentary so 80 miunutes of time wasted
on watching ;-;
yea ;-;
i need to watch
not watched yet....
;-;
nope.
so im dead
lmao
if you want buti dont think you would like it lol.
its really boring
lol
none
it would be in class
but then no time for teacher
so now we have to watch it at home...
yea ofc rn i do
lol
yea
its due yesterday at 12...
;-;
lol
i know
just lyk
immma probably defen
and bmaybe start hammering it
Ok, I will be back in god knows how long.
lol
comprehension questions
be back in 2-3 hours whenits like school time ig.
lmao
truye
XD
most likely
lol
its english for indigenous people
who does it
and if i dont do it they wil call my parents
so dumb
opal are you bored for40 minuteS?
crap lol.
i was gonna say i can multitask and give u a document and questions to do and i do one
so then bam
done
ykykyk
lol
yea true makes sense lol
ok imma bbe back until like 4-5 am my time in like 2-3 hours gonna grabcoffe or something
ill be here tho
dwdw
if u need something ping me ๐
andi have work tomorrow
after school
and its till night
so....
im screwed
ok be back!
Let me know when you are about to leave
๐
true true lol.
im here in call defening
lmk when u leave
ly ๐
Now.
lmao
@somber heath Somehow im done : P
it was the worst type of english written but it worked out lol.
Guys please help me
Help with the python task
Sorry
One min
The theater stage is a rectangular field measuring n ร m. The director of the theater has given you a plan of the stage, according to which the actors will be located on it. On the plan, it is marked in which cells the actors will stand, and in which they will not. The spotlight installed on the stage will shine in one of four directions (if you look at the scene plan from above) - left, up, right or down. Thus, the position of the spotlight is understood as the cell in which it is installed, as well as the direction in which it shines. Your task is to put a spotlight on the stage in a good position. A position is called good if two conditions are met simultaneously: โ There is no actor in the corresponding cell; โ There is at least one actor in the direction in which the spotlight is shining . Your task is to calculate the number of good positions for installing a spotlight. Two positions of the searchlight installation are considered different if the cells of the location of the searchlight differ, or the direction in which

Heeelp

My guy

I got the SSD, today is gonna be C and some more vue รฒwรณ
kind of makes it sound all mission impossible... did at some point, you had to hang from a ceiling to aquire this ssd?
list = [345, None, 524, 123, None, None, None, 90]
filter(None, list)
!e py print(*filter(None, [None, 0, 1]))
@somber heath :white_check_mark: Your eval job has completed with return code 0.
1
!e
print(*filter(lambda x: x is not None, [None, 0, 1]))
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
0 1
!e py my_list = [None, 0, 1] my_list = [v for v in my_list if v is not None] print(my_list)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
[0, 1]
!e py print(1, 2, 3)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
1 2 3
None is a singleton so there's only 1 None object in each python process xD thus we use is to check if the object we're checking is that None object rather than checking its value
which is a bit faster
!e py print(*[1,2,3])
@somber heath :white_check_mark: Your eval job has completed with return code 0.
1 2 3
!e py print(*range(10))
@somber heath :white_check_mark: Your eval job has completed with return code 0.
0 1 2 3 4 5 6 7 8 9
!e
def foo(num1, num2):
print(num1, num2)
args = {"num1": 69, "num2": 420}
foo(**args)
you can also use ** to unpack dictionaries into keyword arguments xD
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
69 420
!e py a = 1, 2, 3 b = [*a] print(b)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
[1, 2, 3]
[*range(10)]```
users = [await reaction.users().flatten() for reaction in message.reactions]
user_list = []
for ulist in users:
for u in ulist:
user_list.append(u)
users = list(set(user_list))
random.shuffle(users)
for index, user in enumerate(users):
order += f"{index + 1} {user.mention}\n"
!e
foo = []
foo.append([1, 2, 3])
foo.extend([3, 4, 5])
print(foo)
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
[[1, 2, 3], 3, 4, 5]
i've been working with c for the past 2 days already miss the simplicity of C#, js and python xD
i like c but its still a pain to get shit done :x specially when ocd kicks in and you wanna do everything perfectly optimal
users = [[877226912014020701, 348158690353872917], [348158690353872917], [348158690353872917]]
need to go now cya guys later ๐
cya man
!e py import itertools users = [[877226912014020701], [348158690353872917], [348158690353872917]] result = itertools.chain.from_iterable(users) print([*result])
@somber heath :white_check_mark: Your eval job has completed with return code 0.
[877226912014020701, 348158690353872917, 348158690353872917]
import random
import itertools
users = [await reaction.users().flatten() for reaction in message.reactions]
result = itertools.chain.from_iterable(users)
users = list(set(result))
random.shuffle(users)
for index, user in enumerate(users):
order += f"{index + 1} {user.mention}\n"
yo!
wassup
good thanks man
@woeful salmon i'm trying to learn some frontend
the tailwind css framework
wtf is this stuff
px
py

padding-inline and padding-block are fairly new properties so its normal if you're confused by em
before we had to do both padding-left and padding-right when we had to do an inline padding now just padding-inline and that's what px does too

Worse, I went to a computer store
still tho, i imagine the mission impossible theme
!e ```py
import itertools
result = []
for x in range(3):
for y in range(3):
result.append((x,y))
print(result)
result = [*itertools.product(range(3), repeat = 2)]
print(result)```
@somber heath :white_check_mark: Your eval job has completed with return code 0.
001 | [(0, 0), (0, 1), (0, 2), (1, 0), (1, 1), (1, 2), (2, 0), (2, 1), (2, 2)]
002 | [(0, 0), (0, 1), (0, 2), (1, 0), (1, 1), (1, 2), (2, 0), (2, 1), (2, 2)]
@stuck sky also i forgot to say before but if you're using vs code you can just hover over the tailwind class and it will tell you the raw css that class applies
i don't remember if you need to have the tailwind extension for it or not
i'd recommend adding it anyway tho for the auto complete
!zen
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
then whats good code....
!pep8
PEP 8 is the official style guide for Python. It includes comprehensive guidelines for code formatting, variable naming, and making your code easy to read. Professional Python developers are usually required to follow the guidelines, and will often use code-linters like flake8 to verify that the code they're writing complies with the style guide.
More information:
โข PEP 8 document
โข Our PEP 8 song! :notes:
Sarcastic depth search
!e py rules = str.maketrans({"R": "RL", "L": "LR"}) axiom = "R" for _ in range(5): axiom = axiom.translate(rules) print(axiom)
A little experimental game I've been working on recently, where you fly around a tiny version of the world and deliver packages to various cities. Would love to hear any ideas you might have about how this could be taken further!
The next episode about this project's development is now available here: https://www.youtube.com/watch?v=UXD97l7ZT0w...
you might like that
channel
he simulates a lot of irl
physics
the gangs back together again
@somber heath :white_check_mark: Your eval job has completed with return code 0.
RLLRLRRLLRRLRLLRLRRLRLLRRLLRLRRL
@sick dew "the words On My brain is Struggling to ...come out. Sorry..." ๐คฃ
'On My brain'
i mean it's not that difficult i think
those things usually have basic rules and a lot of units
which make it interesting to watch
@somber heath is a very intelligent human
true story
no
ok
i dont know how opal got to talking about vibrations
fluid dynamics
words
letters
constantly changing?
and why the hell is a choatic system?
or just something that changes unpredictably?
why you ask
chaos theory
like the name suggests?
its important to understand the discussion lol
most of the times it's a system that has too many elements to make predictions possible
Chaos: Making a New Science is a debut non-fiction book by James Gleick that initially introduced the principles and early development of the chaos theory to the public. It was a finalist for the National Book Award and the Pulitzer Prize in 1987, and was shortlisted for the Science Book Prize in 1989. The book was published on October 29, 1987 ...
furyo is the link master
anytime i need information on something
i get him to research
and send me a link
a good history of Chaos theory.
In that case furyo do you have anything on the psychology of too many warnings means the warning gets ignored more?
Case in point: people tend to ignore tornado warnings unless it interrupts their favorite tv show
very interesting
Take online fluid mechanics courses from top schools and institutions. Learn fluid mechanics online to advance your education and career with edX today!
i dont know if he can go as specific as studies
but dont count this man out
hes one of the best
"Dry paint."
i think its interesting man
like if people trust something more, does that mean they're more likely to put more money into something than they normally do with something which isnt as transparent and upfront. Im pretty sure its proven in the workplace when people think things are transparent and everyone is upfront and accountable, that employees work harder
why arent you interested in that kind of stuff @somber heath
Like the reasons why humans make decisions
or why they dont make them
Thereโs also that some very influential people which may or may not include a former us president have been telling the public that the weather service are liars
๐
so then you do like that stuff?
you said dry paint lol
youre a man of culture i see @willow light ๐คฃ
Well, everyone is going to avoid touching something that says wet paint. Put a sign that says dry paint and you provoke their curiosity and they'll be tempted to touch it to make sure. It's hacking, but of people.
@zenith radish you're the davinci of coding
it is bad that i just use vscode
No
thats just mean you're a very classical person
you like to keep things simple
hello
xdd
@willow light im going to go outside for 3 hours, but ill be back
how to write code where x^-1 can be mesured and i wanna keep $int(input('Type your value - ')$
can we continue this conversation then?
will you still be on ?
Alright guys brb, i hope to see you all on here when im back
||int(input('Type your value - ')||
how to write code where x^-1 can be mesured and i wanna keep int(input('Type your value - ')
||hi||
@rugged root do you understand monoids?
I think I have multiple times at different times but I can't remember at the moment
I'd have to look it up again
The concept doesn't want to enter my head. If you happen to remember one specific thing that helped you grok it, a link would be helpful
I'll try and re-read it
Don't go through any real effort on my behalf - this is essentially a vanity for me
What're you needing it for?
Getting into functional/declarative programming?
Oh no wait, I knew about monads
Not monoids
There's this Scala program at work, mostly procedural/Oop, but there's one key bit that relies on monoids
And the person who wrote it this way is no longer here
And no one has a good claim of understanding it well
Re: monoids
You have a thing, you have an associative operation that combines two of these things, you have a thing that serves as an "identity" value
https://en.wikipedia.org/wiki/Electron_(software_framework%29
e.g. addition forms a monoid because
- Numbers are your things
- Addition is the associative operation that combines them
- Zero serves as the identity value (n + 0 = 0 + n = n)
e.g. multiplication forms a monoid because
- Numbers are your things
- Multiplication is the associative operation that combines them
- One serves as the identity value (n * 1 = 1 * n = n)
and so on...
@quasi condor Maybe this^ could help?
Lists, list concatenation, and an empty list also forms a monoid
yep
also taking symbolic logic soon, which is booleans and such
fun stuff
can't wait to get to the good stuff
Pasting large amounts of code
If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

https://paste.pythondiscord.com/likeferonu.py @stuck furnace
Which is reason businesses dictate languages
The problem here isn't the language though, it's the concept. The monoid is solving an inherently complex problem, and I'll take it on faith that it really is the best solution and that repeating that solution in any other language would be just as, or more, complex
That being said, I understand why companies would mandate one/few languages, you don't want to end up with v floating about because one person liked it
Monoid: a monoid is a set equipped with an associative binary operation and an identity element. Huh?
Probably VCO or Bluenix
ยฏ_(ใ)_/ยฏ
I agree
I play name = val ...
so you play val....
But if you mean Valorant or whatever, no.
I am not that good at such games
Val Kilmer?
;-;
I don't really play multiplayer stuff anymore
For multiplayer ... Rec Room, Minecraft (Java / Bedrock; but rarely these days for either) ...
I do and I'm hardstuck Bronze
Pure, are monoids and monads the same thing?
Rec Room, like VRChat, started as VR-only.
Now both of them allow screen (non-VR) users.
Not entirely, but they're related
do you agree with the monoid definition, or with the "huh?" indicating that I have no idea what that means.
Primarily the huh
Monoid: A monoid is a set that is closed under an associative binary operation and has an identity element I in S such that for all a in S, Ia=aI=a. What?
Yes. Further agreement from me
@calm cypress #discord-bots
I believe I have grokked the monoid in practical terms
I wish we could do that
centralized is better
lol i always seem to join right before a meeting.. bah
My boss tells me what to work on
๐ค
@sturdy wadi You had your video or what have you coming through
It's why I muted you
brain storming session?
ok
when will i get it back?
@rugged root
sir
I just unmuted you. It was just so I could stop the audio then let you know so you could fix it
oh ok
anonymous currency like cash?
factually not true
but sure
not true
nope
nope
you can buy plenty of stuff, like a hot dog, but most of those places are outside the US and EU
you can still buy a hot dog, which I have done, with crypto, at costco
sure
using vida
visa
still works.
then the your argument would be the same for USD.
VISA is an exchange now?
same if I have Euro in my bank accont.
already exists
it is similar.
2-4% increased benefit on the side of the store, and the ability to "self-bank"
or "remote bank"
I don't want to upend the system
that is a straw man argument.
you can have different payment methods, without upending the system
sure they can
you can have both
it is like having visa, and mastercard.
for losing money, we can have some kinda insurance system
No system is perfect. All the system have their issues. Crypto have an issue with getting locked out of one's wallet. Non-crypto systems have issue with counterfeiting or "double spend"
Insurance wants a way to get its money back
not all crypto.
there is no way to do that with Bitcoin.
we should only have one internet protocol.
it doesn't make any sense to have more than one internet protocol
what about, health, sure insurance companies negotiate rates, still there is no way to recover that money...
We can figure out like rate, like this is the prob(losing access), so this is the rate of insurance....
as long as your are not doing business across country
cryto makes it easy to create markets across countries.
90% garbage
10% interesting
the hype
Businesses do cross country business easily
I will wager that in 20 years, the nft market will be a 100 - 200 billion dollar market
authentication in the art world is a problem regardless of if it is an NFT or not.
centralisation might will bring much of verification issues on the user end
most people thought that about mp3
How do you mean, Ghosh?
and you can still buy tulips
means centralisation of nft will bring in dominance of marketplace due to someone
don't buy tulips in during the tulip bubble, but it doesn't mean that tulips will be worthless in the future.
exactly
that is hyperbolic
veg or non veg?
saying that "most sales of NFT are violating copyright" is hyperbolic. I am sure some sale of NFT void copyright, or a scam, but I doubt that all of them, or even most of them are.
the biggest scam is in NFT flipping.
A major bulk of money acquired
yeah i also feel so upto some point
All the analysis I have seen from people actually looking at blockchains indicate that the majority of transaction are for legitimate non illegal activities.
The majority of transactions probably are violating copyright. Maybe not the majority of money spent. The rate at which art gets systematically stolen for nfts is insane
For something that is supposed to protect the artists and give them power, it's not
It's really, REALLY not
have you seen any an analysis of etherium, cardano, or solana?
I'm also not in voice and only here to kill time waiting for a train so probably am missing context
Not really
are guys safe from covid shit?
Poland: you can pay using debet/credit card without any problem in every store (even villages far away from cities)
LP, is that your cat I can hear? ๐
taiwan, is mostly cash, but they have a good bank transferring system, where you can transfer cash to anyone's bank account from any atm.
I have heard that, in Germany physic currency is popular, because wireless payments are rare
China, everything is digital.
Lithuania โค๏ธ
though, Taipei, has a robust NFC system.
in poland i have never seen check
You can pay with your Subway card at most stores in Taipei
which is an NFC system.
No more checks in the EU, correct?
Taipei? in what part of China is this city?
It is interesting how Rabbit rationalizes check fraud, but doesn't give the same benefit of the doubt to crypto or NFTs.
most banks have a provision stating they will deposit post-dated checks before they're dated for
For the record, I think that both Checks and Crypto are valid systems.
Because if you hand someone a check, itโs basically handing someone cash, if you shouldnโt be paying them right that second, donโt hand them a check
yeah
I just didn't know until now that the banks don't respect the date
it's basically another memo line
Are their scum companies that abuse this like payday loans, sure
Hear how Hemlock is willing to accept check fraud as normal, but any fraud with a crypto makes crypto unacceptable?
I also agree that check fraud is mostly not a big deal, however, I also think that fraud on block-chains is mostly sensationalized.
Oh yeah, although I think those things are just for counting traffic?
39% of fraud losses are attributable to identity theft. https://risk.lexisnexis.com/insights-resources/research/us-ca-true-cost-of-fraud-study
Whole point is fraud on blockchain canโt be reversed without cooperation of wallet
it depends on the blockchain.
trust is the most important thing.
Governments are imaginary.
Without trust we wouldn't have governments.
It greatly increases the cost of the system.... greatly increasing the tech debt.
probably, several years in prison.
Mailboxes stick out and can be easily hit with a bat, but it doesn't mean that you should hit every mail box you drive by.
I've been doing it wrong this whole time
Benchwarmers
a movie
Interestingly e-gift card botnet fraud, seems to be the largest type of fraud.
remind me of discounted Minecraft gift codes one more time #sarcasm
yes, makes sense
@rugged root ^ (car unlock / blinker aka turn signal)
Rabbit didnโt graduate from College. I went to college
maybe dumb or trying to stall you because they can, @rugged root
oh โฆ i have that too, -.-'
it's a pain in the a**!
o/
The Financial Cost of Fraud Report, developed by national audit, tax, advisory and risk firm, Crowe found that global fraud was about $5.127 trillion
I remember vivek from when he unmuted me when i was trying out names in #sir-lancebot-playground and sent the commands too fast
CoffeeScript โฆ was used by a mod launcher for Minecraft: Pocket Edition โฆ
But that app is not updated anymore since Mojang removed debugging symbols
C# โฆ is that used by SourceMod (L4D2 / etc.)?
the FTC had 2.2 million fraud reports in 2020: 1. identity theft 2. imposter scams 3. online shopping reviews
identity theft seems to be the common thread
is anyone arguing that fraud isn't a problem?
Cats are very intelligent
If we could solve identity theft, we could "solve fraud"
the argument you need to make is that crypto leads to less fraud than the current system
and by "solve fraud" I mean push those fraudsters into some other type of fruad.
Bitcoin cannot be reverted
if you are a registered business, then the government can still force you to make payments.
what is the relevance of this?
as in paying for ransomware recovery
I'm still interested in trying understand what the global fraud market looks like.
cant undo bitcoin to recover
For small frauds, most of the time, it is more expensive for the "system" to recover than what it's worth..
is that a feature or a bug?
once you transfer the bitcoin, it is gone
"Nearly 75 percent of Organizations Were Targets
of a Payments Fraud Attack in 2020" https://www.jpmorgan.com/content/dam/jpm/commercial-banking/documents/fraud-protection/2021-afp-payments-fraud-and-control-survey-report-highlights.pdf
its like a paintball gun, once fired, the paint is not going back in the pellet
https://www.actionfraud.police.uk/a-z-of-fraud it's UK oriented, but this breaks down a bunch of different types of fraud. It doesn't comparatively discuss prevalence though
attempted or actual = just irrelevant
if 99% of those go to spam
who gives a toss
Iโm still confused the point here
[inb4 we mention Minecraft kids doing stupid piracy & needing help getting their account back, and complain about wait times]
[or don't know how to read basic instructions on how to provide a Hijack This log / etc. and still complain]
All UK stats, but presumably they're not that globally exceptional https://www.ukfinance.org.uk/system/files/Fraud The Facts 2021- FINAL.pdf
and / or they assume the "community support" Discord is ran by actual Mojang staff -.-'
What does centralized vs decentralized mean in this chart?
keeping it active and with help from the bank / police, they can catch the thief if it is in-person charges
police rarely give a shit
not even if the card is set to "out of money" and the police get told to check a location's cameras?
it is also a hastle to report things
You have to identify them, prove it in court
also complain loudly in discord
i don't like contact-less โฆ can be detected from some wallets by NFC phones
and even then, it's misdemeanor unless it's massive amount
I would complain loudly in discord, if I had been subjected to fraud.
I would also~~ wine ~~ whine to my friends.
NFC-capable *
please don't ๐ญ
WINE ?
whine?\
each device in playback & recording โฆ
advanced tab โฆ
disable the "exclusive" checkbox
then communications tab, have no audio changing
A group called ACFE (Association of Certified Fraud examiners) found 3.6 Billion of losses from 125 countries in 2020 https://acfepublic.s3-us-west-2.amazonaws.com/2020-Report-to-the-Nations.pdf
"Asset misappropriation, which involves
an employee stealing or misusing the employing orga-
nizationโs resources, "
Thanks, @ebon python >w<
a sausage?
those people are so lame
classic case of rich people wasting money
Every companies ethics are screwed up
at that level
the problem with the broken windows theory, is that it has largely been dismissed as an effective law enforcement technique
Sure but to most companies, they see it as valid way
@quasi condor which type of professional are you talking about ?
Itโs sounds good in practice and perfect โsome upper manager is thrilled. โ
sausage thief
this is why we cant give white people power
they launch sausage investigations
charlie would be the type of person to launch a sausage investigation
and deem it as for 'tax reasons'
we need to keep certain people Out of Power
talking to charlie is like listening to Harry Potter
@zenith radish what is this language that you are coding ?
typescript
๐คฃ
Fractional Trading # Fractional shares are fractions of a whole share, meaning that you donโt need to buy a whole share to own a portion of a company. You can now buy as little as $1 worth of shares for over 2,000 US equities.
By default all Alpaca accounts are allowed to trade fractional shares in both live and paper environments. Please make ...
JavaScript is like English: there arenโt really any rules, just a whole bunch of exceptions you need to memorize.
const foo = (value) => {
return
value
}
That becomes:
const foo = (value) => {
return;
value;
};
@amber raptor so, you think languages that uses semicollon, are better to writte a code ?
No but consistency is critical
JavaScript: FUBAR instead of Foo and Bar
gammon?
?
?
commit what ?
Fraud? I donโt see any fraud. Just smart people taking advantage of a weak system.
It's still fraud. Stealing money from the company for personal gain.
with
Now what are the numbers based on whether they ask for pineapple on pizza?
Thatโs where we get into morals and/or ethics.
Intelligence is knowing that a tomato is a fruit. Wisdom is not including it in a fruit salad. Philosophy is asking whether ketchup is a smoothie.
I mean, we do have a donut budget for morning scrum.
it depends on the woman and man furyo
Male: 108,000
Female: 23,800
(Approx)
the problem is theirs so many power hungry men like Charlie
i thinks tha woman are less trusthable
where as soon as they get power, theyre going to screw everyone over
than man
Why?
Is there anything relating to a personโs choice in programming language and fraud?
Well that's blatantly sexist
because they are more emotionally unstable
.
You clearly havenโt met many men on the road then.
sorry for my english
Sure but that isn't actually accurate or a thing
I find that offensive. Women have a little-more-than-monthly cycle while men don't have it.
Women are once a month, men are continuous.
Men actually have that cycle as well
Menstration?
It's just nowhere near
Everyone who has driven on I-95 at 5pm knows that men are very unstable.
Ah.
No a hormone cycle
seems like theft is 70 billion in the USA and embezzlement is 50 billion in the USA roughly
women are not ambitious that's the problem
Again, that's factually incorrect
Keep digging Yuri
@molten pewter can you send the link where youre getting all this stuff from? I could use it. Thank you
"most organizations (54%) in our study did not recover any of their
losses. "
I'd really appreciate it if you stop commenting on this, Yuri. What you're saying is coming off as sexist and offensive.
Yuri needs to learn the most important rule: donโt dig yourself into a hole you canโt get out of.
it's not coming "off" as sexist and offensive, it is @light python
if you wish to stay here please read our #rules and #code-of-conduct
You're right
It absolutely is offensive and also factually incorrect.
most statement were demonstrably false
tip #1 way of getting caught
IT controls, just above confession.
for last place
Corruption #1, followed by billing
I'm in a finance firm. We recently lost some senior devs because they got into NFTs, despite corporate policy strictly forbidding non-traders working with crypto.
financial statement fraud though has the highest mean.
either this study is undermeasuring fraud in the non-industrialized world, or the industrialized world is a much greater target.
In 2017 a department in the United Kingdom undertook a
fraud measurement exercise to quantify patient
prescription fraud.
Some groups of people are exempt from paying for
prescriptions based on their income and age. The exercise
wanted to identify those who were fraudulently claiming for
free prescriptions.
The measurement exercise identified 2.8% of fraud and
error combined, equating to ยฃ167.8 million lost to fraud.
for reference - prescriptions cost a flat fee of ยฃ10 regardless of the drug
The measurement exercise identified 2.8% of fraud and
error combined,
I imagine that and error is doing a lot of heavy lifting
me and @rugged tundra are watching the Superbowl on sunday
I don't really understand that the prescription fraud is... are they selling it overseas to non UK citizens for profit?
lots of people are exempt from paying for subscriptions
I think all you need to prove that is a little paper card thing
or maybe just saying to the pharmacist that you are exempt
so I'm guessing it's just taking drugs for yourself and not paying for them
@molten pewter Come back my friend
digital fraud is a big issue
I'll just judge you silently
@spring kraken ๐คฃ
its basic food
i dont know whats so impressive to you
its maybe not nasty ass diner food, but its not as good as what youre saying. Its just regular normal food
nah its good food I get its basic
it is
salt and no pepper
no seasoning
i used to eat that food everyday growing up
trust me, its not good(as good as youre reaction)
youre going to have people flying out just to get that food, and its going to be a Dissapoinment
@molten pewter I looked into the lobster stuff before - never found a reasonable conclusion about the "right" way to kill lobsters
its nowhere near what your reaction indicated
if you can find it without too much effort, I'm curious to see something about the right way
lets try looking again ๐
I believe the method of killing involves chilling or freezing
yes actually
that's what I'd heard as well
deep freeze them
then they go into a shut down mode
nah way better than an american breakfast where its just eggs and bacon. And basic is not always bad
and it doesn't matter how you kill them really
The better way is just eat them whole
I did it with a science experiment with cockroaches...
i want to sit down with a bottle of wine with @zenith radish and discuss life.
Borscht (English: (listen)) is a sour soup common in Eastern Europe and Northern Asia. In English, the word "borscht" is most often associated with the soup's variant of Ukrainian origin, made with red beetroots as one of the main ingredients, which give the dish its distinctive red color. The same name, however, is also used for a wide select...
Cepelinai (lit. "zeppelins"; singular: cepelinas) or didลพkukuliai are potato dumplings made from grated and riced potatoes and stuffed with ground meat, dry curd cheese or mushrooms. It has been described as a national dish of Lithuania, and is typically served as a main dish.The name of Cepelinai come from their shape that resembles of a Zeppe...
Kugelis, also known as bulviลณ plokลกtainis ("potato pudding"), is a potato dish from Lithuania. Potatoes, bacon, milk, onions, and eggs are seasoned with salt and pepper and flavoured, for example with bay leaves and/or marjoram, then oven-baked. It is usually eaten with sour cream or pork rind with diced onions.Similar dishes include the Jewish...
New Zeland and Norway have banned the boiling of lobsters
yes pleasee!
this looks good
barbarians
Animal Welfare (Sentience Bill), currently in the House of Lords, is exploring the ethics
what do they do instead? shove them in the crock pot?
lithuianian cuisine is better than british food
theyre using marjoram and bay leaves...
england would use 0.1 ounces of salt
and that would be for 1 meal, in a week
7 foot 2???
Vast numbers of crustaceans are produced by aquaculture and caught in fisheries to meet the increasing demand for seafood and freshwater crustaceans. Simultaneously, the public is increasingly concerned about current methods employed in their handling and killing. Recent evidence has shown that decapod crustaceans probably have the capacity to s...
7 foot 2 and youre a programmer?
youre life must be a failure
imagine having those gifts
and doing a regular thing/regular task
I mean, there are plants that respond to pain stimuli as well
https://en.wikipedia.org/wiki/Mimosa_pudica
Mimosa pudica (from Latin: pudica "shy, bashful or shrinking"; also called sensitive plant, sleepy plant, action plant, touch-me-not, shameplant) is a creeping annual or perennial flowering plant of the pea/legume family Fabaceae. It is often grown for its curiosity value: the compound leaves fold inward and droop when touched or shaken, defendi...
wait, this guy is your coworker?
at my previous company yea
we went to boot camp together
played vidya
ate kebabs
di gua qiu
'they love balls'๐
@zenith radish what tea? Oolong tea? what type of oolong?
tea master
depart knowledge on me
jin xuan
thank you
sukiyaki
'most british people i know, they have no since of cuisine...they just eat bread and chicken breasts all day.' -Charlie
my point proven about british food
see people try to defend their food
but the truth comes out eventually guys...
brb
hey guys
hey uhh can anyone help me with a coding error i have? XD
you're better off going through the text help system. See #โ๏ฝhow-to-get-help
ohh
caldav
Thirty-two percent of U.S. adults say they personally own a gun, while a larger percentage, 44%, report living in a gun household.
brightness so low ๐ฌ
that's because it's greyed the page out asking me to log in
Effective altruism (EA) is a philosophical and social movement that advocates "using evidence and reason to figure out how to benefit others as much as possible, and taking action on that basis".People who embrace effective altruism are labeled effective altruists. Common practices of effective altruists include significant charitable donation t...
Carl Celian Icahn (; born February 16, 1936) is an American financier. He is the founder and controlling shareholder of Icahn Enterprises, a public company and diversified conglomerate holding company based in New York City. Icahn takes large stakes in companies that he believes will appreciate via changes to corporate policy and he then pressur...
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
!projects
Kindling Projects
The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.
@pseudo nebula
" Once they took aim at a company, they bought the minimum number of shares that would allow them to submit resolutions at that companyโs annual shareholder meeting. (Securities laws require shareholders to own at least $2,000 of stock before submitting resolutions.) That gave them a nuclear option, in the event the companyโs executives refused to meet with them."
@quasi condor
^
Bananaman must fight the evil villains and save the world from destruction.
Subscribe to Beano so you NEVER miss an upload! ๐๐http://bit.ly/SubscribeBeanoOfficial
And head over to Beano.com https://www.beano.com for more epic videos, games ๐ฎ and latest news on Dennis and Gnasher Unleashed TV series coming soon ๐บ.
Beano on...
:(
boo
behold, some bizarre spritesheets...minecraft ascii dirt
def Dirt():
return Tile('Dirt',
[',', ',.\n'
'.,', ',.,\n'
'.,.\n'
',.,'],
{0.99: Items.Rock(),
0.01: Items.Gold_Nugget()})
Bananaman - Ultimate Collection dvd available on amazon https://www.amazon.co.uk/gp/product/B0002VF4QM/ref=as_li_tl?ie=UTF8&camp=1634&creative=6738&creativeASIN=B0002VF4QM&linkCode=as2&tag=frontroomarca-21&linkId=3cfbc6507b635cc72adf9fa021b930a7
Want to look just like Eric lol - https://www.amazon.co.uk/gp/product/B000WUI7EO/ref=as_li_tl?ie=UTF...
this is my childhoon.
I have never seen this, ๐ฎ
I think it was UK only, from 1983-1988 or so...
#bot-commands
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
bruh
I've had those, they are very tasty
hey, good night, which are the requeriments to receive permissions to talk in this channel ?
"The Chrysanthemums" is a short story by American writer John Steinbeck. It was first published in 1937 before being included as part of his collection The Long Valley the following year.
?
whats it doing tho
absoulutely no effort tkinter game https://drive.google.com/file/d/1D59pKg3uW0GEiS2gJyY5wj0urvrWRzxy/view
video t stream
oh you want the video role

love you ๐
