#voice-chat-text-0

1 messages ยท Page 118 of 1

vocal basin
#

make it Lua

#

pre-allocate after analysing the function

#

with roughly how many variables it references

knotty dome
#

initial=input("Please input your city, province, and country")
answer=initial.split()
initials=answer[0,0]
print(initials)

vocal basin
#

0,0 is wrong

vocal basin
knotty dome
lavish rover
#

aecor is too readable for my own good

verbal zenith
#

!e

out = ""
out += "h"
out += "e"
print(out)
wise cargoBOT
#

@verbal zenith :white_check_mark: Your 3.11 eval job has completed with return code 0.

h
knotty dome
vocal basin
verbal zenith
#

[0][0]

#

print()

#

print[0]

vocal basin
#

"".join instead of +=

#

+= is too imperative

knotty dome
verbal zenith
#

print(i[0], end="")

#

"\n"

#

!e

test = "Hello world"
answer = test.split()
print(answer[0])
vocal basin
#

if you know the number of the words, you can hard-code indices of elements

#

if that's required

wise cargoBOT
#

@verbal zenith :white_check_mark: Your 3.11 eval job has completed with return code 0.

Hello
knotty dome
#

[0],[0]

verbal zenith
#

answer[0][0]

#

print(one[0],two[0],three[0])

knotty dome
#

initial=input("Please input your city, province, and country")
answer=initial.split()
print(answer[0][0],answer[1][0],answer[2][0])

verbal zenith
#

","

#

!e

one = 1
two = 3

print(f"{one} + {two} = {one+two}")
wise cargoBOT
#

@verbal zenith :white_check_mark: Your 3.11 eval job has completed with return code 0.

1 + 3 = 4
knotty dome
#

initial=input("Please input your city, province, and country")
answer=initial.split()
for i in answer:
print(i[0]+(","), end="")

keen tiger
#

Hey guys, extremely beginner here. Just wanted to ask smth real quick. As y'all must know theres a guess the number game, and I want them to guess a spesific number instead a random one. But have no idea since all I know is how to do a random one with random.randint(1,x)
Does anyone have idea?

vocal basin
#

what do you mean by "specific number"?

keen tiger
#

Lets say, 5

#

and its 1 to 10

#

Yep, the number I want

#

Not the random one computer is giving

#

Erm.. Im lost?

#

Do I add break as well?

#

Lol I cant speak tho I want to, but thanks for the help, I'll try

#

So the code I wrote is something like this:

#

import random
number = random.randint(1, 10)

number_of_guesses = 0
print(" I am Guessing a number between 1 and 10:")

while number_of_guesses < 5:
guess = int(input())
number_of_guesses += 1
if guess < number:
print('Your guess is too low')
if guess > number:
print('Your guess is too high')
if guess == number:
break
if guess == number:
print('You guessed the number in ' + str(number_of_guesses) + ' tries')

#

But its still a random number, not 5

#

Where do I put it?

#

Ah ok, let me try

#

lol:D

#

Ok I did it

#

It said your guess is too low..

#

???

#

Eh??

#

Im so lost you have no idea lol

#

I just want them to guess 5

#

:(

vocal basin
keen tiger
#

Yes

#

!!

#

YES

vocal basin
keen tiger
#

No, Them to guess 5

#

Oh god, makes sense. Thats why I gotta write guess 1-10

#

I thought I had to code it as well

#

Yeah

#

Worked

#

Thank you

vocal basin
#

string concatenation can be replaced with string interpolation/formatting

print(f'You guessed the number in {number_of_guesses} tries')
keen tiger
#

Youre amazing, thank you so much!

vocal basin
#

while loop can be replaced with a for loop

number_of_guesses = 0
while number_of_guesses < 5:
    number_of_guesses += 1
    ...
for number_of_guesses in range(1, 5 + 1):
    ...
keen tiger
#

Let me try!

vocal basin
#

cargo clippy takes .4s to run
if I can spot an issue faster, this skill is worth it

#

.4s on a hello-world project on Celeron J4105

#

around 1s on the thing I'm actually developing

#

one second is so much time

#

a Windows thread can sleep a thousand times during that

keen tiger
#

Traceback (most recent call last):
File "/home/main.py", line 7, in <module>
if guess < number:
NameError: name 'guess' is not defined

vocal basin
whole bear
#

hello i feel like i want to stuck my head into a wall

def count_down(count):
    print(count)
    if count > 1:
        window.after(1000, count_down, count -1)

why the hell this code does not make a recursive loop?

keen tiger
#

number = 5

number_of_guesses = 0
print(" Guess a number between 1 and 10:")

for number_of_guesses in range(1, 5+1):
if guess < number:
print('Your guess is too low')
if guess > number:
print('Your guess is too high')
if guess == number:
break
if guess == number:
print('You guessed the number in ' + str(number_of_guesses) + ' tries')

vocal basin
vocal basin
#

at the start of the loop

#

(inside the loop)

whole bear
vocal basin
whole bear
#

yes

#

it works with tkinter so i cant really tell if the code executing stops besides the window

keen tiger
#

Sorry lol, as I said extremely beginner

whole bear
#

i mean in this line window.after(1000, count_down, count -1)
you litteraly call count_down
how does python know what function to apply it on without going over the code

vocal basin
# keen tiger So, on the top of the for?

at the start of the body of the loop

for number_of_guesses in range(1, 5+1):
    guess = int(input())
    if guess < number:
        print('Your guess is too low')
    if guess > number:
        print('Your guess is too high')
    if guess == number:
        break
vocal basin
#

it stores it to call it later

#
window.after(1000, count_down, count - 1)
#                  ^~~~~~~~~^  ^~~~~~~~^  --  these both get stored
#                   function    argument
#

it calls it when 1000ms time passes

keen tiger
#

File "/home/main.py", line 5
guess=int(input))
^
SyntaxError: unmatched ')'

#

:'(

vocal basin
vocal basin
wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.

example
whole bear
#

so lets make it visible to the human eye
first time function execute:
it defining a "function settings"?
then just going over the code with kind of commenting the line?

keen tiger
#

File "/home/main.py", line 6
if guess < number:
^
IndentationError: unindent does not match any outer indentation level

whole bear
keen tiger
#

number = 5
number_of_guesses = 0
print(" Guess a number between 1 and 10:")
for number_of_guesses in range(1, 5+1):
guess=int(input())
if guess < number:
print('Your guess is too low')
if guess > number:
print('Your guess is too high')
if guess == number:
break
if guess == number:
print('You guessed the number in ' + str(number_of_guesses) + ' tries')

vocal basin
#

just an example of something similaar

whole bear
#

oh sorry mb

vocal basin
keen tiger
#

Oh god

#

It worked

vocal basin
#
def count_down(count):
    # this calls immediately
    print(count)
    if count > 1:
        # this puts the function away, not yet calling it
        window.after(1000, count_down, count - 1)
keen tiger
#

Tysm<3

whole bear
#

can i think of it that way:?
window.after(1000ms delay, if the function name is countdown, do -> count -1)

keen tiger
#

So, should I use for instead of while whenever I use numbers then?

vocal basin
#

you can think as if you pass the name of the function
(but you actually pass the function itself)

whole bear
#

thats the whole problem๐Ÿคฃ
oh wait no i think i got it

#

so basically it would be infinite without the if statement since the function will call endlessly

#

idk why i thought of the process as a loop
i mean it is a loop idk i guess i am too tired and had too many issues with inifnite loops

#

Thanks:)

vocal basin
#

!e

import heapq
import time

tasks = []
task_no = 0

def after(delay, function, argument):
    global task_no
    task_no += 1
    heapq.heappush(tasks, (time.time() + delay, task_no, function, argument))

def count_down(count):
    print(count)
    if count > 1:
        after(1, count_down, count - 1)

after(0, count_down, 5)

while tasks:
    call_at, _, function, argument = heapq.heappop(tasks)
    delay = call_at - time.time()
    if delay > 0:
        time.sleep(delay)
    function(argument)
wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 5
002 | 4
003 | 3
004 | 2
005 | 1
vocal basin
#

there are two views on how closure works

#

Rust/Python way

#

and, I'd guess, Simula way

vocal basin
vocal basin
#

I will insist on my idea that you only need void function(void *context)

vocal basin
#

no, not that

robust lichen
#

I didn't even notice Yu has a new pfp

#

lol

vocal basin
robust lichen
#

I have on compact mode which is why

vocal basin
#

hypothetically

#

@midnight agate what's the question?

robust lichen
#
print("hello world") # hello world
vocal basin
wise cargoBOT
#
PEP 8

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:

vocal basin
robust lichen
#
if false == false:
  return false
vocal basin
# vocal basin !pep8

Inline comments should be separated by at least two spaces from the statement.

#

from I've heard about early OOP languages of Simula/ALGOL variety, moving out stack frames was, at least, an idea

#

conditionally allocating stack frames differently is normal/common

#

not necessarily good, but normal

whole bear
# vocal basin !e ```py import heapq import time tasks = [] task_no = 0 def after(delay, func...

idk heapq library
i tried learning about it but i see i will have to take a course about code complexity/ data structuring
since idk what's the diff between this heapq.heappush and an array

basically what you did was:
after -> creating an "array" containing task number, delay,function to exe, and arguent.
count_down -> exec func
calling "after" func to add value to tasks
and i lost it, too many concepts i dont kno

vocal basin
#

I don't like reference counting stack frames for some reasons

#

there is also reason why keeping reference to stack frames is difficult

#

in Rust there is a specific term which highlights those issues

#

Pin

vocal basin
#

to check whether or not they did stack frame reference counting

whole bear
vocal basin
#

heapq is an implementation of a priority queue

#

it's used in that code to get the earliest scheduled task

whole bear
#

kind of like semaphore or lock in threads?

vocal basin
whole bear
#

call_at, _, function, argument = heapq.heappop(tasks)
this looks like a syntax to me

vocal basin
robust lichen
#

Hiy myy namey isy Dukey

vocal basin
#

meeting to schedule a meeting to discuss a possibility of a meeting

vocal basin
#

if I can

vocal basin
unreal flax
#

!voice

wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

turbid sandal
#

what is this

#

โ€ข You have an active voice infraction.

somber heath
#

It's early.

lucid blade
#

In an open hearing on Unidentified Anomalous Phenomena before the Senate Armed Services Committee on April 19, Dr. Sean Kirkpatrick, director of the All-domain Anomaly Resolution Office (AARO), shared a video that depicts an apparent silver, orb-like object cross the sensorโ€™s field of view.

This clip was taken by an MQ-9 in the Middle East, an...

โ–ถ Play video
turbid sandal
#

what is this
โ€ข You have an active voice infraction.

lucid blade
#

latest uap video released yesterday

#

after congressional hearings

somber heath
#

@urban temple ๐Ÿ‘‹

urban temple
#

coulnd find the chat

#

im muted for some reason

somber heath
#

!voice

wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

urban temple
#

!voice

#

got it

#

thanks

#

i gotta write 50 messages

#

so ill do it rn

#

ill do it slightly

#

are there many people who works in data analytics???

turbid sandal
#

what is this
โ€ข You have an active voice infraction.

#

why can i not verefy

somber heath
#

I apologise. I mustn't have been clear.

turbid sandal
#

i didn't not understand

urban temple
#

@lucid blade did you really work for nasa?

somber heath
#

Is this your problem, or someone else's?

urban temple
#

aaaaaaa

#

:))

#

okay u got me

turbid sandal
#

my problem

#

i dont understand why i can not voice verefy

#

what is this
โ€ข You have an active voice infraction.

urban temple
#

@somber heath are you somehow related to Ukraine???

somber heath
urban temple
#

not really

#

but your pfp

turbid sandal
#

How me fix this

urban temple
#

y r doing the right thing

#

keep supporting

turbid sandal
#

bro

urban temple
#

we can`t deny this assumption

#

in this case

#

i am sorry

somber heath
#

@loud tapir ๐Ÿ‘‹

urban temple
#

yeah I also noticed that

loud tapir
#

how do i verfiy

urban temple
#

what a great man

somber heath
wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

urban temple
#

jhin wtf

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @loud tapir until <t:1681992121:f> (10 minutes) (reason: burst spam - sent 8 messages).

The <@&831776746206265384> have been alerted for review.

urban temple
#

stop it now

turbid sandal
#

banned

urban temple
#

hah ๐Ÿ™‚

urban temple
turbid sandal
#

welcome

somber heath
# turbid sandal How me fix this

If the action was justified, and be honest to yourself about that, wait.

If you feel it was a misunderstanding, there is an appeals process.

#

@loud tapir This is what happens when you don't follow the instructions. ๐Ÿ˜‰

#

@turbid sandal I had a look at the chat history and I'm sorry to say it looks like you'll have to wait until the 30th.

loud tapir
#

no dont ask her nicely

#

dont ask her to leave you alone

#

why dose she attacks you?

#

@whole bear you have to read about narcs

somber heath
#

@gentle sand ๐Ÿ‘‹

loud tapir
#

@whole bear read about the Narcissistic personality

#

was she your frind before ?

whole bear
#

@somber heath i can't speakkk

#

@somber heath i cannot verify yet, i just need help with an open ssh install i'm having trouble if u cannot help its okay

loud tapir
#

this is not nasa

#

what?

whole bear
#

linux ubunto

#

what does allow password auth mean

#

i do work w github i have ssh on my mac alr sent up w my repos but i would like it on my distro too

loud tapir
#

i need help in somthing as well

#

in django modeuls

#

how can i change the class id

somber heath
whole bear
#

mb typo

#

LOL

#

ubontoe

#

imma ask chat gpt ong

lucid blade
#

yewbewntew

#

lunix yewbewntew

#

loonix

whole bear
#

i'm just trying to nmap my school

#

(educational purposes only)

#

LOL

somber heath
whole bear
#

i'mma good boy

#

i been subpoenaed before by discord

#

i changed imma good boy now

#

it's for school final

#

LOL

#

"my own final"

somber heath
#

@glad cape ๐Ÿ‘‹

elfin moth
#

hello guys

#

HHH

#

yap

#

yes

#

2pac

loud tapir
#

@mellow trellis how are you

#

hows your grandma doing

#

after she did a backflip on your dad

#

is she ok now

lucid blade
#

brb

whole bear
#

i still need yelp

#

do u even know pyscript

#

kek

lucid blade
#

LUL ๐Ÿ˜„

#

ill stop

#

i didnt realise there were so many monty python gifs

#

what were they talking about though? anything interesting?

loud tapir
#

@whole bear are you in the USA

lucid blade
#

or just incoherent rambling ?

#

lol ๐Ÿ˜„

elfin moth
#

should be one

#

who watching?

#

hhhhhh

#

it's your problem

somber heath
#

No channel here should be considered as a meme dumping ground, but if there's one relevant to the conversation, then, in moderation, it's going to be okay. The problem is when people post stuff without regard for the conversation or who might be interested.

rugged root
#

We've certainly gone on minor meme rampages in here

#

Just try to keep it from being absurd

#

Also just be aware that the Python bot can be a little zealous when it comes to too many attachments too quickly

#

Oh sure sure

#

Just had to mention it while it was on my mind

#

On in a sec, getting coffee

lucid blade
rugged root
#

Like pre-teens

lucid blade
#

not a bad thing

rugged root
#

For sure

lucid blade
#

๐Ÿ˜„

#

its a great film

wind raptor
rugged root
#

Ah fair fair

stray swallow
#

i cant speak

warm jackal
#

!voice

wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

stray swallow
#

!voice

rugged root
#

That channel will tell you about the voice gate

#

@warm pelican @jaunty reef Yo to you both

willow light
#

"Check out No Access to get access."

lol

small nova
#

Sup?

rugged root
#

Yo. Not much, you?

small nova
willow light
#

anyone else watch the test of Space Karen's new toy?

lucid blade
small nova
#

Good luck on your Exam Bud!

lucid blade
#

lol @whole bear discipline

#

๐Ÿ˜„

small nova
#

Self Control ๐Ÿ›

rugged root
#

The voice verified role make you able to join

#

All it does is mean you can talk

lucid blade
#

^

#

haha ๐Ÿ˜„

small nova
#

hahaha.

rugged root
#

We'll be here when you come back

somber heath
#

Kubernetes in producktion.

small nova
#

I did this during the time of my final exams of highschool: create a folder and just have all the most used servers in that and never touch it.

rugged root
lucid blade
#

@scenic quiver ^ check the video

lucid blade
#

bbl

rugged root
#

!stream 1087096079645954259

wise cargoBOT
#

โœ… @proven raft can now stream until <t:1682001713:f>.

rugged root
#

!stream 1087096079645954259

wise cargoBOT
#

โœ… @proven raft can now stream until <t:1682002077:f>.

meager raven
#

Hey guys againt

#

any good man help me correct this function plsss

#

import pandas as pd
import warnings
warnings.filterwarnings('ignore', category=UserWarning, module='openpyxl')
from openpyxl import load_workbook

Load in the workbook

data_file = 'Clinic.xlsx'

Load the entire workbook.

wb = load_workbook(data_file)
ws = wb['MasterList']
cols = [0,1,2,3,4,5,6,7]

def AddPatient(ws,wb,file_name):
df = pd.read_excel('Clinic.xlsx')
patient_id = input("Enter your id : ")
if ws.cell(row=int(row),column=1).value in account:
print("The ID already exist")

elif ws.cell(row=int(row),column=1).value not in s:
    patient_id = input("Enter your id : ")

        
    
name = input("Enter your name : ")
age = input("Enter your age : ")
height= input("Enter your height : ")
weight = input("Enter your weight : ")
address = input("Enter your Address, City, State and ZIP code : ")
contact = input("Enter your phone number : ")
parent = input("Enter parent name : ")
contact_emergency = input("Enter phone number : ")


ws.append([patient_id, name, age, height, weight, address, contact, parent, contact_emergency])
wb.save(file_name)
print("Done add")
somber heath
#

Note on naming convention. Function names should, except in accounted-for cases, be written using snake_case.

#
def add_patient(ws, wb, file_name):
    ...```
willow light
#

do not use CamelCase, in societas vivimus

somber heath
#

!pep8

wise cargoBOT
#
PEP 8

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:

somber heath
#

I have no technical comments at this time. I don't use Pandas.

willow light
#

Polars is better pandas.

rugged root
#

@meager raven What do you mean by correct the function

#

What's it doing that it shouldn't, is there an error, etc.

meager raven
#

the function keep error and idk how to fixed it

somber heath
#

What is the error?

willow light
#

also, unless I'm reading your indentation wrong, don't use input() inside a function

#

it also looks to me like you'd be better served with a database than with an excel workbook

also why are you importing pandas if you don't end up using it?

meager raven
rugged root
#

@cerulean ridge You magnificent bastard

somber heath
#

Yeah, don't use McAfee.

proven raft
somber heath
#

Don't use Kaspersky.

#

"Oh no! We were found out! What can we do?"

#

"Marketing!"

proven raft
somber heath
#

"Brilliant!"

somber heath
#

Burn it down. Restore from backups.

#

Yes. It's a pain in the arse, but you know what's more of a pain in the arse? Fiddlefarting around with half measures then, finally, realising that you need to

#

Burn it down. Restore from backups.

#

2fa

elfin moth
#

OMG

#

that's a lot of money

somber heath
#

Were you running software from sketchy sources?

cerulean ridge
somber heath
#

"Good luck! I'm using seven antiviruses!"

rugged root
cerulean ridge
#

lol haha

somber heath
#

"Agh! I got hacked! Welp, time to tear my pants off."

elfin moth
#

HHHHHHHHHHH

rugged root
#

I...

somber heath
#

"In addition to seven antiviruses, I'm also wearing seven pairs of pants!"

#

"Well, six, now."

rugged root
#

@sonic monolith If you're on Windows, after you run the virus scanner and get your system clean, open up a PowerShell window as Admin (Windows Key + X is the fastest way to it), and then enter the following commands:

sfc /scannow; dism /online /cleanup-image /restorehealth; sfc /scannow
proven raft
maiden skiff
#

I am studying for a certificate.

velvet tartan
elfin moth
#

guys how to split a number?

cerulean ridge
#

vertically or horizontally?

elfin moth
#

vertically

#

actually both if you can

velvet tartan
small nova
#

Does it have limits? Paid services?

velvet tartan
#

No limits and itโ€™s free. I learned about it from this Hacker News post https://news.ycombinator.com/item?id=35543668

rushingcreek

Hi HN,Today weโ€™re launching GPT-4 answers on Phind.com, a developer-focused search engine that uses generative AI to browse the web and answer technical questions, complete with code examples and detailed explanations. Unlike vanilla GPT-4, Phind feeds in relevant websites and technical documentation, reducing the modelโ€™s hallucination and keepi...

small nova
#

That's cool. And I wouldn't agree on AI taking over a group/cult that would be quiet influential over people. People see it as a tool more than something that they would completely rely on...

#

๐Ÿ˜‚

rugged tundra
#

!voice

wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

whole bear
#

Hey

#

does anyone know if i cant make screenshot from nasaview and train AI model with it ?

#

is it legal ?

limpid umbra
#

@rugged root you have to sing ... bborn in the usa

#

George Carlins train of imagination

somber heath
#

Land of the fee.

limpid umbra
#

hey , you gotta a liscence for that , show me your papers

somber heath
#

150???

limpid umbra
#

usa is the only place i know , where one day you draw a diagram on a napkin and 5 years later you made 5 million -- its a paradox

rugged root
#

That's not the majority

#

That's not something that people should point to as proof the system works

limpid umbra
#

if you make it faster , better , cheaper now what

#

fred - do you speak at least 3 ?

#

porteguese , fracais , english

#

@rugged root any progress on CHIP 8

rugged root
#

Not yet. Haven't been able to force myself yet

limpid umbra
#

well think of it as Tetris or Solitair or Soduku - but can actually learn something , its a ZEN activity

rugged root
#

Sure sure, just had stuff going on

limpid umbra
#

life is just constant diversions and a acumulating , to-do-list

#

Japan cool...

rugged root
#

@terse needle Yo

weak sleet
limpid umbra
#

Q - can the chat GPT ( AI? ) can it be in a isolated computer ?

rugged root
#

Sure

#

It doesn't look out on the internet

limpid umbra
#

wonder how much resources , cpu , mem ... is needed

fierce wigeon
#

if they know the citzens don't have guns

#

the protest are only papers

limpid umbra
#

anybody know about this

gentle flint
#

yes, many people do

burnt basin
#

hello everybody

#

somebody learn neural networks?

gentle flint
#

kde connect

molten pewter
#

Hello

somber heath
burnt basin
#

sorry

#

didnt know

#

im new here

somber heath
#

@dire storm ๐Ÿ‘‹

#

I've given you the impression you can't talk about it here. That wasn't my intention.

#

Bingle

dire storm
#

hey

#

yeah for now I can't :/

#

i need to send 50 messages lol

keen tiger
#

Is it 50?

dire storm
#

yeah

#

at least that what the message says

keen tiger
#

Seems like I'll be muted forever

dire storm
keen tiger
#

Aha, I thought it was 30

dire storm
#

you just need to wait 6 months

keen tiger
#

Hahaha god.. nvm I like listening people talk as well

dire storm
#

๐Ÿ’€

keen tiger
#

Its not 6 months

#

Its a year at least

dire storm
#

yeah i'm jk

keen tiger
#

3 days?

gentle flint
#

yeah

keen tiger
#

I'd rather listen more about car crash

dire storm
#

i joined this server two years ago and I still can't talk

keen tiger
#

Other than sending 60 messsages

gentle flint
#

and you joined this morning @keen tiger so you have two days left

#

you've already sent 50 messages

#

so that requirement has already been met

#

two more days and you can talk

keen tiger
#

I have sent 50 messages?

gentle flint
#

yes

dire storm
#

when i'll finally send 50 messages they will change the rule to 5000 messages

keen tiger
#

Oh my

#

Yey

gentle flint
#

but you have not yet been here for 3 days

keen tiger
#

So its not 6 months lol.. 3 days indeed

gentle flint
#

so you still can't speak yet

keen tiger
#

Ty for letting mk

gentle flint
#

@dire storm19 messages left

dire storm
#

cooooool

signal lynx
#
 if current_room == 'Lake':
        print("You have stumbled into the Hydra's liar and die\n"
              "The End.")
        break
#

rooms['Lake']

dire storm
#

you need a ;

#

sorry it's not java

molten pewter
#

!paste

wise cargoBOT
#
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.

dire storm
#

how long have you been programming with Python guys?

frosty garnet
#

8yr

dire storm
#

gosh

signal lynx
keen tiger
#

10 days..

dire storm
#

I only know about Java

#

master ๐Ÿ‘๐Ÿผ

signal lynx
#
 if rooms[current_room[name]] == rooms['Lake']:
frosty garnet
#

if rooms[current_room["name"]] == rooms['Lake']:

signal lynx
#
ormat(rooms[current_room['text']]))
frosty garnet
#

ormat(rooms[current_room]['text']))

signal lynx
frosty garnet
mortal sky
#

yooo

#

sup?

old heart
#

I have a mystery

#

can anyone help me out?

knotty dome
desert vector
#

@wind raptor Hey, you there?

wind raptor
desert vector
#

Oh, nothing much Chris

#

Just seeing how you're doing

#

I don't chat often with you is all ๐Ÿ˜…

wind raptor
desert vector
#

Happy you're doing better now then :D
How bad was your COVID, if you don't mind me asking? I was bedridden with fever and a headache for about a week.

wind raptor
#

Mine was really mild, like a light cold. I did lose my sense of taste and smell, which sucked, but could have been much worse.

#

My wife is still not great. she had much worse symptoms

desert vector
#

Oh, you both got it? Shame

wind raptor
#

Yeah. We started feeling ill around the same time

desert vector
#

Well, I have full confidence she'll also be back in no time :D

wind raptor
#

Yeah, she's just nauseous now. much better than before

desert vector
#

Weird to think being nauseous is a good thing comparatively ๐Ÿ˜…

wind raptor
#

indeed

#

How have you been?

desert vector
#

Could be better, could be worse.

#

But it's enjoyable regardless

wind raptor
#

That's the spirit

desert vector
#

Yeah, trying to stay motivated and positive these upcoming months

wind raptor
#

Working on something big?

desert vector
#

I'm going through something big, sooner or later

#

So I need to be in the right space; the happy kind of space, y'know?

wind raptor
#

Yeah. Well, I hope it all goes well! Sometimes the waiting is the worst part.

desert vector
#

Oh, I'm sure it will! The trepidation is killing me though Hehe

#

So you're right on that!

wind raptor
#

Just do what I do

#

Have no memory of most things

desert vector
#

Damn, you're right!

#

If only I could willingly forget things

wind raptor
#

It does cause some other problems though

#

But I can't remember what

desert vector
#

Do not entrust you with specific, critical tasks
Noted

wind raptor
#

Nah, it's mostly the woes in life I don't like to store

desert vector
#

I store all the woes in life :O

#

oh, seems our scope.h friend has left

wind raptor
#

Just change that w to a t and you're good to go

desert vector
#

storing toes??

#

chris, what deviancy is this

wind raptor
#

uhh, is that what I said

desert vector
#

Y E S

desert vector
wind raptor
#

Anyway, I don't recall what we were just talking about but how are you?

desert vector
#

I feel like Bill Murray right now agony

wind raptor
#

lmao

desert vector
#

!projects

wise cargoBOT
#
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.

desert vector
#

@faint raven

faint raven
#

@wind raptor thank you

desert vector
#

@severe panther

severe panther
#

Just let me in

#

So wait I just have to talk for 50 msgs and then be like ah yes verification

desert vector
#

yes

wind raptor
#

!stream 972190885439750164

wise cargoBOT
#

โœ… @knotty dome can now stream until <t:1682020956:f>.

desert vector
#

just don't spam por favor

severe panther
#

I'll make sure to do so with lua

#

๐Ÿ˜‰

desert vector
#

:/

#

why must you insult me so

severe panther
#

Because of the thing

#

:3

#

untill you mix lua with json makes it worse

#

Ye i saw that yesterday

#

uhh

#

dm? no

#

but you can try

#

also did someone say my name before? I heard "august"

desert vector
#

no
definitely not

severe panther
#

oh weird

#

I could of swarn

desert vector
#

nah, you're acking

severe panther
#

oh ye luna i need to show you something

#

my_dict['aaa'] = val @knotty dome

#

bc you are now only setting the dict key

desert vector
#

!e

d = {"a": 1}
print(d)
d["b"] = 2
print(d)
wise cargoBOT
#

@desert vector :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | {'a': 1}
002 | {'a': 1, 'b': 2}
severe panther
#

its in dms

#

like someone drew that in cavern

#

its sick

#

ye

desert vector
#

!stream 142721776458137600 2h

wise cargoBOT
#

โœ… @severe panther can now stream until <t:1682028420:f>.

knotty dome
knotty dome
#

movies={"Avengers":0,"Breaking":0,"Spiderman":0}
for i in range(3):
preference=input("Enter movie")
if preference in movies:
movies[preference]+=1
else:
movies[preference]=1
for i in movies:
print(i+str(movies[i]))

desert vector
#

!code

wise cargoBOT
#
Formatting code on discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

knotty dome
#
movies={"Avengers":0,"Breaking":0,"Spiderman":0}
for i in range(3):
    preference=input("Enter movie")
    if preference in movies:
        movies[preference]+=1
    else:
        movies[preference]=1
for i in movies:
    print(i+str(movies[i])) 
desert vector
#

!e

movies={"Avengers":0,"Breaking":0,"Spiderman":0}
for i in movies:
    print(i+str(movies[i])) 
wise cargoBOT
#

@desert vector :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | Avengers0
002 | Breaking0
003 | Spiderman0
old heart
#

does anyone know of a way I can access an xlsx file, and save a chart to a png

#

in python

#

playing around with openpyxl a bit

rugged root
stuck furnace
#

๐Ÿ‘‹

#

Ah cya ๐Ÿ˜„

#

;-;

rugged root
#

Sorry!

#

โค๏ธ

stuck furnace
#

What you all up to?

#

Erm, not much

#

Trying to learn about how to make a Gnome extension.

#

Yep

#

Well desktop environment.

#

Right ๐Ÿ˜„

#

Going to get back to that ๐Ÿ‘‹

maiden skiff
#

hi

knotty dome
quaint oyster
#

ive had to write merge sort in assembly for a computer architecture class ๐Ÿ™ƒ

keen tiger
#

Well said

#

His dog I'm pretty sure..

mild quartz
#

see you guys

umbral terrace
#

r]

ivory horizon
#

.snake card

viscid lagoonBOT
#

A wild Western Diamondback Rattlesnake appears!

main kite
#

!voice

wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

ivory horizon
#
LeetCode

Can you solve this real interview question? Profitable Schemes - There is a group of n members, and a list of various crimes they could commit. The ith crime generates a profit[i] and requires group[i] members to participate in it. If a member participates in one crime, that member can't participate in another crime.

Let's call a profitable sch...

wise cargoBOT
#

@lunar haven :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | The Zen of Python, by Tim Peters
002 | 
003 | Beautiful is better than ugly.
004 | Explicit is better than implicit.
005 | Simple is better than complex.
006 | Complex is better than complicated.
007 | Flat is better than nested.
008 | Sparse is better than dense.
009 | Readability counts.
010 | Special cases aren't special enough to break the rules.
011 | Although practicality beats purity.
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/wozujoqune.txt?noredirect

warped raft
#

hello @somber heath , @vivid viper

#

yeah

#

In India it is very hot

#

opal how can we get

#

the video tag

#

@somber heath

#

ok that makes sense

#

noticed one thing that was funny

#

you went from saying Mr. Hemlock to Hemlock

#

some funny conversation I noted between you and hemlock
Mr. Hemlock - Kill Me
Opal - Later
Mr. Hemlock - Please Now
Opal - I'll not

somber heath
#

Team Fortress 2: Meet the Medic

#

But there's a draft version of that video, too, which that video references re: the spy head.

obsidian dragon
#

@somber heath hi

#

check it

somber heath
#

Looking smoother.

obsidian dragon
#

@somber heath it's all done

somber heath
warped raft
#

hello @somber heath

#

how are you doing

#

just a question do you don't want to be a mod or is it so that they are not making you

#

don't answer that

#

hello @rugged root

#

are you all following fide chess championship

rugged root
#

Not really, I don't typically follow chess

warped raft
obsidian dragon
rugged root
#

Now cough

#

@proud badger Yo

whole bear
#

dict = {"key1": "value1"}
for i in range(2):
print(dict["key1"])
try:
file = open("day_30_working.txt", "r")
print(dict["key2"])
except FileNotFoundError:
file = open("day_30_working.txt", "w")
except KeyError as missing_key:
print(f"Error, Key {missing_key} not exist.\n Creating the key for you.")
missing_key = str(missing_key)
print(list(missing_key))

dict[missing_key] = ""

i get the wierdest outputs in the world
i am trying to create a key but the key name goes like = " ' key1 ' "
how do i fix that

somber heath
#

"ChatGPT, how do I perform CPR?!"
"Say please..."

whole bear
#

yeah chat gpt thrw me off with his answers

somber heath
#

"Hello, I'd like to have an argument, please."

whole bear
#

i have doubt

#

do any of you people use linux

somber heath
whole bear
#

or have any experience in it

somber heath
#

My answer to your question is yes.

whole bear
#

ok

#

i was running spiral linux lxqt on virtual box

molten pewter
#

Official Video for โ€œLeave Me Aloneโ€ by Michael Jackson
Listen to Michael Jackson: https://MichaelJackson.lnk.to/_listenYD

Michael Jacksonโ€™s short film for โ€œLeave Me Aloneโ€ is the seventh of nine short films for the โ€œBadโ€ album. The visually stunning short film is the first of Michaelโ€™s songs and short films that serve as commentary on the me...

โ–ถ Play video
whole bear
#

and it is stuck on uefi screen

somber heath
#

Ah. I don't have a lot of experience with UEFI.

whole bear
#

oh

whole bear
whole bear
#

this is basically it: missing_key = "".join(list(str(missing_key))[1:-1])

rugged root
somber heath
whole bear
#

๐Ÿ™‚

rugged root
#

@faint raven We're getting background noise from your mic

somber heath
#

@zenith radish You do marine biology in addition to what you do otherwise? That's awesome.

heavy flame
#

@rugged root can you give me the video role? it's been like 2 days

gentle flint
#

it's not a thing people get permanently anymore

somber heath
#

@zenith radish Also, I think the tide of the world is turning against...certain sectors. Self business might attract issues.

rugged root
heavy flame
zenith radish
rugged root
heavy flame
#

oh sure but what are the requirements for the permanent stuff

rugged root
#

No one is going to buy this

#

@pulsar island I'm so mad at myself for laughing at that

somber heath
#

A towable domicile.

#

Risk of instant homelessness.

rugged root
#

@peak copper Yo

somber heath
#

Or they just want to develop patents, buy up others and sit on them.

rugged root
#

I read that as parents

peak copper
quaint oyster
#

what class is this

somber heath
#

You're not touching states, you keep getting turned around at the border.

quaint oyster
#

LP at work

zenith radish
#
Option Explicit
Dim Count As Integer
Private Sub Form_Load()
    Count = 0
    Timer1.Interval = 1000 ' units of milliseconds
End Sub
Private Sub Timer1_Timer()
    Count = Count + 1
    Label1.Caption = Count
End Sub```
zenith radish
amber raptor
rugged root
#

Heavily sharted

molten pewter
#

@quick cloak Send more messages. I need you to have voice permissions.

rugged root
#

I've had those days

#

?

stuck furnace
#

Is that cosine similarity?

quick cloak
#

can I send them in here?

molten pewter
#

yes

quick cloak
#

sweet

rugged root
#

So long as they're actually talking and not spamming

molten pewter
#

you only need 50

quaint oyster
#

beegas

quick cloak
#

what was being talked about? Why was I being summoned?

quaint oyster
#

can you tell me the english alphabet in seperate messages twice?

#

im curious

gentle flint
#

that would be spam

#

I don't recommend it

quick cloak
#

well you see it all began with...

gentle flint
#

unless you want to lose voice privileges for a further two weeks

quaint oyster
#

A

quick cloak
#

we are just fooling around

quaint oyster
#

B?

molten pewter
#

you are far more qualified to be talking about subjects than most of the people here. I need you to be talking more. You are summoned to be present.

quick cloak
#

I wouldnt want to B a fool and C what happens

molten pewter
#

this is what I'm talking about

quaint oyster
#

๐Ÿ˜ญ

molten pewter
#

this pun is perfect.

molten pewter
#

I'll be kinder once you have typed 50 messages...

rugged root
#

Looooooove sales cold calls

#

Sheesh

quaint oyster
#

is this flirting

molten pewter
#

or at least less annoying.

rugged root
quick cloak
molten pewter
#

MOAR messages.

quick cloak
#

I dont want to actually spam

molten pewter
#

Are we there yet?

rugged root
#

Please don't

somber heath
#

All birds are cats.

quaint oyster
#

C

quick cloak
quaint oyster
#

beegass

#

what kind of machine learning accessories

#

tell me in 50 messages

gentle flint
somber heath
#

Hemlock, I got you.

small nova
#

lol.

quick cloak
#

well im currently in my masters studying computer science with a concentration in machine learning

#

and that has led me down the path of trying to learn attention alternatives

somber heath
#

PyDis. Python Discord. Here.

quick cloak
#

I take particular interest in models that support long sequences

quaint oyster
#

attention alternatives?

#

long sequences of what?

quick cloak
#

attention as in self-attention

mild quartz
#

beegass normal humans dont know what that is

quick cloak
#

uhhhhh

#

ok

#

let me try again

#

in machine learning there is a popular model that is called "self-attention"

quaint oyster
#

๐Ÿ™‚

rugged root
#

You'll still have to do the proper verification at some point

quick cloak
rugged root
#

This was mainly because @molten pewter was driving me insane

quick cloak
#

im not sure thought

rugged root
#

You have not

#

I manually unmuted you

quick cloak
#

ah

#

well thank you

#

how do I go about doing the verification? I can go do that now?

quaint oyster
#

i know everything about machine learning.

#

we don't know python.

rugged root
#

You'd have to still do the message count, then run the !voiceverify command in #voice-verification

#

You're sitting at 25 right now

mild quartz
hidden peak
#

how do i post code in discord without it converting to a file

mild quartz
rugged root
#

!code

wise cargoBOT
#
Formatting code on discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

rugged root
#

Actually wait

#

Is it converting because it's too large?

rugged root
#

If that's the case, then you'd use a hastebin

#

!paste

wise cargoBOT
#
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.

mild quartz
hidden peak
rugged root
#

Yeah, hastebin then

#

Or pastebin

#

You know what I mean

quaint oyster
#

neural net mathematics

#

neural network is a group of nodes connected to each other

#

stored just like anything in memory

mild quartz
molten pewter
#

explosivity? exprosivity?

hidden peak
#

could any 1 help me with a issue i am having

somber heath
#

It's hard to answer yes, honestly, otherwise.

hidden peak
#

no its really basic

#

i just started python

hidden peak
#

been trying to fix it but dont know what i have wrong

somber heath
#

You're probably after the concept of subscription by index position.

molten pewter
#

expressivity

molten pewter
knotty dome
stuck furnace
#

@knotty dome Try stepping through the code with this tool:

#

So, what's in Cancun? ๐Ÿ˜„

#

Ah right nice

#

Could you see yourself doing a cruise?

knotty dome
#

not sure how i got 6

#

i got no clue why i got 4-1=3

#

shouldnt it be 4+(4-1)=7

#

?

quick cloak
stuck furnace
# knotty dome

That's not quite right. Try evaluating the expression part-by-part: ```py
f(4)
(4 + f(3))
(4 + (3 + f(2))
...

knotty dome
#

could u possibly stream it and explain somehow??

#

bc i got a midterm in 1 hour...

amber raptor
#

Please LX

quick cloak
#

do my homework type beat

molten pewter
#

could you write my paper after you are finished with BeeGas's homework?

knotty dome
#

haters

quick cloak
#

what more do you want

stuck furnace
#

Yeah fair enough.

knotty dome
#

stay broke

stuck furnace
#

My DMs have been off for like a year

#

Yeah it was pretty entertaining ๐Ÿ˜„

#

Pretty sure it came off the launch pad at a weird angle.

#

There's a great picture that illustrates...

#

Ah yeah

#

Literal crater ๐Ÿ˜„

#

People are saying at least now they don't have to dig a flame trench

#

It looked like something exploded on the side too apparently.

#

It was kind of surreal actually seeing it lift off

molten pewter
#

LIVE | The world's biggest, most powerful rocket takes a second attempt at its first full test flight with SpaceX's Starship.

Read more on the rocket and the test flight: https://bit.ly/3KWVtLc

https://wgntv.com/
https://wgntv.com/news/wgn-news-now/
https://www.youtube.com/user/wgntv?sub_confirmation=1
https://www.facebook.com/WGNTV
https://ww...

โ–ถ Play video
stuck furnace
#

Heading off cya ๐Ÿ‘‹

molten pewter
#

LIVE | The world's biggest, most powerful rocket takes a second attempt at its first full test flight with SpaceX's Starship.

Read more on the rocket and the test flight: https://bit.ly/3KWVtLc

https://wgntv.com/
https://wgntv.com/news/wgn-news-now/
https://www.youtube.com/user/wgntv?sub_confirmation=1
https://www.facebook.com/WGNTV
https://ww...

โ–ถ Play video
#

"icing on the cake"

whole bear
#

Hi

cerulean crater
#

hey guys!

#

we have the chesepeap bay bridge in virginia

#

what yall going on about bridges for??

#

Everything alright in here...

molten pewter
#
Bob Connors

A large fire has closed Interstate 95 South in Groton at the Gold Star Bridge. State police said injuries are reported and buildings below the bridge are also on fire. The northbound side of the highway was closed but has reopened. A fuel tanker truck rolled over on the Gold Star Bridge, according to state police. Videos that people whoโ€ฆ

rugged root
molten pewter
#

mom called

graceful kelp
# knotty dome

I couldn't understand it too , can anybody explain it?

rugged root
#

What part is tripping you up? Just how it it works in general?

#

!e

def my_function(x):
  if x == 0:
    return x
  else:
    return x + my_function(x - 1)

result = my_function(4)
print(result)
wise cargoBOT
#

@rugged root :white_check_mark: Your 3.11 eval job has completed with return code 0.

10
rugged root
knotty dome
graceful kelp
rugged root
graceful kelp
#

Alright

rugged root
#

f(0)= 5

f(n) = f(n-1)+2

hasty fulcrum
#
# Load train and test data
train_data = pd.read_csv('dataset/train.csv')
test_data = pd.read_csv('dataset/test.csv')

I am getting ParserError: Error tokenizing data. C error: EOF inside string starting at row 74037
when I am running on google colab but no error when I run in dataspell
whats wrong?

rugged root
#

Maybe colab can't handle the data size? Or possibly it's using the wrong line ending... not sure

somber heath
#

Ehrharta erecta is a species of grass commonly known as panic veldtgrass. The species is native to Southern Africa and Yemen. It is a documented invasive species in the United States, New Zealand, Australia, southern Europe, and China.The species is perennial, and normally grows to about 30 to 50 centimeters, although it may reach two meters in ...

#

Weed we have around here.

#

I did not know about the name.

#

I just know it as panic veldt.

#

Oh yes.

#

Hence "panic"

#

Because you panic when you see it.

whole bear
#

yo yo

quaint oyster
honest pier
#
void func(int *arr, int n) {
  
}
rugged root
#
2              ^                                            4
nimble plaza
#

people those who are in VC. One of the most active member had a bread pfp previously. I forgot his name. Can you tell me please?

nimble plaza
#

Bread pfp and name starts with O. Opalmist? Or something similar?

#

@somber heath have you ever used Bread as pfp on Discord? I don't remember actually but it must be you the guy I'm looking for.

nimble plaza
rugged root
#

!d random

wise cargoBOT
#

Source code: Lib/random.py

This module implements pseudo-random number generators for various distributions.

For integers, there is uniform selection from a range. For sequences, there is uniform selection of a random element, a function to generate a random permutation of a list in-place, and a function for random sampling without replacement.

On the real line, there are functions to compute uniform, normal (Gaussian), lognormal, negative exponential, gamma, and beta distributions. For generating distributions of angles, the von Mises distribution is available.

quaint oyster
#

NO SUCH THING AS RANDOm

#

STOP LYING

#

STOP

somber heath
#

With and without this face.

#

and with a santa hat, too, at one point

nimble plaza
#

How are you doing @somber heath? I came back here after long time. Two years back when I was a beginner in Pyrhon you helped me many time. Thanks for that. I recently got my first internship as a backend developer Django. Just wanted to thank you. ๐Ÿ™‚

somber heath
#

Neato.

rugged root
#

!d enumerate

wise cargoBOT
#

enumerate(iterable, start=0)```
Return an enumerate object. *iterable* must be a sequence, an [iterator](https://docs.python.org/3/glossary.html#term-iterator), or some other object which supports iteration. The [`__next__()`](https://docs.python.org/3/library/stdtypes.html#iterator.__next__ "iterator.__next__") method of the iterator returned by [`enumerate()`](https://docs.python.org/3/library/functions.html#enumerate "enumerate") returns a tuple containing a count (from *start* which defaults to 0) and the values obtained from iterating over *iterable*.

```py
>>> seasons = ['Spring', 'Summer', 'Fall', 'Winter']
>>> list(enumerate(seasons))
[(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')]
>>> list(enumerate(seasons, start=1))
[(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')]
```  Equivalent to...
heavy flame
#

for item,c in zip(list_,range(len(list_)))

rugged root
#

!e

for i, season in enumerate(['Spring', 'Summer', 'Autumn', 'Winter']):
  print(i, season)
wise cargoBOT
#

@rugged root :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 0 Spring
002 | 1 Summer
003 | 2 Autumn
004 | 3 Winter
nimble plaza
rugged root
#

Oh sick!

#

Proud of you, dude

nimble plaza
#

Are we planning for a revolution or so? Hehe

rugged root
#

We encourage people to try to break the eval

#

Ideally if you're going to be dumping a lot of commands into it, though, please use #bot-commands

#

Keeps the clutter down

rugged root
#

It has no net connection

nimble plaza
#

This sums up everything

#

Would you recommend using bcrypt for storing credentials in database? Or is there any better solution?

rugged root
#

Not sure

rugged root
#

Seems to be some debate one way or the other on whether bcrypt is still good enough

rugged root
#

Ease up on the gif spam

quaint oyster
#

2 gifs = gif spam? or are you also including the ones i sent earlier

#

i have 1 more FBI gif

nimble plaza
quaint oyster
#

the guy was talking about federal agents

nimble plaza
#

sha one. Its pronounced S H A 1 right?

nimble plaza
#

Hmm. But it confuses me sometimes. I was like what the fuck is a sha one. Hehe

stuck furnace
#

I snuck in when you weren't looking

#

๐Ÿ‘€

quaint oyster
stuck furnace
#

There was that idea to put solar panels in space and beam the power down wirelessly ๐Ÿค”

#

Just a kite with a metal wire

#

ยฏ_(ใƒ„)_/ยฏ

rugged root
#

Could we add โ€œBusiness Servicesโ€ to โ€œlocationsโ€ so that I can add vacations to that calendar similar to the way we can pick a conference room for scheduling?

nimble plaza
#

Hemlock. From how long you haven't changed your job.

#

I mean not the job but the companies you work.

#

Oh. I've heard that people in IT keep changing jobs in 1 or 2 years just to get good hike in salary.

#

So this only implies to US IT culture?

#

Lucky guy

#

your country? Hemlock?

#

For a fresher. If i haven't did any internship but have great projects on my resume. Will that help me get the job or i need internship to get into a good company?

honest pier
#

get an internship

nimble plaza
honest pier
#

is that a question

nimble plaza
nimble plaza
honest pier
#

no, it's not true

nimble plaza
#

@somber heath you're from Australia right?

somber heath
rugged root
#

These are great

nimble plaza
stuck furnace
#

I wish I had money to buy things with ๐Ÿ˜”

nimble plaza
#

Anyone among you guys uses those standing desk that shift height?

nimble plaza
#

@pallid hazel sad to hear about your father.

wind raptor
#

@rugged root Here they all are ๐Ÿคฃ Sorry for the pic spam

nimble plaza
#

Cheaper than buying your ink. ๐Ÿคฃ

#

@strong arch Py.noob's father got cancer.