#voice-chat-text-1

1 messages Β· Page 69 of 1

arctic dirge
#

ngl ai music is pretty good..fight me

gleaming vale
#

its trash and repetetive

stuck bluff
#

@winged rose πŸ‘‹

arctic dirge
winged rose
gleaming vale
#

its sickeningly perfect

delicate wren
#

it's not

#

not even that

#

(responding to meu)

#

it sounds shit

#

all of it

#

there is not a hint of "perfect"

#

@stuck bluff shitpost as a service, as all genAI

#

I wonder if troll farms are still cheaper than LLMs pithink

gleaming vale
#

the only use-case for gen AI is answering my dumb question like how to quit neovim

delicate wren
#

judging by job postings, yes

shell mural
#

πŸ‘€ what happen here

#

πŸ˜‚

arctic dirge
delicate wren
#

depends on what state you got yourself in

#

:q! sometimes doesn't work immediately

#

spam escape, wait, spam escape more, then :q!

junior tangle
arctic dirge
delicate wren
#

I almost never :q, got a habit of :q!ing even from a read-only open

gleaming vale
# arctic dirge fake, exiting vim is impossible

on my setup first ypu enter the visual mode then you will hit the leader key then go to the telescope and you search for the magic word then you ask lucifer for permition to leave then you press esc button thr trolly pop up will show and if you shoose not to change the rail then neovim will exit

arctic dirge
#

i just exit out of tmux and then then kill vim process

delicate wren
#

best program

/ # ed
quit
?
exit
?
^C
?
?
?
stuck bluff
#

@rapid granite πŸ‘‹

delicate wren
#

M-x ed

tight cipherBOT
#

?

junior tangle
stuck bluff
#

@zinc sky πŸ‘‹

#

!voice

coarse hearthBOT
#
Voice verification

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

stuck bluff
#

@fossil garden πŸ‘‹

fossil garden
fossil garden
#

I have than wait by 3 days for voice verification?

#

oh ok, thanks

junior tangle
#

πŸ€”

stuck bluff
#

@violet badger πŸ‘‹

#

Pardon?

#

I slightly bollocksed up some spag bol. It was okay, though.

#

I made pasta.

#

Chicken and tomato based sauce.

#

I slightly mistreated the pasta side of things.

delicate wren
#

mamma mia

stuck bluff
#

The pasta stuck to itself and to the pan and sat in there for too long because it wasn't hot enough so it was a touch clumpy and it also broke up into shorter noodles.

delicate wren
#

🀌 pasta al fuckuppi

stuck bluff
#

It was okay. It wasn't too bad.

#

Pasta Grannies. Good channel.

#

I'm usually pretty good at the pasta.

gleaming vale
#

on my code event listener was per objects

#

because the window manager will take those events and call that event for the selected object

stuck bluff
#

Doc.

#

@lavish pumice πŸ‘‹

#

I said hi back.

#

I do.

#

I've never called you Stacey, Osyra.

#

...do you want me to?

lavish pumice
#

What operating system do you guys use

gleaming vale
#

freeBSD

#

best OS frfr

stuck bluff
#

🐧

lavish pumice
#

Who uses mac here

stuck bluff
gleaming vale
#

😈

stuck bluff
#

I wasn't talking about yours.

delicate wren
#

SunOS 4.1

gleaming vale
#

internet is filled with sora AI flops 😭

gleaming vale
#

what distro?

stuck bluff
#

Lamb.

gleaming vale
#

hmmmm never heard of it before

#

show me ur fastfetch

#

:D

stuck bluff
#

Which country would that be?

coarse hearthBOT
#

:white_check_mark: Your 3.14 eval job has completed with return code 0.

001 | 8
002 | 15
003 | 12
004 | 35
delicate wren
#

I'm slightly surprised it worked first time

gleaming vale
#

i run 1k line of code with no error at first run

#

Milien: 🦊 🍢

delicate wren
#

ugh the rerun timed out

#

wanted to add clarity to the output

#

!e

from collections.abc import Callable
from math import prod
class Number:
    def __init__(self, value: int):
        self.__listeners = []
        self.__value = value
    def _set_value(self, value: int):
        self.__value = value
        for listener in self.__listeners: listener()
    @property
    def value(self) -> int: return self.__value
    def add_listener(self, listener: Callable[[], None]): self.__listeners.append(listener)
class Sum(Number):
    def __init__(self, *numbers: Number):
        value = lambda: sum(n.value for n in numbers)
        super().__init__(value)
        for n in numbers: n.add_listener(lambda: self._set_value(value()))
class Prod(Number):
    def __init__(self, *numbers: Number):
        value = lambda: prod(n.value for n in numbers)
        super().__init__(value)
        for n in numbers: n.add_listener(lambda: self._set_value(value()))
class Input(Number):
    def set_value(self, value: int): self._set_value(value)
a = Input(2)
b = Input(3)
c = Sum(a, b)
d = Prod(a, b)
c.add_listener(lambda: print(a.value, '+', b.value, '=', c.value))
d.add_listener(lambda: print(a.value, '*', b.value, '=', d.value))
a.set_value(5)
b.set_value(7)
coarse hearthBOT
delicate wren
#

here both inputs have multiple event handlers per same event

#

(stuff of that sort is more common in UI stuff, idk what specifically you're using event handlers for)

delicate wren
#

more realistic example of that I wrote recently:
one event handler updates a table,
another updates a graph

gleaming vale
#

currently im trying to make a foundation for my larger project by creating a simple calculator app

#

by creating stuff

#

ill show my file tree

delicate wren
#

add an option to run multiple calculations on same input

#

and have them dynamically update

delicate wren
#

you'll see then how it becomes simpler with a multi-map

gleaming vale
#

srr for the bad background contrast lol

#

im currently working on the button part

delicate wren
#

@thin lintel I can play tomorrow, yes

stuck bluff
#

Hey, Maro.

gleaming vale
#

you mean marco

delicate wren
#

@crystal aurora got summoned by earlier pasta discussion, clearly

#

with a slight delay

gleaming vale
#

🀌

delicate wren
#

@crystal aurora it's going to be multi-language anyway, I'd assume (at least Bash+Java)

stuck bluff
#

@turbid field πŸ‘‹

delicate wren
#

depends on what level it's composed at

#

process call or method call

#

many small Java tools vs one big Javalith

lavish pumice
#

How long have you all been building projects using python

delicate wren
#

8 years

turbid field
#

Hi

delicate wren
lavish pumice
delicate wren
#

@crystal aurora have Java call Kotlin and have Kotlin call Rust via UniFFI

misty urchin
#

java πŸ“ž kotlin πŸ“ž rust πŸ“ž the police python

delicate wren
#

UniFFI comes with full support for Kotlin, Swift and Python
Android, iOS and the rest of the world

#

seems like Swift has async/await too

#

I wonder if they'll do C# support

#

at some point

#

Bash is slightly older than Linux

#

ash and bash are both from 1989

#

I finally started working on the intrusive queue implementation

#

it might end up being slower than what I currently have

#

since I still want a safe interface

delicate wren
#

other than dropping Unpin requirement

#

and some not-running-out-of-memory guarantees

#

no

#

unsure

#

some of those letters are effectively just umlauted versions

#

just not via diacritics

#

and, like, two which do have diacritics

#

North Ossetia

#

South Ossetia isn't Russia, according to Russia

#

Georgia says it's Georgia, Russia says its independent

misty urchin
#

afk for a sec

delicate wren
#

there is some amount of fear involved, since doing anything against the system (including being a fan not loudly enough) is potentially prosecutable

#

and I'd expect that to be even more the case in European parts which aren't Moscow

#

the sky is sideways

misty urchin
#

back

clever isle
#

does any one know how api work

delicate wren
#

which API

clever isle
#

web sever api it not sending my my data from my script to a web ui

#

a csv file that dispays the info to the ui

delicate wren
#

are you using someone else's API or one you made?

#

who hosts the web server?

#

@misty urchin look at how aligned this is

misty urchin
#

serendipity or intentional?

clever isle
delicate wren
#

intentional, easier to read that way

misty urchin
#

in either case it's nice

delicate wren
#

(also it's not starting from 0 because it's nicer to have 0 as invalid state, in case I accidentally read from zeroed memory)

#

two main values to avoid are 0 and 65

clever isle
#

is this for me

delicate wren
delicate wren
#

how are you detecting whether or not calls arrive there?

#

I've definitely seen some digital forensics talk, not sure if that one

#

were there two presenters?

delicate wren
delicate wren
clever isle
#

ok so umm is there a better way to do this i am bull data from an api right and it make a csv file and i think every time i pull new data it creats a new file so the api does not using the new file

delicate wren
#

@misty urchin disk at a low level is just a bunch of bytes, so, as soon as it gets paved over with a new filesystem, that's all you have left, kind of

misty urchin
#

I don't understand are you getting data from the api or sending data?

clever isle
#

it should just add to the csv file right instead of creating a new file alltogether

delicate wren
#

unencrypted swap

#

if the power gets cut off

#

, then there is no way to proactively do that

clever isle
#

i am pull and sending the data gets pulled creates a CVS file and stores multiple data letters and numbers

delicate wren
#

somewhen ago, NVMM was considered a possible idea, ZFS even had some work done on it

clever isle
#

bro i am not hacking i am pull data form an api that is a public api i can pull from

delicate wren
#

(what ZFS potentially got from it: persistent caching)

#

((non-volatile main memory))

misty urchin
#

@clever isle noone said you were hacking

delicate wren
#

if you want to append to a file, open it with "a" instead of "w"

clever isle
#

making a separate one?

clever isle
delicate wren
#

I think csv module should work fine even with an append-only file

misty urchin
#

I think for debugging, it would be easier if you separate the requesting of new data from the pushing to your web api

delicate wren
#

Rust is about to yell at me for using the wrong atomics ordering

#

(once I fix name errors)

clever isle
#

its funny becasue the words number are going it just he words

misty urchin
#

first figure out if when you send something if it's shown on your UI

#

if yes, then the issue is probably with how you handle files between requesting data and sending data

#

if not, then you know it's something that happens after posting new data to your api endpoint

clever isle
#

how do i fix the scan issue do i make one file enforce that all re scans go to that specific file and then the api get theh info from that file

#

is that the wright way to do this

misty urchin
#

what do you mean by rescans?

delicate wren
#

Theodore Wright mentioned

brittle loom
#

Hello

#

Who are looking for dev

clever isle
#

rescans? i pull data list data is a lot of things its big i am only pulling 2000 when i re scan it pulls another 2000

misty urchin
#

you can just store the data in a file and overwrite it on a new post

#

if you don't care about the old data

clever isle
#

The data flows from Python scanner β†’ CSV file β†’ Backend service β†’ API endpoint β†’ Frontend component β†’ UI display!

clever isle
#

do u think the data gets stuck in the api or the back end devices

#

who want to do this for me

misty urchin
#

I would send one request and follow what happens in the logs and on the ui

#

and see at what point the thing I expect to happen doesn't happen

#

and then start looking there

clever isle
#

bro how do i debug

sly pond
#

print()

clever isle
#

ahhh

misty urchin
#

idk what you have running on your backend

clever isle
#

omg this is a lot of work

#

why me

misty urchin
#

but logging should make your life easier

gleaming vale
#

lol

clever isle
#

how do not display wht ur api is doing in the console of the web browser

#

I tried to encrypt it and then it blow up my code

delicate wren
#

F12
Network

clever isle
#

i dont want my stuff showing on there how do i take it out or it because it a dev sever

delicate wren
#

all the data, that JavaScript has access to, is also accessible to the user

#

the are no easy/efficient ways to encrypt it, JavaScript presently doesn't provide a mechanism to use certain CPU's intrinsics for running trusted code on untrusted platforms

#

if you want something hidden, don't send it to the user

clever isle
#

it's displaying my Python process in the console. I just want to show the numbers. It's like showing what it calculated and how I calculated it.

delicate wren
#

if it redirects your python logs there, then, yes, that is, possibly, a feature of the dev server

clever isle
#

got it

#

so is this the best way to to do this have one csv file that re scans just add to the file list

#

is anyone here working on any cool things

delicate wren
#

if you want to add a row to the CSV file, you can open the file in append-only mode

clever isle
#

i want it to be done automatic

delicate wren
#

!e

with open("test.csv", "a") as f:
    f.write("a;1\n")
with open("test.csv", "a") as f:
    f.write("b;2\n")
with open("test.csv", "a") as f:
    f.write("c;3\n")
coarse hearthBOT
delicate wren
#

!e

from csv import writer
with open("test.csv", "a") as f:
    writer(f, delimiter=";").writerow(["a", "1"])
with open("test.csv", "a") as f:
    writer(f, delimiter=";").writerow(["b", "2"])
with open("test.csv", "a") as f:
    writer(f, delimiter=";").writerow(["c", "3"])
coarse hearthBOT
delicate wren
#

"also consider using [today's hangman phrase] instead"

clever isle
#

look u picking apples from tree ur basket is not full and lets say u make a new basket instead of just using the same one u have

delicate wren
clever isle
#

oh

#

the one guy said it makes a new one

#

my bad

delicate wren
#

"a" means "write to the end of the file"

clever isle
#

my bad

#

og

#

thanks

#

for the help

delicate wren
#

@misty urchin I assumed it would be quite simple from context to guess the answer

#

(it was primarily made for @sly pond to guess)

clever isle
#

is that one word

#

or a sentience

#

can we get a hint

delicate wren
#

@misty urchin working with pointers seems to be surprisingly not that painful in Rust

clever isle
#

no context

#

like

delicate wren
#

(compared to typical C/C++)

delicate wren
#

@misty urchin seemingly they're just files

#

as far as cleanup/whatever goes

#

also seems like can't O_TMPFILE it

sly pond
#

I'd have to go with an R

misty urchin
#

I assumed it was meant to be solved without extra letters

sly pond
#

hangman?

#

without letters?

misty urchin
#

as in

#

using only the info provided

sly pond
#

That's just bang you die

#

no hangman

#

I assume hangman means guess letters until the man hangs

#

That's how I always played as a child

#

What a pleasant children's game

#

words and murder

misty urchin
#

lots of stuff that's for children is actually pretty hardcore

delicate wren
delicate wren
#

"clearly, the pipelines in question are (were?) Nord Stream 1 and 2"

misty urchin
delicate wren
#

I haven't read through these

#

proper Linux is definitely preferable over WSL

#

none

#

you just don't get those perms when a moderator isn't in the VC already

misty urchin
delicate wren
#

@misty urchin as far as I know

#

okay miri no longer complains for just new+drop

twilit otter
#

@odd ember thats it?

#

dawg my eyes turn red and my pants turn brown when i get scammed dawg

#

πŸ₯Ή ✌️

shy crane
#

@hybrid wolf please come back

shy crane
#

I can't do my code

#

If I didn't have you

#

@hybrid wolf If you come back, you can ask me for anything

#

I can't sleep @hybrid wolf

stark drum
stuck bluff
#

REPL

#

Read, evaluate, print, loop

solid sleet
#

@stark drum

#

what do u wanna do

#

i have connection issues please write in text

#

also im arabi too

stuck bluff
#

We want to open up a new page for editing a module.

#

So that we're not in the REPL.

solid sleet
#

oh

stuck bluff
#

I don't use Mac, so I'm slightly useless.

stark drum
stuck bluff
#

Drop-down menu, Options, Configure IDLE, Highlights, Highlighting Theme

stark drum
dry geyser
#

Would anyone like to hear a joke?

stuck bluff
#
print("Hello, world.")```
#

!code

coarse hearthBOT
#
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.

stark drum
stuck bluff
#

somename.py

stark drum
stuck bluff
#

scripts

stark drum
stuck bluff
#

!code

coarse hearthBOT
#
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.

stuck bluff
#

@crude mirage https://peps.python.org/pep-0008/#package-and-module-names "Modules should have short, all-lowercase names. Underscores can be used in the module name if it improves readability. Python packages should also have short, all-lowercase names, although the use of underscores is discouraged."

stark drum
stuck bluff
#

module / .py file

stark drum
stuck bluff
#
name = input("What is your name? ")```
#

!d input

coarse hearthBOT
#

input()``````py

input(prompt, /)```
If the *prompt* argument is present, it is written to standard output without a trailing newline. The function then reads a line from input, converts it to a string (stripping a trailing newline), and returns that. When EOF is read, [`EOFError`](https://docs.python.org/3/library/exceptions.html#EOFError) is raised. Example...
stuck bluff
#
input()
input("What is your name? ")```Are both valid.
#

"

#

'

#

Double quote, single quote.

#

Each are one symbol.

#

Oh pal miss t

stark drum
stuck bluff
#

Pseudonym.

#
print(f"Hello, {name}.")```
stuck bluff
#

Pneumatic. New mat ic.

#

!e py name = "Ghazi" print("Hello, {name}.") print(f"Hello, {name}.")

coarse hearthBOT
stuck bluff
#

!f-string

coarse hearthBOT
#
Format-strings

Creating a Python string with your variables using the + operator can be difficult to write and read. F-strings (format-strings) make it easy to insert values into a string. If you put an f in front of the first quote, you can then put Python expressions between curly braces in the string.

>>> snake = "pythons"
>>> number = 21
>>> f"There are {number * 2} {snake} on the plane."
"There are 42 pythons on the plane."

Note that even when you include an expression that isn't a string, like number * 2, Python will convert it to a string for you.

stuck bluff
#

!e ```py

(string) variables using the + operator

a = "abc"
b = "def"
c = "ghi"
print(a + " and " + b + " and " + c + ".")

f-strings are often better

print(f"{a} and {b} and {c}.")```

coarse hearthBOT
stark drum
stuck bluff
#

!code

coarse hearthBOT
#
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.

stuck bluff
#
print("Hello, world.")
name = input("What is your name? ")
print(f"Hello, {name}.")```
#

```py
print("Hello, world.")
name = input("What is your name? ")
print(f"Hello, {name}.")```

#

I'm asking you to send your code as text, not as an image.

stark drum
#

print("Hello, world.")
name = input("What is your name ? ")
print(f"Hello, {name}.")

stuck bluff
stark drum
#

print("Hello, world.")
name = input("What is your name ? ")
print(f"Hello, {name}.")

#

'''py

stuck bluff
#

` not '

#

It's on the ~ key

#

` This is a backtick

stark drum
#
name = input("What is your name ? ")
print(f"Hello, {name}.")
stuck bluff
#

Backtick backtick backtick p y enter

#

the code

#

backtick backtick backtick

stark drum
#
name = input("What is your name ? ")
print(f"Hello, {name}.")
stuck bluff
#

p y enter

#

not

stuck bluff
#

p y space your code

stuck bluff
stuck bluff
stark drum
#
name = input("What is your name ? ")
print(f"Hello, {name}.")
#
print("Hello, world.")
name = input("What is your name? ")
print(f"Hello, {name}.")```
#

p y print("Hello, world.")
name = input("What is your name? ")
print(f"Hello, {name}.")

#
name = input("What is your name ? ")
print(f"Hello, {name}.")```
#
name = input("What is your name ? ")
print(f"Hello, {name}.")
#
print("Hello, world.")
name = input("What is your name? ")
print(f"Hello, {name}.")
#
name = input("What is your name ? ")
print(f"Hello, {name}.")
#
name = input("What is your name? ")
print(f"Hello, {name}.")```
stuck bluff
#

```py <- Line 1
print("Hello, world.") <- Line 2

stark drum
#
name = input("What is your name? ")
print(f"Hello, {name}.")```
stuck bluff
#

Press enter immediately after the py

#

enter/return/newline

stark drum
#
print("Hello, world.")
name = input("What is your name? ")
print(f"Hello, {name}.")```
#
print("Hello, world.")
name = input("What is your name? ")
print(f"Hello, {name}.")```
#
print("Hello, world.")
name = input("What is your name? ")
print(f"Hello, {name}.")
#
print("Hello, world.")
name = input("What is your name? ")
print(f"Hello, {name}.")
stuck bluff
#

@stark drum I return.

stark drum
stark drum
#

hemp hearts

#

rose hips

#

nitric oxide

stark drum
#

economist

#

I an economist

#

I,m an economist I study economics

dry geyser
#

If you want to know something the common ancestor between cats and dogs must have been very happy because they're relative was the
|| -#smilodon||

stark drum
#

how many years

shy crane
#

@hybrid wolf Keep your promise

#

The part I don't want you to take away means I want you to stay @hybrid wolf

shell mural
#

I have a sound @fathom ore ?

fathom ore
shell mural
#

me no too

fathom ore
#

yes i can hear you

fathom ore
#

im from somewhere

toxic oracle
#

hello

#

@ocean iron

thin estuary
#

im not robin

glad turtle
#

this is the one right?

shell mural
frozen echo
#

hi

#

can't unmute

glad turtle
shell mural
#

MSI Thin 15 B13UC-3024FR

glad turtle
toxic oracle
#

hey @glad turtle what r u doing

glad turtle
toxic oracle
#

what kind of activities

glad turtle
toxic oracle
#

u can speak right

glad turtle
toxic oracle
#

ok sure i will definitely read it

toxic oracle
toxic oracle
#

i already visited but i didn't understand

glad turtle
glad turtle
toxic oracle
#

ok

junior tangle
#

XD

delicate wren
#

I don't remember the question, but I remember the answer: Ruby

#

@misty sinew not really, mostly cultural

#

mostly environment

#

early programmers were mostly female

#

that too was just an environment result

misty sinew
delicate wren
#

learn history????

delicate wren
misty sinew
delicate wren
#

by early I mean early

misty sinew
#

burden of proof is on you

delicate wren
#

programming and alike was seen as tedious, therefore delegated to women

#

same thing happened to computers (human workers, mostly female, doing calculations) in early 20th century astrophysics

#

(this specific image is unrelated to programming directly, adjacent occupation)

delicate wren
crude mirage
#

This is a unique way of looking at it with knowing that

misty sinew
misty sinew
delicate wren
misty sinew
#

for someone to make the claim and not be able to back it up, and keep asking me for counter when i didnt even make a claim for or against anything

delicate wren
#

I'm not asking you for counter

#

I'm asking you to get educated

sly pond
#

If I say George Washington was the first president, do I need to back it up?

#

Historical fact is just that

misty sinew
delicate wren
#

everyone should get educated continuously, not going to argue against that

sly pond
#

I'm all for continuing education

#

I'm always trying to learn something new

misty sinew
#

there is only so much one can know and for you to blatantly throw a statement and not back it up when asked for and attacking with "you should go educate yourself" reads to me bad faith

delicate wren
#

I'm slow at finding specific sources, and I'm currently busy doing that

misty sinew
#

okay you could have said that lol

delicate wren
#

(it wasn't based on skill difference)

misty sinew
#

you say that, but where is that coming from

delicate wren
#

(I assume we're at least not going to debate the fact that Harvard Computers were female)

delicate wren
misty sinew
#

we are not debate you show me clear stats and i believe but you havent yet

misty sinew
delicate wren
#

can we establish at least the fact that Harvard Computers were female?
as a start of properly figuring this out

#

which kind of sources do you accept for that claim?

misty sinew
#

i mean lol i dont think i am willing to grant you that

misty sinew
delicate wren
#

book?

delicate wren
#

from what kind of source will you accept that number?

misty sinew
#

idk lol, study, article? whatever takes you to prove that female > male

delicate wren
misty sinew
delicate wren
#

my two specific claims were:

  • early programmers were mostly female
  • early computers (human computers) were mostly female
#

don't try to make up what I'm claiming

misty sinew
delicate wren
misty sinew
#

enlighten me how

delicate wren
#

doesn't have to relate to skill

#

do you want me to explain basic logic to you?

misty sinew
#

attacks again?

#

ye sure explain me basic logic

#

cause idk how "mostly female" doesnt imply female > male

delicate wren
#

neither of these claims implies the either:
"early programmers were mostly female"
"female are better than male at programming"

#

why? because difference in percentage of employment doesn't inherently mean difference in skill

#

more people of certain kind hired doesn't mean those people are of higher skill

delicate wren
misty sinew
#

ok that sounds irrelevant, i thought it was implicitly implied for you to be called a programmer it must be your primary job, so by claiming that early programmers were mostly female you are basically making this vague aregument that there were more women who could program than men and no one can prove that, tells more about your biases and lack of scientific tempramwnt

misty sinew
delicate wren
misty sinew
delicate wren
#

if you need a more specific timespan, iirc this was specifically the time when most programming was done on ENIAC

misty sinew
#

that seems like another red herring

#

i am sorry i dont wanna bail out, but i really dont think this is going anywhere

delicate wren
misty sinew
#

oh you edited

delicate wren
#

I added /configuring

misty sinew
#

ok sure

delicate wren
#

or do you require a textual programming language to qualify the activity as programming?

#

(with text interpreted/compiled by the machine)

#

because, sure, if you push and twist the definition of programming the right way, you can get very varying ages for "early programming"

#

where tf do i find publicly available books on eniac

misty sinew
delicate wren
#

is this selection bias because only including ENIAC?
within that time period, no, because there was nothing other than ENIAC at the time that was actually used and programmable

#

Bombe was way too inflexible, and from what I'm finding, also had fewer people working on it

#

if you want a specific year estimate where the percentage flipped, I can try doing so finding it

misty sinew
#

i am not the one to accuse everything of selection bias that image was clearly a seems a product of that unless you expand on the context

delicate wren
#

I'm clarifying because you accused earlier

misty sinew
#

i am more than happy to concede that female was majority gived convincing evidendces

delicate wren
misty sinew
delicate wren
#

"βœ… make sure to include some housewives in there"

misty sinew
#

whats dei

delicate wren
#

lmao

#

the buzzword for the diversity hiring

misty sinew
#

are you playing my side too lol

#

thanks for defending me

delicate wren
#

this is absolutely not an ego thing for me;
if you find a hidden pile of male programmers from the time of ENIAC, I will concede the point

#

I have no idea for what was happening right after ENIAC

#

Descartesn't:
I do not think therefore I do not am

#

"I think therefore I am" (Descartes)

delicate wren
#

like on that, while I didn't claim it, I misremembered

delicate wren
misty sinew
#

that's fine i am not gonna pin you on that even if you did

delicate wren
#

Z3

#

Z3 and other Zuse's stuff was more advanced than ENIAC, earlier than ENIAC

#

but didn't get enough recognition/use

misty sinew
delicate wren
#

probably partially because Germany

delicate wren
#

but

misty sinew
#

you mean like opposition by any chance

delicate wren
#

no

#

hmm

#

competitor to ENIAC's claim of being the only used and programmable computer

misty sinew
#

oh

delicate wren
#

they differ on "used"

#

Z3 was more programmable, but no one cared or used it

misty sinew
#

the main proponent of that claim you mean?

delicate wren
#

competitor to ENIAC
and I guess, yes, counts as opponent to the overall first claim from there

#

(thanks for helping with words, I'm so sleep deprived lmao)

misty sinew
#

i am drunk haha

delicate wren
#

((this might be why sometimes sounding like broken record))

misty sinew
#

we are both not in the best position for having debates

delicate wren
#

IT WAS WHOLE 6 YEARS BEFORE THE NEXT COMPUTER???

#

they made, like, several UNIVACs next, went bankrupt, then got bailed out

#

hmm

#

irrational is real\rational

#

lmao

#

omfg this computers timeline site of some museum is driving me insane

#

I can't stand this layout

delicate wren
#

most follow up computers seem to be around 1949

#

1945~1949 so far is exclusively ENIAC, as far as programmable stuff goes, as far as I can see

delicate wren
#

okay, found, update: 1948

#

(SSEM)

#

SSEM had one whole kibibit of memory

#

how luxurious

#

(I'm trying to narrow down that period of ENIAC only)

#

there is a sleep deprived text-only woman

delicate wren
delicate wren
#

I have no clue what's going on in voice

#

I have my happy box of text where I hide and I pretend I don't hear the rest

#

@sly pond "you're missing everything", whatever this everything is

glad turtle
gentle fiber
#

aaahhhh

glad turtle
#

@small field you remember me?

versed wolf
#

i'm lagging

small field
#

Why

#

@glad turtle

stuck bluff
#

Woo.

quasi hinge
#

does anyone know a library for py interaction with a paystack api

stuck bluff
#

Last muted night tonight.

#

No.

#

I hope you reported that.

#

Good.

#

Did you reach out to the target?

#

@little nova πŸ‘‹

#

@manic stirrup πŸ‘‹

fair heron
#

did you need something @small field ?

small field
fair heron
#

@small field
The URL provided (http ://thumbnails-racial-parent-argued.trycloudflare.com/home/) does not return directly accessible or meaningful content for summary from the search results or cached sources. It appears to be related to a temporary or proxy Cloudflare URL potentially serving thumbnails or media content with no clear text or context available from public web indexing.

small field
fair heron
#

@small field Thumbnails Racial Parent Argued is not a social media site

small field
delicate wren
#

see earlier joe's comment on not sharing trycloudflare links

#

if you can, pay for a domain, they're cheap

fair heron
glad turtle
#

@misty sinew i wanna try leetrooms instead, this is too draining of a problem

#

@misty sinew are you okay with that?

true charm
misty sinew
#
class Solution {
    public boolean wordBreak(String s, List<String> wordDict) {
        for (int i = 0; i < wordDict.size(); i++) {
            s = s.replaceAll(wordDict.get(i), "");
        }
        return s.equals("");
    }
}
#

"tcrc", wordDict = [""tc", "tcr", "c"]

glad turtle
#

tcr|c

#

why is it a counter example?

#

must you use ALL words?

misty sinew
#

cause tc will be encountered first so it will remove it before trc

glad turtle
#

right

lone crypt
#
if __name__ == "__main__":
    for host in hypervisors:
        tcp_check(host)
        ssh_client = connect_to_host(host, username, password)

        try:
            hypervisor, list_command, shutdown_command, pattern = get_hypervisor(ssh_client)
            info = get_info(ssh_client, list_command, pattern)
            print(info)
            run_shutdown(info, hypervisor, host, ssh_client, shutdown_command)
        finally:
            ssh_client.close()
            print("Connection closed.")
#

!e

class A:
    pass

class B(A):
    pass

a = A()
b = B()
print(isinstance(a, A))
print(isinstance(b, A))
print(isinstance(a, B))
coarse hearthBOT
misty sinew
#
class A:
    pass

a1 = A()
a2 = A()

lone crypt
#

!e

class Person:
    def __init__(self, name):
        self.name = name

    def greet(self):
        print(f"Hello. My name is {self.name}.")

sally = Person("Sally")
peter = Person("Peter")
peter.greet()
sally.greet()
coarse hearthBOT
lone crypt
#
def get_hypervisor(ssh_client):
    output, err = run_command(ssh_client, "which esxcli >/dev/null 2>&1 && echo ESXi || ( which pveversion >/dev/null 2>&1 && echo Proxmox || echo Unknown )")
    hypervisor = output.strip()
    
    if hypervisor == "ESXi":
        list_command = "vim-cmd vmsvc/getallvms"
        shutdown_command = "vim-cmd vmsvc/power.shutdown"
        pattern = r"^(\d+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s*?(\S*)\s*?$"
    
    elif hypervisor == "Proxmox":
        list_command = "qm list"
        shutdown_command = "qm shutdown"
        pattern = r"^\s+(\d\d\d)\s+(\S+)\s+(\S+)\s+\d+\s+\d+\.\d\d\s(\d+)\s*$"
    
    else:
        list_command = ""
        shutdown_command = ""
        pattern = ""

    return hypervisor, list_command, shutdown_command, pattern
misty sinew
#
list_command = "vim-cmd vmsvc/getallvms" if hypervisor == "ESXi" else "qm list"
glad turtle
#

how about having a base class "Hypervisor", and 2 classes derived from that "Proxmox" and "ESXi"

#

and a class called "VM", which is basically what you have running in a hypervisor..

#

or LXC container..

misty sinew
glad turtle
#

also add unit tests, tests are important

lone crypt
#
$Battery = Get-CimInstance -ClassName Win32_Battery

$status = switch ($Battery.BatteryStatus) {
    1 { "On Battery (Discharging)" }
    2 { "Plugged in (Not Charging)" }
    3 { "Fully Charged" }
    6 { "Charging" }
    default { "Status: $($batt.BatteryStatus)" }
}

$level = switch ($Battery.EstimatedChargeRemaining) {
    { $_ -le 10 } { "Critical - 10% or less" ; break }
    { $_ -le 30 } { "Low - 30% or less" ; break }
    { $_ -lt 80 } { "Normal Level" ; break }
    default       { "High / Fully Charged" }
}
lone crypt
misty sinew
#
def get_hypervisor(ssh_client):
    output, err = run_command(ssh_client, "which esxcli >/dev/null 2>&1 && echo ESXi || ( which pveversion >/dev/null 2>&1 && echo Proxmox || echo Unknown )")
    hypervisor = output.strip()
    
    if hypervisor == "ESXi":
        return hypevisor,
          "vim-cmd vmsvc/getallvms",
          "vim-cmd vmsvc/power.shutdown",
          r"^(\d+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s*?(\S*)\s*?$"
    
    elif hypervisor == "Proxmox":
        return hypervisor,
          "qm list",
          "qm shutdown"
          r"^\s+(\d\d\d)\s+(\S+)\s+(\S+)\s+\d+\s+\d+\.\d\d\s(\d+)\s*$"
    

   return hypervisor, "", "", ""
lone crypt
#
hypervisor, list_command, shutdown_command, pattern = get_hypervisor(ssh_client)
coarse hearthBOT
#

Please react with βœ… to upload your file(s) to our paste bin, which is more accessible for some users.

lone crypt
coarse hearthBOT
misty sinew
#
for (var i = 0; i < 3; i++) {
  setTimeout(() => console.log(i), 0); // Logs 3, 3, 3
}

for (let j = 0; j < 3; j++) {
  setTimeout(() => console.log(j), 0); // Logs 0, 1, 2
}
crude mirage
misty sinew
#
function parent() {
  let count = 0;
  return {
    increase: () => {
      count++;
    },
    getCounter: () => {  
      return count;
    }
  }
}
const a = parent();
const b = parent();
a.increase();

b.increase();
b.increase();

console.log(a.getCounter()); // 1
console.log(b.getCounter()); // 2
crude mirage
misty sinew
#

Python does name mangling automatically when you prefix an attribute name with two underscores ( __ ).

plain sequoia
#

Hey can you suggest the things needed for devops with python?

Any road map, good resources etc ????

crude mirage
#

I cannot sorry I am not knowledgable about it.

#

AI would probably give you a good start

misty sinew
umbral rose
#

!stream 874027855674216528 30M

coarse hearthBOT
#

βœ… @high pagoda can now stream until <t:1762025133:f>.

crude mirage
#

https://www.codebattle.in/ (multiple players, LC problems, poorly written, down most of the time, confirmed by Noodle)
https://www.beatcode.dev/ (only 1v1, LC problems, works but only 1v1)
https://leetrooms.com/ (requires chrome ext)
https://www.cpduels.com/ (only for codeforces)
https://code-duel.vercel.app/ (web server is improperly configured, doesn't allow login)
https://beatcode.dev/room/6BE7WE

CodeBattle

Welcome to CodeBattle.in, the ultimate platform for practicing coding and DSA problems with Friends! Join coding contests, tackle real interview questions, and collaborate with friends in a vibrant community. Level up your coding skills with CodeBattle.

BeatCode

A live LeetCode battle game where you can use abilities to sabotage your oponents. Invite your friends and beat them with your code!

βš”οΈ Multiplayer rooms for LeetCode

misty sinew
misty sinew
crude mirage
#

axpIXWUUVG

gentle fiber
weak rock
#

yoo

delicate wren
#

@small field if I understand correctly, Discord flagged you for sending links that you were sending

#

=> another reason not to share trycloudflare

lone crypt
#

@umbral rose Can I get streaming priv please?

stark drum
#

@stuck bluff hello teacher, if you have leisure time for 5 min please came .

#

curly braces

#

{}

#

asking name

name = input("what's your name?")
print(f"hello,{name}")```
stark drum
#

curly braces

#

parentheses

stuck bluff
#

{} curly braces
[] square brackets
() parentheses

#

{ curly brace
[ square bracket
( parenthesis

stark drum
#

inflation

#

{inflation}

stuck bluff
#

!d set

coarse hearthBOT
#
set

class set(iterable=(), /)``````py

class frozenset(iterable=(), /)```
Return a new set or frozenset object whose elements are taken from *iterable*. The elements of a set must be [hashable](https://docs.python.org/3/glossary.html#term-hashable). To represent sets of sets, the inner sets must be [`frozenset`](https://docs.python.org/3/library/stdtypes.html#frozenset) objects. If *iterable* is not specified, a new empty set is returned.

Sets can be created by several means...
stuck bluff
#

!e py my_set = set() print(my_set) my_set.add(1) print(my_set) my_set.add(2) print(my_set) my_set.add(1) print(my_set)

coarse hearthBOT
stuck bluff
#

!d dict

coarse hearthBOT
#

class dict(**kwargs)``````py

class dict(mapping, /, **kwargs)``````py

class dict(iterable, /, **kwargs)```
Return a new dictionary initialized from an optional positional argument and a possibly empty set of keyword arguments.

Dictionaries can be created by several means...
stuck bluff
#

{1, 2, 3} set
{1: 2, 3: 4} dict

#

!e py print({1, 2, 3, 3, 1, 5, 2, 3, 5})

coarse hearthBOT
stark drum
#

set

stuck bluff
#

Does a set of all sets contain itself?

stark drum
#

py print({1, 2, 3, 3, 1, 5})

#

orumla

#

forumla

stuck bluff
#

@plucky rampart πŸ‘‹

stark drum
#

name =

#

exptation

#

objict or expriation

stuck bluff
#

object or expression

stark drum
#

=

stuck bluff
#

name = object

stark drum
#

Ghazi = student

stuck bluff
#
1 + 1 + 2 + (5 * 2)
1 + 1 + 2 + 10
14```
stark drum
#

valuate me

#

please gag me

#

jaj me

stuck bluff
#
"What's your name?"
f"Hello, {name}."```
#

Judge, not gag.

stark drum
#

please judge my code

stuck bluff
#

"Please gag me." means something very different.

sly pond
stark drum
stuck bluff
#

!e py name = "Peter" age = 17 print(f"Hello, {name}. You are {age} years old.")

coarse hearthBOT
stuck bluff
#

!e py name = "Peter" age = 17 print("Hello, {name}. You are {age} years old.")

coarse hearthBOT
stuck bluff
#

!f-strings

coarse hearthBOT
#
Format-strings

Creating a Python string with your variables using the + operator can be difficult to write and read. F-strings (format-strings) make it easy to insert values into a string. If you put an f in front of the first quote, you can then put Python expressions between curly braces in the string.

>>> snake = "pythons"
>>> number = 21
>>> f"There are {number * 2} {snake} on the plane."
"There are 42 pythons on the plane."

Note that even when you include an expression that isn't a string, like number * 2, Python will convert it to a string for you.

stuck bluff
#

A form of "string interpolation".

stuck bluff
#

!e py name = "Peter" age = 17 text = f"Hello, {name}. You are {age} years old." age = 9001 print(text)

coarse hearthBOT
stark drum
stuck bluff
# coarse hearth

!e py name = "Peter" age = 17 print("Hello, " + name + ". You are " + str(age) + " years old.") print(f"Hello, {name}. You are {age} years old.")

coarse hearthBOT
stuck bluff
#

!e py foo = "abc" bar = "def" print(f"{foo}{bar}") print(foo + bar)

coarse hearthBOT
lone crypt
#

!e

number = 87
print(f"It also helps to not have to convert intigers to strings using str(number), such as with: {number}")
coarse hearthBOT
stuck bluff
#

!e py "abc" + 123

coarse hearthBOT
# stuck bluff !e ```py "abc" + 123```

:x: Your 3.14 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     "abc" + 123
004 |     ~~~~~~^~~~~
005 | TypeError: can only concatenate str (not "int") to str
stuck bluff
#

!e py var = "abc" + str(123) print(var)

coarse hearthBOT
stuck bluff
#

!e py a = "abc" b = 123 c = f"{a}{b}" print(c)

coarse hearthBOT
stuck bluff
#

!e py print(f"{1 + 1 = }")

coarse hearthBOT
stuck bluff
#

!e py name = "Peter" print(f"Hello. {name = }.")

coarse hearthBOT
stuck bluff
lone crypt
#

!e

print(f"{28 + 72 = }")
coarse hearthBOT
lone crypt
#

!e

print(f"{28 + 72}")
coarse hearthBOT
stark drum
#

quote, unquote

stuck bluff
#

!e py value = 123456789 print(f"{value: _}")

coarse hearthBOT
stuck bluff
#

!e py value = 123456789 print(f"{value: b}")

coarse hearthBOT
stuck bluff
stark drum
#

what define letter b

stuck bluff
stark drum
#

quote, unquote

#

{ curly brace
[ square bracket
( parenthesis

#

@lone crypt he is back

#

{ curly brace
[ square bracket
( parenthesis

#

{} curly braces
[] square brackets
() parentheses

#

opening curly brace

stuck bluff
#

What are you asking?

#

What question?

stark drum
#

what of

#

what of them

stuck bluff
#

"You have a jar of marbles."
"Yes. What of it?"
"Well, why do you have a jar of marbles?"
"To put flowers in."
"Oh."

stark drum
#

{ curly brace
[ square bracket
( parenthesis

#

{} curly braces
[] square brackets
() parentheses

stuck bluff
#

Singular vs plural.

#

curly brace / curly braces
square bracket / square brackets
parenthesis / parentheses

#

vs = versus

#

word, but think werd

stark drum
#

weired

stuck bluff
#

weird

icy siren
#

Hey guys wassup!!

stuck bluff
#

"This person has a very singular way of doing things."

stark drum
#

I write therwe

#

strightfored

stuck bluff
#

Straightforward.

#

Straight forward.

#

Strayt

#

For werd

stark drum
#

curly brace / curly braces
square bracket / square brackets
parenthesis / parentheses

#

Singular vs plural

stuck bluff
#

( parenthesis
) parenthesis
() parentheses
(())() parentheses

stark drum
#

very similar

stuck bluff
#

@unreal rune πŸ‘‹

unreal rune
stuck bluff
#

@muted mango πŸ‘‹

#

!voice

coarse hearthBOT
#
Voice verification

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

muted mango
#

hey,, i cant talk

silk forge
#

!voice

coarse hearthBOT
#
Voice verification

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

spare trellis
glad turtle
dry geyser
sly pond
#

Paradox of Tolerance

stuck bluff
#

@wraith swallow πŸ‘‹

sullen flicker
#

@weak shell is correct, i use arch btw well-

#

xD

azure plaza
#

hai opal

#

I havent been in this vc for ages

sullen flicker
#

@weak shell you are on so right trackkkk

azure plaza
#

idk what to do

sullen flicker
#

I AM SORYY

azure plaza
#

theres no active music production servers

#

huh

#

boe of the piano?

#

oh

#

idk instruments or singing I just make stuff in lmms sometimes

#

nu

#

isn't that an ai thing

#

nu I think those are ai models

#

linux multi media studio is a daw

#

I have used ai for code

#

you have to break it down for it

#

it's getting much better very fast

#

I still haven't got one of the real vs ai video quiz things wrong yet but it's getting harder

#

who is it

#

I will look whats happening in roblox studio vc

#

bai

stuck bluff
#

@queen axle πŸ‘‹

#

!voice

coarse hearthBOT
#
Voice verification

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

queen axle
#

@stuck bluff Hello

#

I don't have permission to speak in that channel

#

I'm not eligible for voice verification

#

For the reason that I have not been active enough on this server.

#

I'm new

#

Both

stuck bluff
#

@marble river πŸ‘‹

queen axle
#

I'd say, beginner to intermediate in Python.

#

How about you?

#

What do you use it for?

#

Pretty pictures?

#

It is difficult, though, useless, isn't it?

stuck bluff
queen axle
#

Do you work?

#

Is it related to Python, or computer science in general?

#

Sounds like advanced stuff

marble river
fathom ore
#

@stuck bluff what's that bird in your pfp ?

stuck bluff
fathom ore
stuck bluff
#

@rough raptor πŸ‘‹

rough raptor
edgy parcel
#

Friend: "Just put your image into variables and no one can change it after you encode the files"
Me: "Thanks, so wtf is this zeros and ones"

delicate wren
#

c-<something> server, those usually function correctly

stuck bluff
#

Hi hi.

tame leaf
#

hello

#

can't talk either :(

stuck bluff
#

Missed the i. Hit o.

tame leaf
#

hio

#

:)

stuck bluff
#

"Hi ho."

delicate wren
#

also Chrome suddenly decided not to work at all
(I'm not using it for Discord, that one is through Firefox)

#

I mostly use it only for work/government services stuff and minesweeper

stuck bluff
#

I've heard it said that webbrowsers are notoriously nondeterministic.

#

Sometimes shit just doesn't work.

delicate wren
#

Chrome also, for whatever reason, forces me to do captcha when using Google in incognito

even though I'm opening it from the same IP all the time

stuck bluff
#

Mm. I was surprised to see searches being challenged with captchas when I occasioned to use Google search the other day. I'd never seen that for that, before.

#

Hey, mx.

#

Not much going on.

#

It's great.

#

I don't miss that.

#

I miss most of the people.

#

Oh, so do I, but school has a way of turning learning into work rather than something you want to learn.

#

I accidentally sat in smart math on my first day and I thought the teacher was great. I was actually excited to learn math. It was never a strong point for me. I was disappointed when we worked out I was in the wrong classroom.

#

He looked like a math teacher, too. Like he kind of fit the crazy grey hair scientist stereotype.

#

@restive lagoon πŸ‘‹

restive lagoon
#

i can't join voice note

#

why?

stuck bluff
#

!voice πŸ™‚

coarse hearthBOT
#
Voice verification

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

delicate wren
#

we seem to be having another internet semi-outage

stuck bluff
#

So not an internet, but an outernet.

delicate wren
#

yes, yes, pip, no one cares

stuck bluff
#

Yo.

delicate wren
#

(it's within a container, which is going to be thrown out in 10 minutes anyway)

stuck bluff
#

Maro face reveal.

#

Not that we haven't seen, previously.

#

@dense quarry πŸ‘‹

#

@turbid hollow πŸ‘‹

#

@ember moss πŸ‘‹

turbid hollow
stuck bluff
#

@vapid lantern πŸ‘‹

vapid lantern
#

@stuck bluff hiii

#

im newbie for coding

#

what project i should do first

stuck bluff
#

!kindling

coarse hearthBOT
#
Kindling Projects

The Kindling projects page contains a list of projects and ideas programmers can tackle to build their skills and knowledge.

vapid lantern
#

im ran out of idea

stuck bluff
#

Do whatever you feel is within your abilities but also something you can chew on.

#

@wide flicker πŸ‘‹

next pivot
#

@stuck bluff

#

did you leave the voice chat/

#

?

stuck bluff
molten kettle
#

yo i cant talk

#

cause of perms

#

can u get me unmuted

#

np

#

ill jus wait

umbral rose
#

!stream 317279909112446976

coarse hearthBOT
#

βœ… @stuck bluff can now stream until <t:1762919348:f>.

stuck bluff
#

@coral geode

rich summit
#

@stuck bluff Thanks for being the goat

wooden dome
#

What's wrong with sheldon?

#

He is passive aggressive

delicate wren
thin lintel
#

we trust you guys can handle him

gleaming vale
stuck bluff
#

The sugar glider (Petaurus breviceps) is a small, omnivorous, arboreal, and nocturnal gliding possum. The common name refers to its predilection for sugary foods such as sap and nectar and its ability to glide through the air, much like a flying squirrel. They have very similar habits and appearance to the flying squirrel, despite not being clo...

shell mural
#

yes

#

to generate IA images

#

ComfyUI

dry geyser
#

how is everyone?

acoustic trail
#

hello everyone

coral geode
#

My audio is failing me.

gleaming vale
#

@glad turtle

foggy rampart
#

hello guys

obsidian steppe
#

hii

shell mural
gleaming vale
foggy rampart
#

yea, my braincells consumes itself

obsidian steppe
gleaming vale
obsidian steppe
#

wht'

#

its google colab

gleaming vale
#

i use

echo "print('Hello, World')" >> hello.py
delicate wren
obsidian steppe
#

how to use bookmark feature ? i forgot

glad turtle
delicate wren
#

that does not sound Russian

proper ridge
#

!e

a = "......................................................................................................................................................................................................................................................................................................................................................................................."

print(len(a))
coarse hearthBOT
stuck bluff
#

@thick cradle πŸ‘‹

#

!voice

coarse hearthBOT
#
Voice verification

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

stuck bluff
#

@versed mural πŸ‘‹

stuck bluff
#

@dawn elbow πŸ‘‹

dawn elbow
#

Hello

dry pendant
#

What if no law enforcement agency had any privacy?

#

when you talk about "free and open society" it's now more "open" then it has previously.

stuck bluff
#

@tight scroll @wind cape πŸ‘‹

#

@agile quiver πŸ‘‹

tight scroll
#

hi all

wind cape
#

Hello

#

How are you

#

Is anybody full stack devloper here ?

tight scroll
tight scroll
dry pendant
#

I see that you are getting help elsewhere so I'll bow out of the private message and just answer in here.

#

We need a company to maximize profits and a counter weight organization to oppose the capitalists reductions. (this is for prisons/healthcare/insurance) We don't have a counterweight organization we just have individuals suing which doesn't work well.

lusty sundial
#

thats really true

wind cape
dry pendant
#

A software project with bugs? you don't say!

lusty sundial
#

.

dry pendant
#

AND Errors TOO?

tight scroll
#

Is there a photo of the error?

wind cape
#

Just an hydration error its coming in every single pages . i am not able to figure out why its coming