#voice-chat-text-0
1 messages · Page 310 of 1
Damned bananas
the radiation punches little holes in your dna as it passes thru ur body
and lots of other materials commonly used
Fusion bongs
im just saying theres other harmful stuff
For some values of radiation
yeah for sure, its just badass that radiation cuts ur dna
the harms of oil/gas/coal >>>> nuclear
deaths per MW for oil/gas/coal >>>> nuclear
some values of radiation will kill u
some values of CO will kill u
exhausted by a car
prolly the mines 💀
the coal demons
u either die there or get mesophelioma from breathing coal dust 24/7
weird that solar is low then, those aren't easy to produce
true
and for wind, ig, bird don't count
509-46-6583
@raw carbon You're a literal rocket surgeon
damn didnt blur mine
I feel lied to
You just tell that script kiddy to send his worst at me. here's my ip: 127.0.0.1
localhost:0000
come at me
I'll be honest, I for the longest time thought it was script kitties
Because I'd only heard it said out loud
lol!
i'mma send the Boeing hit squad after ya all
Nah, they're overbooked this week
👀
write ur will quick
more importantly delete thy browser history before they come
A fragment from the movie XXX. What do you do when you get pinned down by a sniper who also happens to be smoking a cigarette? You stop thinking regular cop and start thinking playstation.
The fwooshy bit at the back
it's all just a system system
I feel that way looking at some of these frameworks
Semantics is the study of linguistic meaning. It examines what meaning is, how words get their meaning, and how the meaning of a complex expression depends on its parts. Part of this process involves the distinction between sense and reference. Sense is given by the ideas and concepts associated with an expression while reference is the object t...
time to argue what the meaning of meaning is
metaphysics 😩
@rugged root why do people poke his fucking nda
😂
bc its human nature
It's all VBA in my head
egg
🥱
C++
@stark river what language is that?
@dry jasper ^
Utilitarianism relies on predicting the consequences of actions to determine their morality. Critics argue that this approach is inherently uncertain and may lead to moral relativism, as the assessment of consequences can vary depending on individual perspectives and biases.
Critics argue that utilitarianism may justify actions that violate individual rights or moral duties if those actions lead to the greatest overall happiness. For example, utilitarianism might justify sacrificing the rights of a minority group if it benefits the majority, which deontologists find unacceptable.\
Utilitarianism treats individuals as means to an end, focusing solely on maximizing overall utility without sufficient regard for the intrinsic value of each person. Deontologists argue that this instrumentalization of individuals is morally objectionable and fails to respect their inherent worth and dignity.
Deontologists emphasize the importance of moral integrity and consistency in ethical decision-making. They argue that utilitarianism may require individuals to act in ways that compromise their moral integrity or violate their deeply held principles in pursuit of the greatest happiness.
I've lost track of if my blood pressure is up because of philosophy or this salesforce apex class I'm debugging
Deontologists advocate for rule-based ethics, where actions are judged based on adherence to universal moral principles or duties, rather than the specific consequences of each action. They argue that this approach provides a more stable and consistent foundation for ethical decision-making compared to utilitarianism's focus on consequences.
have a lovely night
didnt know mentioning philsophy is that bad
bad? nah. Guaranteed to light some fires? oh ya!
wild u said im steaming tho
legit krzystof is yelling at me and im just making logical responses lmao
and somehow I am in the wrong
I never said you were. I literally told BOTH of you to stop
I am
SO confused
@alpine crow If you think I'm a dictator, just say it.
I'd rather just know
dude's got china on his mind 24/7
not u lmao
unjust discord lol
I just randomly got kicked basically after coming back from being afk lmao
with 0 warning
Ah yeah, Discord connection issues at their finest
not literally kicked moving channels then saying im boutta be moved when I joined is the same effect lmao
its fine tho
its prolly just bc I didnt hear what u said bc I was afk
Rindfleischetikettierungsüberwachungsaufgabenübertragungsgesetz
hello
thanks!
wait @silk prism wat happend
@silk prism what all langs yk?
no
coding
yk html?
I only know python, javascript, typescript and html
i did i vanish or did you guys vanish?
@heady shoal If you're done?
@heady shoal Come back in and we can have a chat about what just happened.
@heady shoal Suit yourself. Over text it is.
The rapid voice channel switching spam was wholly unnecessary and thoroughly obnoxious. I was attempting to explain the following information, but you made that difficult.
To talk in the voice chat, see the #voice-verification channel for the criteria and instructions for unmuting.
hi
@somber heath
class User(): def __init__(self, name, age, gender): self.name = name self.age = age self.gender = gender def details(self): print ('"Personal Details"') print ("") print ("Name: ", self.name) print ("Age: ", self.age) print ("Gender: ", self.gender) class Bank(User): def __init__(self, name, age, gender): super().__init__(name, age, gender) self.balance = 0 def deposit(self,amount): self.amount = amount self.balance = self.balance + self.amount print("Account balance has been updated: $", self.balance) def withdraw(self, amount): self.amount = amount if self.amount > self.balance: print ("Insufficient Funds | Balance Available: $", self.balance) else: self.balance = self.balance - self.amount print ("Account balance has been updated: $", self.balance) def view_balance (self): self.details() print ("Account balance has been updated: $", self.balance)
is this correct?
ok
😂
my banks have genders
I am from asia
oh yea
explanation
class MyClass:
def __init__(self, var):
self.var = var
def alpha(self, value):
self.var = self.var + value
def beta(self):
print(self.var)```
```py
class MyClass:
def __init__(self, var):
self.var = var
def alpha(self, value):
self.value = value
self.var = self.var + self.value
def beta(self):
print(self.var)```
!e py var = 5 var += 10 print(var) var += 4 print(var)
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 15
002 | 19
!e py age = 18 name = 'Peter' print('Your name is ' + name + ' and you are ' + str(age) + ' years old.') print('Your name is', name, 'and you are', age, 'years old.') print(f'Your name is {name} and you are {age} years old.')
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | Your name is Peter and you are 18 years old.
002 | Your name is Peter and you are 18 years old.
003 | Your name is Peter and you are 18 years old.
!e py name = 'Peter' age = 18 print('Your name is {} and you are {} years old.'.format(name, age))
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
Your name is Peter and you are 18 years old.
!e ```py
def func(*args):
print(args)
func()
func(1)
func(1, 2)
func(1, 2, 3)```
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | ()
002 | (1,)
003 | (1, 2)
004 | (1, 2, 3)
!d print
print(*objects, sep=' ', end='\n', file=None, flush=False)```
Print *objects* to the text stream *file*, separated by *sep* and followed by *end*. *sep*, *end*, *file*, and *flush*, if present, must be given as keyword arguments.
All non-keyword arguments are converted to strings like [`str()`](https://docs.python.org/3/library/stdtypes.html#str) does and written to the stream, separated by *sep* and followed by *end*. Both *sep* and *end* must be strings; they can also be `None`, which means to use the default values. If no *objects* are given, [`print()`](https://docs.python.org/3/library/functions.html#print) will just write *end*.
The *file* argument must be an object with a `write(string)` method; if it is not present or `None`, [`sys.stdout`](https://docs.python.org/3/library/sys.html#sys.stdout) will be used. Since printed arguments are converted to text strings, [`print()`](https://docs.python.org/3/library/functions.html#print) cannot be used with binary mode file objects. For these, use `file.write(...)` instead.
I am getting no output why?
maybe not exactly
its too cursed
!e ```py
class MyClass:
pass
instance = MyClass()
print(MyClass)
print(instance)```
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | <class '__main__.MyClass'>
002 | <__main__.MyClass object at 0x7fa22debb650>
I will do this for both classes?
@whole bear 👋
!e ```py
class MyClass:
def greet(self):
print('Hello, world.')
instance = MyClass()
instance.greet()```
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
Hello, world.
hi 🤝
instance = user("name",35,"male")
or
init(*args,**kwargs)
hello guys
typeerror
perfect
for bank
@somber heath Is my question dumb or people on Stack are rude? When ever I ask about something on Stack I got -1 under a min.
I would like to find one book that compares different implementations and explains their historical and technical aspects but I couldn’t. So I asked there.
https://stackoverflow.com/questions/78462396/why-does-cpython-implement-gil-and-v8-does-not
what's this guy
Me?
correct what ?
Who?
@earnest grotto
sorry
it's mistake
Your initial question may be better posed to the #python-discussion channel.
That is the channel designated for discussing the Python language.
Why no GIL, though? I think Facebook and Google came up to the PSF and went, "We use Python and want to use it in a truly threaded way, so you can have some of our engineers on us work on the problem with you. @earnest grotto
I should not make Bank child class?
is the vc about oop structure ?
now
Voice chat is designated general discussion/offtopic. Sometimes we talk about Python, often we do not.
I am not ask why no or why yes. More of just why this way and what are the pros and cons of this way
?
I wanted to ask on stack because it is place where questions does no disappear like on discord chat
Right. Yeah, I don't delve that deep into things. Sorry. 🙂
There may be discussion in relevant PEPs.
Or in the Github.
class User: def __init__(self, name, age, gender): self.name = name self.age = age self.gender = gender def details(self): print ('"Personal Details"') print ("") print ("Name: ", self.name) print ("Age: ", self.age) print ("Gender: ", self.gender) my_details = User("Touqeer", 16, "Male") my_details.details() class Bank(): def __init__(self): self.balance = 0 def deposit(self, amount): self.balance += amount print(f"Account balance has been updated: $, {self.balance}") def withdraw(self, amount): self.amount = amount if self.amount > self.balance: print (f"Insufficient Funds | Balance Available: $, {self.balance}") else: self.balance -= self.amount print (f"Account balance has been updated: $, {self.balance}") def view_balance (self): self.details() bank_details = Bank()
It is not your fault. Can you help me rewrite it?
now?
As you can see, I'm currently assisting MTR with their project. I can take a look at your question wording later and see what I have to say about it if anything.
How to find or ask? I find many related questions on stack that has more then 10 years but when I ask -2. And I ask those questions and answers helpful so I wanted to have my shot
The PEPs will be viewable via python.org
Np thanks 😊
what I have to do?
Write your Discord code posts like it shows you.
def __init__(self, name, age, gender):
self.name = name
self.age = age
self.gender = gender
def details(self):
print ('"Personal Details"')
print ("")
print ("Name: ", self.name)
print ("Age: ", self.age)
print ("Gender: ", self.gender)
my_details = User("Touqeer", 16, "Male")
my_details.details()
class Bank():
def __init__(self):
self.balance = 0
def deposit(self, amount):
self.balance += amount
print(f"Account balance has been updated: $, {self.balance}")
def withdraw(self, amount):
self.amount = amount
if self.amount > self.balance:
print (f"Insufficient Funds | Balance Available: $, {self.balance}")
else:
self.balance -= self.amount
print (f"Account balance has been updated: $, {self.balance}")
def view_balance (self):
self.details()
bank_details = Bank() ```
Newline after the py
class User:
def __init__(self, name, age, gender):
self.name = name
self.age = age
self.gender = gender
def details(self):
print ('"Personal Details"')
print ("")
print ("Name: ", self.name)
print ("Age: ", self.age)
print ("Gender: ", self.gender)
class Bank:
def __init__(self):
self.balance = 0
def deposit(self, amount):
self.balance += amount
print(f"Account balance has been updated: $, {self.balance}")
def withdraw(self, amount):
self.amount = amount
if self.amount > self.balance:
print (f"Insufficient Funds | Balance Available: $, {self.balance}")
else:
self.balance -= self.amount
print (f"Account balance has been updated: $, {self.balance}")
def view_balance (self):
self.details()
my_details = User("Touqeer", 16, "Male")
my_details.details()
bank_details = Bank()```
Makes it easier to read.
yea
Okay, look at Bank's __init__.
looking
Oh, you've changed it.
I would move the code in between the classes to the bottom.
Under the classes, not in between.
Edit your existing post until scrolling up becomes annoying. Yes.
done
I am confused what I am doing
I am coming in 2 min
ok?
I am coming in 2 minutes
You're going and coming back in two minutes?
yea
I am back
I am changing from laptop to computer so can you wait?
thanks
done
Do you want me to combine the classes and call it Account?
I think that would make sense from a semantic standpoint.
Ok
It feels like you're writing a class for an account
!e ```py
class MyClass:
def init(self, value):
print(value)
MyClass('Hello, world.')```
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
Hello, world.
value = 'Hello, world.' in the __init__ execution.
Because it's provided as argument in the call to the class.
@digital condor 👋
The equivalent as a function would be...
!e ```py
def func(value):
print(value)
func('Hello, world.')```
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
Hello, world.
In terms of how the arguments go to the parameters.
🫡 Good morning Bois ! Just woke Up
!code
class Account:
def __init__(self, balance, name, age, gender):
self.balance = balance
self.name = name
self.age = age
self.gender = gender
def user_details(self):
print ('"Personal Details"')
print ("")
print ("Name: ", self.name)
print ("Age: ", self.age)
print ("Gender: ", self.gender)
def deposit(self, amount):
self.balance += amount
print (f"Account balance has been updated: $, {self.balance}")
def withdraw(self, amount):
if amount > self.balance:
print (f"Insufficient Funds | Balance Available: $, {self.balance}")
else:
self.balance -= amount
print (f"Account balance has been updated: $, {self.balance}")```
now?
yea
now
with open(path, 'w') as _:
pass```
class Account:
def __init__(self, balance, name, age, gender):
self.balance = balance
self.name = name
self.age = age
self.gender = gender
def user_details(self):
print ('"Personal Details"')
print ("")
print (f"Name: {self.name}")
print (f"Age: {self.age}")
print (f"Gender: {self.gender}")
def deposit(self, amount):
self.balance += amount
print (f"Account balance has been updated: $, {self.balance}")
def withdraw(self, amount):
if amount > self.balance:
print (f"Insufficient Funds | Balance Available: $, {self.balance}")
else:
self.balance -= amount
print (f"Account balance has been updated: $, {self.balance}")
account = Account(0, "Touqeer", 16, "Male") ```
full code
what should I delete?
done
done
My code is fine?
should I ask for the input for name, age, and gender?
ok
how I can do it?
!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!
should I do it like this?
?
@somber heath
just noticed that in the server there are three OpalMist.
@somber heath
I'm the original.
??
ok
def main():
name = print (input("What is your name? "))
age = print (input("What is your age? "))
gender = print (input("What is your gender? "))
class Account:
def __init__(self, balance, name, age, gender):
self.balance = balance
self.name = name
self.age = age
self.gender = gender
def user_details(self):
print ('"Personal Details"')
print ("")
print (f"Name: {self.name}")
print (f"Age: {self.age}")
print (f"Gender: {self.gender}")
def deposit(self, amount):
self.balance += amount
print (f"Account balance has been updated: $, {self.balance}")
def withdraw(self, amount):
if amount > self.balance:
print (f"Insufficient Funds | Balance Available: $, {self.balance}")
else:
self.balance -= amount
print (f"Account balance has been updated: $, {self.balance}")
account = Account()
main()```
@hallow isle 👋
like this?
Looking good.
hii guys
Nice use of if name main.
thanks
anyone know how to use couch base in python?
i am not able to connect to data base and i need help
Now create an instance of your class and demonstrate it.
Maybe talk to #databases or look at #❓|how-to-get-help
account = Account() like this?
Plus...what?
???
What's missing?
???
I dont understand
Run the code.
@jaunty ridge 👋
worked
like this
I will answer
it is because when you want to import this file in other files
I am confused
what is instance?
oh ok
when you are running?
every generation think same new genration is weak and soft
# src/print-pie-text.py
# pseudo code
from src.loader import load_pie
from loader import load_pie
# noticed i can't do this like in javascript
from ../loader import load_pie
def print_pie_text(text):
pie = load_pie()
print(f"{pie} {text}")
if __name__ == "src":
print_pie_text("src")
# running file directly
if __name__ == "__main__":
print_pie_text("main")
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
random
But if I were, for example and I don't think you actually can for reasons but lets pretend, open and run random.py directly, the __name__ at the global scope would be '__main__'
!e py print(__name__)
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
__main__
@delicate river 👋
yo
package1/a.py
package2/b.py
@somber heath where are you?
def main():
name = input ("What is your name? ")
age = input("What is your age? ")
gender = input("What is your gender? ")
account = Account(0)
account.user_details()
class Account:
def __init__(self, balance):
self.balance = balance
def user_details(self):
print ('"Personal Details"')
print ("")
print (f"Name: {name}")
print (f"Age: {age}")
print (f"Gender: {gender}")
def deposit(self, amount):
self.balance += amount
print (f"Account balance has been updated: $, {self.balance}")
def withdraw(self, amount):
if amount > self.balance:
print (f"Insufficient Funds | Balance Available: $, {self.balance}")
else:
self.balance -= amount
print (f"Account balance has been updated: $, {self.balance}")
def view_balance(self):
self.balance()
if __name__ == "__main__"
main()
Avoid the use of the global keyword.
Everything you want to happen when you run the module directly goes into your main.
You do not need to precreate your name, age and gender strings.
Everything outside of your main and the if name main will be run on import of this module.
@upbeat bobcat
Like this
@somber heath ?
Let's see.
Do you want your main function to be run if you import this module?
def func():
a = 1
b = 2
c = 3
func()```At what point do I use a b or c?
Do I have access to a b or c outside of the function?
@ruby depot 👋
hi
yep
AFK
no i am just a beginner
everything
have you heard about harvard cs50 course
oh
i was thinking to enroll in it
like this
I have put if name main
what
I dont understand that
yes
hey guys i have basic understanding of python so what is best project i have to do as a beginner
No such thing.
Whatever teaches you something new.
Whatever reinforces what you know.
now
I will put them in personal details
I was using global for that
the balance is 0
@tight bane 👋
name, age, gender
Hi I cannot talk
Ok thank yu
I just realised just how unrealistic using age for many examples is
(because it can change without any actions taken by anyone)
hi
AFK
back
I just started realizing that programming is hard
ok I should take a break
What do you do as profession?
Ok
np
what is CIN
ok
bye for now
I am taking break
you play any games?
At what age you started programming?
1191
1991
GM
yes.. i cannot figure this out @dry jasper
ternary operator errors but normal if/else works
theoretically it should work @dry jasper
allegedly seems to do with type inference
discord failed sound thingy again
I'll try reconnecting to check something
maybe it's the recursion
hmm
last time I think it clearly said headphones on the third option
ternaries, as far as random sources on the internet say, aren't constexpr
maybe recursion does not compute at compile time
this works
constexpr int greater(int x, int y) // now a constexpr function
{
return (x > y ? x : y);
}
types are same
Heyo
i only have one type (non-type template though but still)
make 1 guaranteed to be int
maybe recursion fails because it needs to instantiate the template for N-1 always? or are you passing max(N-1, 0)?
are N - 1/other expressions even treated as a valid template argument?
so, like, does factorial<2+1> work with iteration
theoretically it should.. at compile time it will just compute the value and replace any operation
No sound
I hear nothing...
@real fjord👋
👋
<@&831776746206265384> can i have streaming permission please
want to show my consumer data for data "behandling" to make curves what not in python, im not going send SS of the raw data..
Idk what's happening in the vc rn, would you be interrupting what sazk's doing or are they ok with it
!stream 295259015519404032
✅ @random copper can now stream until <t:1715434199:f>.
The permanent role is given out by Hemlock at his discretion
Which is approximately "are you usually around in vc, have you proven to be trustworthy with temporary streaming perms before, and do you have a good reason to be streaming often"
You can export it to CSV
Here's the google sheets version but there should be smth similar on whatever online thing you're using (seems like you're on google sheets anyway)
I think where you define the party names you can just chuck a .dropna()





Guys how can I make a simple app with Tkinter that can be dragged by left clicking to the middle of the screen? The app should be without frame so
I know everything to make the app except this
Hi
They could sell icecream from out the ambulances. Then, if they ever had to transport the deceased, they could shove them in the icecream storage freezer.
Got to squeeze out those money making opportunities.
They are a business.
beginning to look like LEGO vehicle
mental health, ugh
do you think having python send data to C++ is a good combination ? is it called bindings , wrappers ? @primal shadow
I don't see why it'd be bad
im puzzled over using C OR C++ , I do stuff with microcontrollers
I use niether
micro python ? or ...
I don't work with microcontrollers or the C's
ohh PC dedicated software is your world ?
mobile apps / web anymore
full stack + mobile, DBA & sysadmin is my day to day
The joys of startup life
some write about using Rust rather than C ? C++ , but I dont know enough about it
neither do I, lol
its easy to spend 6 months learning stuff then find out its being phased out
Recent research, such as BitNet, is paving the way for a new era of 1-bit Large Language Models (LLMs). In this work, we introduce a 1-bit LLM variant, namely BitNet b1.58, in which every single parameter (or weight) of the LLM is ternary {-1, 0, 1}. It matches the full-precision (i.e., FP16 or BF16) Transformer LLM with the same model size and ...
Trinary= 1.58 bits per value?!? Why not 1.5?
IMO a marketing thing
Hi
so ur doing a dos attack or ur ssl is not configured?
You can use process hacker to dll inject into video games btw js
oh, cool
Ok I gotta do 50 messages before I can talk
folks, ask me questions, help me complete my 50 messages
Please don't add me for tech support, use comment sections/discussions. I don't approve any modpacks. For commission related questions, go to my kofi page: https://ko-fi.com/ki5mods
anything
!code
!paste
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 Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.
i hit the left arrow button and it will not move
#---import(s)---#
import pygame
import time
import random
#---------------#
WIDTH, HEIGHT =1000, 800
WIN =pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption("Space Doge")
BG=pygame.transform.scale(pygame.image.load("firstgamebackround.jpg"),(WIDTH, HEIGHT))
PLAYER_WIDTH = 40
PLAYER_HEIGHT = 60
player_VEL = 5
def draw(player):
WIN.blit(BG,(0, 0))
pygame.draw.rect(WIN, (255,0,0), player)
pygame.display.update()
def main():
run = True
player=pygame.Rect(200, HEIGHT-PLAYER_HEIGHT,PLAYER_WIDTH, PLAYER_HEIGHT,)
Clock=pygame.time.Clock()
while run:
Clock.tick(60)
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
break
keys = pygame.key.get_pressed()
if keys[pygame.K_LEFT] and player.x - player_VEL <= 0 :
player.x -= player_VEL
if keys[pygame.K_RIGHT] and player.x + player_VEL + player.width <= WIDTH:
player.x += player_VEL
draw(player)
pygame.quit()
if __name__ == "__main__":
main() ```
it only moves right
if i could share share my screen i coud show you
my apoligys
the tutorial im following: https://youtu.be/waY3LfJhQLY?feature=shared
In today's video I will be giving you guys an introduction to Python Game Development using the Pygame module, which is a simple 2D graphics library in Python. This tutorial will be simple, fun, yet allow you to create an extensible game!
💻 Master Blockchain and Web 3.0 development today by using BlockchainExpert: https://algoexpert.io/blockcha...
if keys[pygame.K_LEFT] and player.x - player_VEL >= 0 :
player.x -= player_VEL
Kevin David Mitnick (August 6, 1963 – July 16, 2023) was an American computer security consultant, author, and convicted hacker. He is best known for his high-profile 1995 arrest and five years in prison for various computer and communications-related crimes.
Mitnick's pursuit, arrest, trial, and sentence along with the associated journalism, bo...
https://youtu.be/aLUDhbQojxA?si=MtLvFA4b8-KSXA1m
@alpine crow this one right?
How Kevin Mitnick hacked into the world's largest tech companies. Stop data brokers from exposing your personal information. Go to my sponsor https://aura.com/newsthink to get a 14-day FREE trial and see how much of yours is being sold.
Follow Newsthink on X https://x.com/Newsthink
Newsthink is produced and presented by Cindy Pom
https://x.com...
sorry
aceback (most recent call last):
File "C:/first game/first game.py", line 56, in <module>
main()
File "C:/first game/first game.py", line 50, in main
draw(player, elapsed_time)
File "C:/first game/first game.py", line 23, in draw
time_text=Font.render(f"Time: {round(elapsed_time)}")
TypeError: type builtin_function_or_method doesn't define round method
#---import(s)---#
import pygame
import time
import random
#---------------#
pygame.font.init()
WIDTH, HEIGHT =1000, 800
WIN =pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption("Space Doge")
BG=pygame.transform.scale(pygame.image.load("firstgamebackround.jpg"),(WIDTH, HEIGHT))
PLAYER_WIDTH = 40
PLAYER_HEIGHT = 60
player_VEL = 5
Font =pygame.font.SysFont("comicsans",30)
def draw(player, elapsed_time):
WIN.blit(BG,(0, 0))
time_text=Font.render(f"Time: {round(elapsed_time)}")
pygame.draw.rect(WIN, (255,0,0), player)
pygame.display.update()
def main():
run = True
player=pygame.Rect(200, HEIGHT-PLAYER_HEIGHT,PLAYER_WIDTH, PLAYER_HEIGHT,)
Clock=pygame.time.Clock()
start_time =time.time()
elapsed_time = 0
while run:
Clock.tick(60)
start_time =time.time()-start_time
elapsed_time = time.time
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
break
keys = pygame.key.get_pressed()
if keys[pygame.K_LEFT] and player.x - player_VEL >= 0 :
player.x -= player_VEL
if keys[pygame.K_RIGHT] and player.x + player_VEL + player.width <= WIDTH:
player.x += player_VEL
draw(player, elapsed_time)
pygame.quit()
if __name__ == "__main__":
main() ```
My gameshow: https://www.twitch.tv/1dnsl
Discord: https://discord.gg/EP6atTv4mW
All Socials: http://linktr.ee/DNSL
what am i doing wrong?
haaaaaaaaaaaaaaaa - 911
Kevin Mitnick: How to Troll the FBI
Watch the newest video from Big Think: https://bigth.ink/NewVideo
Join Big Think Edge for exclusive videos: https://bigth.ink/Edge
The hacker Kevin Mitnick says he treated his fugitive status like a big video game.
------------...
anyone wanna play chess?
I just play casually lol
nah
maybe u can send link tho
and i can play anonymous
u can join the lichess link anonymous
@steel torrent
https://en.wikipedia.org/wiki/Zugzwang#:~:text=Zugzwang (from%20German%20'compulsion%20to,move%20will%20worsen%20their%20position.
Zugzwang (from German 'compulsion to move'; pronounced [ˈtsuːktsvaŋ]) is a situation found in chess and other turn-based games wherein one player is put at a disadvantage because of their obligation to make a move; a player is said to be "in zugzwang" when any legal move will worsen their position.
Although the term is used less precisely in gam...
Play Chess Variants on Chess.com! Mix things up and apply your skills in exciting new ways with these different types of chess games.
👋
Ah yes, the new AAA game - Chest!
Coming in Summer 2024 with an early beta already revolutionzing the video game industry with ✨ AI ✨ !
/s
Bro I’m dyslexic I’m sorry ;-;
And I’m also not English
I’m Greek
I didn't mean it in a mean/rude way.
Just thought it was a funny typo in the context - my bad
Oh I’m sorry then I take things not lightly
No worries
6 years old
On each flank you have a non-royal king and a royal one. Keep your royal king safe, and use non-royal to assist mating your opponent.
Play Chess Variants on Chess.com! Mix things up and apply your skills in exciting new ways with these different types of chess games.
we need a 4th player
btw
Interesting
ok I might try
Can't have that AWS bill going up!
Find a game, start a lobby, invite, join or spectate a game of three player chess. Play three player chess online free for web and mobile at 3-chess.com.
better join the link
sure
FrierenInChess
Yeah 3 player chess isn't good
@austere hornet https://store.steampowered.com/app/2021910/FPS_Chess/
Play an ordinary game of chess against a friend or a stranger.However, all your intricate strategies will crumble before the enemy rook's sniper trick-shot.All your practiced openings and counters will amount to nothing before the enemy queen's randomly sprayed machine gun.You finally checkmate the king. Unfortunately, it seems you are not ready...
Oh yeah, I don't have windows 🥲
https://abagames.github.io/crisp-game-lib-11-games/?pakupaku
People really liked this game for how simple it was. I saw it on Hacker News a while ago
btw yall willing to give me your usernames?
ye
is operator is used to check if both the objects are one and the same, whereas isinstance is used to check if the second parameter appears anywhere in the inheritance chain of the first parameter.
!e```py
class Car:
def init(self, color, name):
self.color = color
self.name = name
class Ferrari(Car):
def init(self, color, name, top_speed):
super().init(color, name)
self.top_speed = top_speed
car_instance = Car("Blue", "Generic Car")
ferrari_instance = Ferrari("Red", "Ferrari 488 GTB", 205)
print(car_instance is car_instance)
print(car_instance is ferrari_instance)
print(ferrari_instance is ferrari_instance)
print(ferrari_instance is car_instance)
print(isinstance(car_instance, Car))
print(isinstance(ferrari_instance, Car))
print(isinstance(ferrari_instance, Ferrari))
print(isinstance(car_instance, Ferrari))
@alpine crow :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | True
002 | False
003 | True
004 | False
005 | True
006 | True
007 | True
008 | False
@warm snow
Play Chess Variants on Chess.com! Mix things up and apply your skills in exciting new ways with these different types of chess games.
GG!
i need help
Checkmating an opponent: +20 points Stalemating yourself +20 Capturing active (colored) pieces: pawns +1, knights +3, bishops +5, rooks +5, queens +9, kings +20, Checking two players simultaneously: +1 Checking three players simultaneously: +5
Pawns promote on the 8th rank to a queen, rook, bishop or knight. Every player has 15 lives and any player can checkmate all the remaining players by reaching the four central squares with a royal king. Checkmates are worth 40 points.
Play Chess Variants on Chess.com! Mix things up and apply your skills in exciting new ways with these different types of chess games.
Play Chess Variants on Chess.com! Mix things up and apply your skills in exciting new ways with these different types of chess games.
We still chessing?
FrierenInChess
Join millions of players playing numerous chess games every day on Chess.com. Choose from blitz and daily games, play vs. computer, solve puzzles, and more.
Join millions of players playing numerous chess games every day on Chess.com. Choose from blitz and daily games, play vs. computer, solve puzzles, and more.
I'll also go guys, good game
@wind raptor may I stream
me 2
Play Chess Variants on Chess.com! Mix things up and apply your skills in exciting new ways with these different types of chess games.
Join the challenge or watch the game here.
Stream & download: https://wandw.to/saopaulo
Rave Culture Shop: https://shop.raveculture.com
Join the Rave Culture Playlist @ Spotify: http://raveculture.io/playlist
Connect with W&W:
http://instagram.com/wandwmusic
http://www.facebook.com/wandwofficial
http://twitter.com/wandwmusic
https://www.tiktok.com/@wandwmusic
Connect with The Lost Shep...
@rocky herald 👋
.ddg
(5, 7, 9) - Frieren
(2, 7, 11) - Frieren
(0, 6, 11) - Frieren
Flights everyone missed:
(3, 6, 7)
(1, 2, 9)
(0, 8, 9)
.help ddg
**```
.duckduckduckgoose
**Can also use:** `dddg`, `ddg`, `duckduckgoose`, `duckgoose`
*Start a new Duck Duck Duck Goose game.*
**Subcommands:**
**`duckduckduckgoose help`**
*Explain the rules of the game.*
.ddg help
Each card has 4 features
Color, Number, Hat, and Accessory
A valid flight
3 cards where each feature is either all the same or all different
Call "GOOSE"
if you think there are no more flights
+1 for each valid flight
+2 for a correct "GOOSE" call
-1 for any wrong answer
The first flight below is invalid: the first card has swords while the other two have no accessory. It would be valid if the first card was empty-handed, or one of the other two had paintbrushes.
The second flight is valid because there are no 2:1 splits; each feature is either all the same or all different.
Final scores:
Frieren: 3
.ddg
(0, 8, 10) - Frieren
(0, 3, 6) - Videoscope
(9, 10, 11) - Frieren
(2, 6, 11) - Frieren
(0, 1, 9) - Frieren
Flights everyone missed:
(1, 3, 5)
0 8 10
goose
0 1 9
Final scores:
Frieren: 3
Videoscope: -4
Flights everyone missed:
(1, 2, 7)
(7, 10, 11)
(5, 7, 9)
(1, 4, 10)
(1, 3, 6)
(0, 2, 8)
.quiz math
cube
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 6
BASE TWO QUESTION: Calculate 10001 - 1110
20s left!
10s left!
10
Better luck next time...
Let's move to the next question.
Remaining questions: 5
What is the bottom number on a fraction called?
denominator
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
When is the inaugural World Maths Day (format your answer in MM/DD)?
03/13
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 3
"Hexakosioihexekontahexaphobia" is the fear of which number?
13
666
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
Does the harmonic series converge or diverge?
diverge
@austere hornet got the correct answer :tada: 100 points!
converge
Let's move to the next question.
Remaining questions: 1
⅓πr^2h is the volume of which 3 dimensional figure?
sphere
sphere
cone
@austere hornet got the correct answer :tada: 100 points!
Remaining questions: 0
The round has ended.
@austere hornet Congratulations on winning this quiz game with a grand total of 600 points :tada:
.quiz math
2
prime
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 6
In set builder notation, what does {p/q | q ≠ 0, p & q ∈ Z} represent?
rationals
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 5
What is the bottom number on a fraction called?
denominator
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
0, 1, 1, 2, 3, 5, 8, 13, 21, 34 are numbers of which sequence?
fibonacci
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 3
"Hexakosioihexekontahexaphobia" is the fear of which number?
666
@alpine crow got the correct answer :tada: 100 points!
666
Let's move to the next question.
Remaining questions: 2
⅓πr^2h is the volume of which 3 dimensional figure?
cone
@alpine crow got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 1
cone
What is the highest power of a biquadratic polynomial?
4
2
@austere hornet got the correct answer :tada: 100 points!
Remaining questions: 0
The round has ended.
@austere hornet Congratulations on winning this quiz game with a grand total of 500 points :tada:
.quiz retro
What is the best selling game on the Nintendo GameCube?
Final scores:
animal crossing
mario bros
**Hint #1
**It is not a mainline Mario Game, although the plumber is present.
mario sunshine
super smash bros
@austere hornet got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 6
What was Mario's original occupation?
plumber
carpenter
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 5
What was the first game Yoshi appeared in?
@alpine crow got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
Who was Nintendo's biggest competitor in 1990?
sega
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 3
What is Yoshi's (from Mario Bros.) full name?
yoshisaur munchakoopas
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
What year was Tetris released?
1982
1984
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 1
What did Nintendo make before video games and toys?
hanafuda
@austere hornet got the correct answer :tada: 100 points!
Remaining questions: 0
The round has ended.
@austere hornet Congratulations on winning this quiz game with a grand total of 575 points :tada:
.quiz
n
n
@austere hornet got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 6
How does one call a class who defines the behavior of their instance classes?
super
No one answered correctly!
Let's move to the next question.
Remaining questions: 5
An instance of what type is returned when indexing into an instance of bytes?
bit
20s left!
10s left!
int
@alpine crow got the correct answer :tada: 50 points!
Let's move to the next question.
Remaining questions: 4
What is the minimum number of comparison methods a class must implement to support total ordering?
2
@alpine crow got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 3
Which file contains all special site builtins, such as help or credits?
info
20s left!
10s left!
python
Better luck next time...
Let's move to the next question.
Remaining questions: 2
What is pow(0, 0)?
1
@alpine crow got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 1
Which of these is not a generator method?
(next, send, throw, close)
close
throw
next
@austere hornet got the correct answer :tada: 100 points!
Remaining questions: 0
The round has ended.
@alpine crow Congratulations on winning this quiz game with a grand total of 250 points :tada:
!e py def generator(): for i in range(10): yield i g = generator() print(next(g)) print(next(g)) print(next(g))
.quiz general
hoover
3 gorges dam
20s left!
three gorges dam
@austere hornet got the correct answer :tada: 75 points!
Information
At 1.4 miles wide (2.3 kilometers) and 630 feet (192 meters) high, Three Gorges Dam is the largest hydroelectric dam in the world, according to International Water Power & Dam Construction magazine. Three Gorges impounds the Yangtze River about 1,000 miles (1,610 km) west of Shanghai.
Let's move to the next question.
Remaining questions: 6
The Valley Of The Kings is located in which country?
20s left!
10s left!
switzerland
No one answered correctly!
Information
The Valley of the Kings, also known as the Valley of the Gates of the Kings, is a valley in Egypt where, for a period of nearly 500 years from the 16th to 11th century BC, rock cut tombs were excavated for the pharaohs and powerful nobles of the New Kingdom (the Eighteenth to the Twentieth Dynasties of Ancient Egypt).
Let's move to the next question.
Remaining questions: 5
What year was the IBM PC model 5150 introduced into the market?
20s left!
1984
2001
10s left!
1998
No one answered correctly!
Information
The IBM PC was introduced into the market in 1981. It used the Intel 8088, with a clock speed of 4.77 MHz, along with the MDA and CGA as a video card.
Let's move to the next question.
Remaining questions: 4
What's the name of the tallest waterfall in the world.
20s left!
angel falls
@austere hornet got the correct answer :tada: 75 points!
Information
Angel Falls (Salto Ángel) in Venezuela is the highest waterfall in the world. The falls are 3230 feet in height, with an uninterrupted drop of 2647 feet. Angel Falls is located on a tributary of the Rio Caroni.
Let's move to the next question.
Remaining questions: 3
Which country is the largest producer of tea in the world?
india
china
@austere hornet got the correct answer :tada: 100 points!
Information
Tea is mainly grown in Asia, Africa, South America, and around the Black and Caspian Seas. The four biggest tea-producing countries today are China, India, Sri Lanka and Kenya. Together they represent 75% of world production.
Let's move to the next question.
Remaining questions: 2
Which is the largest tropical rain forest in the world?
amazon
@alpine crow got the correct answer :tada: 100 points!
Information
The Amazon is regarded as vital in the fight against global warming due to its ability to absorb carbon from the air. It's often referred to as the "lungs of the Earth," as more than 20 per cent of the world's oxygen is produced there.
Let's move to the next question.
Remaining questions: 1
Name "the land of a thousand lakes"
20s left!
USA
china
10s left!
No one answered correctly!
Information
Finland is a country in Northern Europe. Sweden borders it to the northwest, Estonia to the south, Russia to the east, and Norway to the north. Finland is part of the European Union with its capital city being Helsinki. With a population of 5.5 million people, it has over 187,000 lakes. The thousands of lakes in Finland are the reason why the country's nickname is "the land of a thousand lakes."
Remaining questions: 0
The round has ended.
@austere hornet Congratulations on winning this quiz game with a grand total of 250 points :tada:
oh ok
Sorry, thought I was muted for that convo.
np
@mild igloo 👋
Hi @mild igloo
afk

what
hello
hello
@stark river hello
@stark river hi
@mild igloo you know python?
Or have you also started?
@long dagger hi
I make laucher for minecraft because another takes a long time to download and install
hi
you use which language?
python
so you know python well
i dontknow a single line of python
no
everyone know single line of python
print()?
so how you make laucher for minecraft?
yeaf
print("You know this!")
why we are invc then
what
Hello
@tulip talon hi
tommorow is my digital electronics exam please someone help me
