#voice-chat-text-0

1 messages Β· Page 1013 of 1

opal lantern
#

i do it all the time

#

oh damn

#

i just thought str meant string

#

yea

#

Create list areas

areas = [11.25, 18.0, 20.0, 10.75, 9.50]

Use append twice to add poolhouse and garage size

areas.append(24.5)
areas.append(15.45)

Print out areas

print(areas)

Reverse the orders of the elements in areas

areas.reverse()

Print out areas

print(areas)

#

This is another 1 i was working on earlier today

#

yes i do understand things with a decimals are floats

#

so things i was getting confused with is when i was using the areas.reverse() i dont think the course helps me understand that

#

i understand append is adding the 24.5 and the 15.45 to my List

#

Create list areas

areas = [11.25, 18.0, 20.0, 10.75, 9.50]

Use append twice to add poolhouse and garage size

areas.append(24.5)
areas.append(15.45)

Print out areas

print(areas)

Reverse the orders of the elements in areas

areas.reverse()

Print out areas

print(areas)
[11.25, 18.0, 20.0, 10.75, 9.5, 24.5, 15.45]
[15.45, 24.5, 9.5, 10.75, 20.0, 18.0, 11.25]

somber heath
#

!e py a = [1, 2, 3] b = a[::-1] print(a) print(b)

opal lantern
#

and thats what is gives you when running the code

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | [1, 2, 3]
002 | [3, 2, 1]
whole bear
#

2,3,1

opal lantern
#

Im sure i have

#

i havent used DEF

#

i dont know what that is

#

Well

#

im just following the course and i just started today lol

#

Oh i didnt know you could change print

#

like that

#

So i can change anything to what i want it to be

#

i can make Cat = print

#

and everytime cat(5)

#

ok

#

well yea

#

i dont think i would ever lol

whole bear
#

πŸ₯°

opal lantern
#

Ok this 1 was something i dont think i would have ever gotten without a buddy helping me think about something else

#

YES

#

i know to start liek my CODE persay is to indent it

#

yes

#

Definition of radius

r = 0.43

Import the math package

import math

Calculate C

C = math.pi

Calculate A

A = math.pi

Build printout

print("Circumference: " + str(C))
print("Area: " + str(A))

#

So this was in the course and they wanted me to import the math.pi and this was the instructions

#

Import the math package. Now you can access the constant pi with math.pi.
Calculate the circumference of the circle and store it in C.
Calculate the area of the circle and store it in A.

somber heath
#

!e ```py
def hello(): #The definition
print("Hello, world.") #and what happe s when called

hello() #The call```

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

Hello, world.
opal lantern
#

I guess ok

#

So

#

since the hello(): indent print ("Hello, world")

#

i get it while you explain it

#

But i think if i was to see this i wouldnt understand the hello() at the bottom calls the top

#

So kinda see it as the hello() calls anything after the colon

#

ok

somber heath
#

!e ```py
def func(parameter):
print(parameter)

argument = "Hello."
func(argument)```

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

Hello.
opal lantern
#

Ok reading this makes sense but applying it would probably break my brain lol

#

THANK U

#

lol GREAT

willow light
#

Cold night

opal lantern
#

not here

#

lol

somber heath
#

!e ```py
def func():
return "Hello"

result = func()
print(result)```

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

Hello
opal lantern
#

def func():
return "Hello"

||result = func()||
print(result)

#

def func():
return "Hello"

result = func()
print(result)

willow light
#

!e

def hello():
  return β€œhello”

print(hello())

No it isn’t confusing I swear

wise cargoBOT
#

@willow light :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 2
002 |     return β€œhello”
003 |            ^
004 | SyntaxError: invalid character 'β€œ' (U+201C)
somber heath
#

!e ```py
def func():
pass #What to put when you don't want to put anything but have to put something to give the indentation some code

result = func()
print(result)```

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

None
willow light
#

Ok so don’t do this on mobile lol

opal lantern
#

So in this last 1 Seems weird to see result = func() does python just know what result does?

#

Im sure it does

somber heath
#

!e py v = print("Hello, world.") print(v)

opal lantern
#

how are you writing in her?

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | Hello, world.
002 | None
opal lantern
#

Yea how are you doing this in the discord?

#

im assuming lol

#

O know that

#

I

#

So if you just wrote v = print("hello world") does it just spit out instantly hello world?

#

so the only way to call the v = print code is to print =(v)

#

print(v)

#

if im asking that correctly lol

#

Your fine

#

thanks again for helping

#

So if you wrote code you wouldnt want None to bring back

#

yes

#

Boll is onyl 2 optioons

#

boool

#

like yes no and true false but in python True and False is the only thing isnt it?

#

well boolean is SQL is anything that only has 2 options

lavish rover
#

❀️ Check out Lambda here and sign up for their GPU Cloud: https://lambdalabs.com/papers

πŸ“ The paper "Hierarchical Text-Conditional Image Generation with CLIP Latents" is available here:
https://openai.com/dall-e-2/
https://www.instagram.com/openaidalle/

❀️ Watch these videos in early access on our Patreon page or join us here on YouTube:

  • ht...
β–Ά Play video
opal lantern
#

in

#

lol your fine lol

somber heath
#

!e py a = [3, 1, 2] print(a.sort()) print(a)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | None
002 | [1, 2, 3]
opal lantern
#

both on your phones

somber heath
#

!e py a = [3, 1, 2] b = sorted(a) print(a) print(b)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | [3, 1, 2]
002 | [1, 2, 3]
lavish rover
#

!e

a = [4, 5, 3]
print(id(a))
a.sort()
print(a)
print(id(a))

b = sorted(a)
print(b)
print(id(b))
wise cargoBOT
#

@lavish rover :white_check_mark: Your eval job has completed with return code 0.

001 | 139713258839616
002 | [3, 4, 5]
003 | 139713258839616
004 | [3, 4, 5]
005 | 139713258988672
opal lantern
#

So is something with (id) just good practice i see you and mustafa did this

#

Ok

somber heath
#

!e py from random import shuffle a = [*range(10)] print(a) b = shuffle(a) print(a) print(b)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
002 | [7, 0, 9, 5, 2, 1, 4, 3, 6, 8]
003 | None
stuck furnace
#

Hey πŸ‘‹

lavish rover
#

!e

a = "Hello"
b = a.upper()
print(a)
print(b)
wise cargoBOT
#

@lavish rover :white_check_mark: Your eval job has completed with return code 0.

001 | Hello
002 | HELLO
opal lantern
#

if i remember correctly a=[*range(10)] since there is nothing in front of the *range it just counts to 10? or something like that

lavish rover
#

!e

a = "Hello"
b = str.upper(a)
print(a)
print(b)β€Š
wise cargoBOT
#

@lavish rover :white_check_mark: Your eval job has completed with return code 0.

001 | Hello
002 | HELLO
opal lantern
#

str is a class? and .upper is a method

somber heath
#

Of str.

#

Assuming you have no other class that has an upper method as well.

lavish rover
#

!e print(str)

wise cargoBOT
#

@lavish rover :white_check_mark: Your eval job has completed with return code 0.

<class 'str'>
somber heath
#

!e print(dir(str))

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'capitalize', 'casefold', 'center', 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'format_map', 'index', 'isalnum', 'isalpha', 'isascii', 'isdecimal', 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans', 'partition', 'removeprefix', 'removesuffix', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']
opal lantern
#

What should they be called lol

#

Kinda of lol

#

I love this. This is what breaks my small little brain.

somber heath
#

!e py text = "Apples are nice." result = text.title() print(result) result_two = str.title(text) print(result_two)

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

001 | Apples Are Nice.
002 | Apples Are Nice.
opal lantern
#

I guess i need to do some more of my course work and see where i get with it. My brain is a bit on overload. I will for sure be back in here though trying to scope up every little bit of information you guys feed this out of date brain of mine. i want it to be running on an m.2 but its running like a old HDD

austere parcel
#

@lavish rover

#

u indian???

opal lantern
#

yea i think understanding it will be very helpful i thin koverall

#

overall

#

Im trying not to

austere parcel
#

lol

opal lantern
#

I hope so 1 day

#

Ok guys thanks so much again

#

Im going to hit the sack

#

And go burnout my brain at work tomorrow.

austere parcel
#

bye

opal lantern
#

later Aaron

austere parcel
#

i ma 13

austere parcel
#

hehe

opal lantern
#

Im 37

#

and just starting this

austere parcel
#

i satred when i was 11

opal lantern
#

Im just trying to improve my life

austere parcel
#

my company

opal lantern
#

Well I'm trying to do something with what I'm learning. hopefully start a new career so I can take care of my family and my 3 year old

lavish rover
#

Aye Matey

austere parcel
#

lol

#

thought

#

it was

#

nvm

#

bad answer

#

ssooo

#

how are u guys

opal lantern
#

Night everyone

austere parcel
#

good night

lavish rover
austere parcel
#

dies

#

me trying to do it

#

ohhh ok

#

got it

#

lol

#

can i show u somthing

#

ok

#

wiat

#

opening code

wise cargoBOT
#

Hey @austere parcel!

You either uploaded a .txt file or entered a message that was too long. Please use our paste bin instead.

lavish rover
#

!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.

somber heath
#

!code if it fits

wise cargoBOT
#

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.

austere parcel
#

ohhh

#

ok

wise cargoBOT
#

Hey @austere parcel!

You either uploaded a .txt file or entered a message that was too long. Please use our paste bin instead.

austere parcel
#

still not workig

#

its a long code

lavish rover
austere parcel
#

ohh ok

#

like this??

#

its like dumb jarvis

#

from iron man

#

huh

#

i didnt hear you

#

i k

#

its typed

#

thats why its called dumb jarvis

#

lol

#

@lavish rover

#

u know AI-ML and NURALNETWORK??

#

can u teach me ??

#

i wanna learn

#

i will study evrything

#

ok

stuck furnace
austere parcel
#

😦

#

calculas 1,2,3

#

?

stuck furnace
#

Currently writing a recursive descent parser πŸ˜“

austere parcel
#

like a study route?

stuck furnace
#

There's probably some trick to do it easily with string replacements etc.

#

Oh pithink

lavish rover
austere parcel
#

ok

#

letss start from the basics

stuck furnace
austere parcel
#

oh thx

stuck furnace
#

Ah yeah πŸ€”

austere parcel
#

free ??

stuck furnace
#

Anyway, I've done the tokeniser πŸ˜„ Not sure if that was really necessary.

austere parcel
#

okk

stuck furnace
#

Yep, I agree with that.

austere parcel
#

i kninda know python for two years

#

its it enough?

stuck furnace
#

If you want to dip your toes, there are some good free courses out there.

austere parcel
#

ok

stuck furnace
austere parcel
#

ohhhh

#

HARVARD

austere parcel
stuck furnace
austere parcel
#

i am ready to take challanges

stuck furnace
#

Which is their "intro to AI" course.

austere parcel
#

ok

stuck furnace
#

Sorry, not intro to AI

#

Intro to CS

austere parcel
#

computer science??

austere parcel
#

i am from india

stuck furnace
#

Yep, that one assumes a level of programming ability equivalent to having completed the other course.

austere parcel
#

so some times i dont understand what u guys are saying

#

and i say somthing

#

eles

stuck furnace
#

Red ey? Very interesting πŸ€”

#

Lightsaber πŸ˜„

#

Why not both? R&R

#

Oh yeah also a lot of people can't talk because of the voice-gate @ripe lantern

#

Yeah, you had to voice verify right? πŸ€”

#

Erm, just 50 messages

#

πŸ‘€

#

Yeah, I'm a mod πŸ˜„ I just choose not to speak.

#

It's a whole thing

#

Erm, yeah I feel a bit self-conscious talking on mic.

#

Ah yeah, you never hear your voice the way others do πŸ˜„

#

Because like, your voice resonates inside your head or something πŸ€·β€β™‚οΈ

#

πŸ€”

#

In what context?

#

Drank too much coffee?

#

Ooh

lavish rover
#
from parsyc import *
from collections import Counter
from functools import reduce

def multiply(a, *bd):
    bstr = "".join(bd)
    b = 1 if bstr=="" else int(bstr)
    return Counter({k:v*b for k,v in a.items()})

merge = lambda lst: reduce(lambda a,b: a+Counter(b), lst, Counter())
atom = forward(lambda:
    Counter @ CharSatisfy(str.isalpha) |
    ~Char("(") + term + ~Char(")") |
    ~Char("[") + term + ~Char("]") |
    ~Char("{") + term + ~Char("}")
)
term = merge @ Many(multiply % (atom + Many(Digit)))

print(term.parse("H2([SO2]2)3"))
stuck furnace
#

Oh wow that's much more succinct than what I wrote.

#

Is @ function composition?

lavish rover
#

ish- it takes the results of the parser and passes it through the function

#

it creates a "composite" parser so to speak.

#

if you're familiar with Haskell, it's an Applicative.

stuck furnace
#

Uhh, it's been a while

lavish rover
#

Many(x)

#

Many(x).parse(...) -> [x's return type]

stuck furnace
#

I see

#

Very cool

#

Erm, not particularly πŸ˜„

#

Kind of average

#

There is one guy who's sometime in here with a really deep voice.

#

Sounds like a subwoofer

#

Yep MAD πŸ˜„

#

The programmer's motto incident_actioned

#

"it'll cause problems later but I'll fix it"

#

What are you working on btw?

#

Oh right. As a discord bot?

#

Nice

#

Anyway, I gotta go πŸ‘‹

#

Cya guys

craggy oyster
#

@lavish rover
Wtf you know blender scripting?

lavish rover
#

a little bit yeah

#

why?

lavish rover
stuck sky
#

Pro

stuck furnace
#

@grizzled geode Hello, you pinged?

woeful salmon
#

Console.ReadKey().KeyChar;

cosmic lark
#

hello there

#

xD

#

nothing much @lavish rover wbu?

frosty star
#

ayy howsitgoin guys

#

davinder

#

mustafa

#

O///O is no one here or my speaker is broken

cosmic lark
#

xD

#

me shy >////<

#

MnM

frosty star
#

oh.. ok

#

oh deleted user is that you speaking

#

i only see 3 ppl

cosmic lark
frosty star
#

ahh... pesky bugs

#

oh opal is here too

forest zodiac
#

hi

cosmic lark
rich flame
#

Hi guys

#

Help me pls, I want to make it so that the number is raised to a power, how can this be organized?

forest zodiac
#

!e

false = 0_0
print(flase == False)
#

!e

false = 0_0
print(false == False)
wise cargoBOT
#

@forest zodiac :white_check_mark: Your eval job has completed with return code 0.

True
wise cargoBOT
#

@lavish rover :white_check_mark: Your eval job has completed with return code 0.

16
forest zodiac
#

fun one

rich flame
lavish rover
wise cargoBOT
#

@lavish rover :white_check_mark: Your eval job has completed with return code 0.

True
rich flame
forest zodiac
#

πŸ˜†

lavish rover
# rich flame

a and b are strings. you need to convert them to integers first

#

you should do int(a) and int(b)

rich flame
#

ok, thanks

#

omg! Big Thanks

forest zodiac
#

πŸ€”

lavish rover
forest zodiac
#

why yes

rugged root
somber heath
#

Chicken Nougat.

rugged root
sweet lodge
#

mistaek-of-creation?

lavish rover
#

missed creation of steak

forest zodiac
#

not a god anymore 😦

frosty star
#

wanna stick around and listen but gtg bye guys 😦

rugged tundra
lavish rover
rugged tundra
lavish rover
#

ah I see, looks like an interesting one

rugged tundra
#

yesterday someone told me about kd trees

lavish rover
#

kd-trees are fun

lavish rover
#

I've implemented a few of them

rugged tundra
#

I didn't know kd trees were a thing

lavish rover
#

and other spatial partitioning stuff for my renderer

rugged tundra
#

yeah, that makes sense

lavish rover
#

I also have an itch

rugged root
#

There's a cream for that

lavish rover
#

that's pretty nitch

#

I'm surprised they make it

rugged root
proper granite
rugged root
#

That'll tell you what you need to know about our voice gate system

somber heath
#

What sort of soup do the undead enjoy?

#

Tomb-ato.

ionic crow
#

how do i get streaming permissions?

#

@rugged root

rugged root
#

I tend to give it as needed. Conditions are usually if you're helping someone or receiving help, writing or reviewing code, or doing something I consider intersting or beneficial for our users, like teaching about Docker and Kubernetes as an example.

ionic crow
#

ah

#

i would like to receive help

#

im just going through leetcode questions

rugged root
#

What's the issue you're having with it

ionic crow
#

and i feel like it would be easiest to stream to someone more compotenet

#

i kinda want someone to guide me along

#

since im somewhat a beginner

woeful salmon
#

@lavish rover i wanna learn cpp 20 >w>

ionic crow
#

if u ever have time hemlock id appreciate ur help

#

through some of the beginner questions on leetcode

#

if not, its fine

#

i know everyone has stuff that theyre busy with

rugged root
#

I think it'll be easier if you show us what you're struggling with first so we know what help we'd be giving. Some stuff I might be better at, others might be more in someone else's wheelhouse

ionic crow
#

well

#

for the first problems

#

im given a list and a target

#

the list contains numbers

#

ex: [1, 3, 6, 7, 9, 4]

#

and i have to find the output(s) that reach the target number

#

ex: 4

#

output would be [0,1]

#

i know that I need to for loop it

#

in order to go down the list

#

but unsure on how to make a "checker"

#

to see what inputs reach the target

rugged root
#

Are you able to link the particular problem?

#

Not sure how it works on l33t

ionic crow
signal sand
#

Sad thing about languages is... it is not a "Survival of the Fittest" game... rather "Survival of the Oldest"

somber heath
#

Just crying into your keyboard.

proper granite
#

can any one remove the mut

#

mute

somber heath
#

You need to go through the voice gate system.

rugged root
somber heath
#

It's not automatic.

ionic crow
#

well, if anyone has spare time lmk

rugged root
#

I'll look as I can, apologies

proper granite
rugged root
#

Yep

proper granite
#

but i have prople

rugged root
#

You can write it out. More often than not, you'll get better or more consistent help by using our help system. See #β“ο½œhow-to-get-help for more details on that system

proper granite
#

@rugged roothow download the python

rugged root
rugged tundra
#

In this Python Beginner Tutorial, we will start with the basics of how to install and setup Python for Mac and Windows. We will also take a look at the interactive prompt, as well as creating and running our first script. Let's get started.

Mac Install: 1:25
Windows Install: 5:44
Installs Complete: 8:37

Watch the full Python Beginner Series he...

β–Ά Play video
proper granite
#

can me download the python in visual studio

rugged tundra
#

Watch video

#

follow

somber heath
rugged root
#

Yeah the Corey Schafer videos are great to get you up and running

proper granite
proper granite
rugged root
#

Primarily just Python. Typically we only talk/offer help for other languages in the off-topic channels and in here some times

#

But the help system is specifically for Python

proper granite
#

THANKS

rugged tundra
#

🐍

rugged root
#

Happy to help

whole bear
#

hello, i need help about pynput

quasi condor
whole bear
#

my script is listening my mouse click but when i click my mouse is lagging

rugged root
#

Can you show your code?

whole bear
#

ofc

stuck furnace
whole bear
#
#by Lessy

import pynput
from pynput.mouse import Button, Controller
from pynput.mouse import Listener
from pynput.keyboard import Key, Controller
from pynput import keyboard
import pyautogui
import keyboard
import time

mouse = Controller()

def is_clicked(x, y, button, pressed):

    if keyboard.is_pressed("l"):
        return

    elif pressed:
        for i in range(1, 2):
            pyautogui.keyDown('alt')
            time.sleep(1)
            pyautogui.keyDown("tab")
            time.sleep(1)
            pyautogui.keyUp('tab')
            time.sleep(1)
            pyautogui.click(button='left')
            pyautogui.keyDown('alt')
            time.sleep(1)
            pyautogui.keyDown("tab")
            time.sleep(1)
            pyautogui.keyUp('tab')


with Listener(on_click=is_clicked) as listener:
    listener.join()
stuck furnace
#

Btw, thanks for the ping Charlie πŸ˜„

quasi condor
#

I misremembered the invite - my apologies

stuck furnace
#

No worries πŸ˜„

woeful salmon
#

its made in rust

#

too

quasi condor
#

exa for ls

signal sand
quasi condor
#

fd for find

signal sand
rugged root
#

@whole bear When you say it lags, what do you mean. Is it lagging for like... that number of sleeps or

woeful salmon
# quasi condor fd for find

πŸ‘€ fd i've actually tried but for me find and fd seem to be working about the same
i might just not be using it in a recursive enough folder structure to notice difference though

rugged root
#

Or do you mean it just can't be executed multiple times quickly

quasi condor
whole bear
#

think it like 10 fps

rugged root
#

Huh

woeful salmon
#

ah ok ripgrep is actually nice though πŸ™‚ i've had times where grep just takes like 10 seconds everytime and ripgrep takes less than a fourth of it

quasi condor
#

I liked exa a lot

#

mostly because of the tree structure

rugged tundra
#

https://www.kernel.com/ 'kernel', they are hiring πŸ˜‰

Kernel is making neuro measurement mainstream. We are a world-class team of engineers, neuroscientists, physicists and operators working to usher in a new era for the brain and mind.

rugged root
#

I don't have a lot of experience with PyAutoGUI or pynput. Most of the time if I need a macro like that I use AutoHotKey

whole bear
#

maybe any problem about this?

woeful salmon
woeful salmon
#

i guess i personally do get a usecase for it every now and then

whole bear
rugged root
#

Give me like....

#

5 minutes

#

I can scratch something out

whole bear
rugged root
#

So we can use the ahk python library

whole bear
#

okay

rugged root
#

And that'll let you use Python to write up AutoHotKey program, let it leverage that

#

Alternatively, we can write the script in AutoHotKeys own script language

#

Which I find kind of... clunky, but it works

whole bear
#

you are right

whole bear
whole bear
#

you are asking what i want to do right?

#

my script is gonna wait for my click

#

then when i click

#

i have 2 chance

#

first one

#

when i click, my script gonna click my first click 500px to the right

#

i am so sorry but i do not understand you

#

can you type if you can

#

cuz eng is not my main language

woeful salmon
#

@quasi condor also in c# all types are aliases for capitalized versions of themselves from the System namespace that are objects but they are still called primitives as they are the main base datatypes

rugged root
#

I'm just needing the steps, like:

  1. Does this
  2. Does next thing

Just to make sure I'm writing up the right stuff for the script

whole bear
#

okay

#

script gonna listen my click

quasi condor
#

you're interacting with actual objects, not these weird not-object things

whole bear
#

like that

#

or we can do this as well. When i click: My script gonna do alt-tab (i mean will switch to the next tab) and click.Then it will do alt-tab again

rugged root
#

Mkay

quasi condor
#

@molten pewter crypto coming on

sweet lodge
#

Mint

#

I got in trouble at the mint because I was walking around too much while looking for the bathroom

rugged tundra
#
NASA

Solar Cycle 25 has begun. During a media event on Tuesday, experts from NASA and the National Oceanic and Atmospheric Administration (NOAA) discussed their analysis and predictions about the new solar cycle – and how the coming upswing in space weather will impact our lives and technology on Earth, as well as astronauts in space.

whole bear
rugged root
#

Patience

whole bear
#

I am sorry. I just wondered :'

rugged root
#

All good

#

So for the script I'm making, the hotkey is going to be CTRL+SHIFT+Leftclick

whole bear
#

okay

amber raptor
#

Track Pad is also liked by content creators because it’s much quieter when recording.

#

LTT had series of videos on Linux gaming

molten pewter
#

https://en.wikipedia.org/wiki/List_of_Linux_games Here is a list of Linux games, there are a handful like 0 AD that run better on Linux and are easier to install.

This is a list of specific PC titles. For a list of all PC titles, see List of PC games.The following is a list of games released on the Linux operating system. Games do not have to be exclusive to Linux, but they do have to be natively playable on Linux to be listed here.

#

Ie. Linux Air Combat is only available on Linux, however, I am sure people on Windows could care less.

rugged tundra
#

Knowledge of cloud technologies including AWS, GCP, Docker, Kubernetes, EMR/Spark or Terraform

rugged root
#

@whole bear sorry for the delay

rugged tundra
#

From a job description of a job that interested me, however the technologies they use are sort of a grab bag to me

rugged root
#

Finally remembered how to do all that jazz

#
+^LButton::
{
    Send "{Alt Tab}"
    Click
    Send "{Alt Tab}"
}
``` It's that simple
whole bear
rugged root
#

Yep!

#

Should

#

Unless I got the button presses wrong, but I think those are right

whole bear
#

okay can we do this without ctrl and shift?

#

i mean just left click

rugged root
#

Sure, just have to remove the +^, however the problem there is that it'll happen EVERY time you click

#

And that means when you try to turn it off

whole bear
#

yea

#

i am sorry but i have one more question to you

rugged root
#

Shoot

whole bear
rugged root
#

Oh that yeah

whole bear
#

is that easy?

amber raptor
rugged root
#

Gotta get the right coords thing

whole bear
#

you mean should i explain?

rugged root
#

Crap, I have to run back and fix some IT shit

rugged root
#

No, I know what you need, I just don't remember how to do the cursor shift off the top of my head

whole bear
#

okay dude

#

thank you so much

#

I am grateful

rugged root
stuck furnace
#

Based cool kids, obvs

rugged root
#

Gotta think of a better name for the lounge

quasi condor
stuck furnace
#

James lemon_smug

quasi condor
pearl tiger
#

May i intrupt you guys

stuck furnace
pearl tiger
#

Actually I need suggestion which language I should choose

rugged root
#

With regards to....

stuck furnace
pearl tiger
#

Yup

pearl tiger
#

For web dev

peak copper
#

js or ts

quasi condor
#

TypeScript is the only sensible answer

#

I will not be taking questions.

pearl tiger
#

Some of my friends says choose java , and py

#

Js

lavish rover
pearl tiger
#

So im confiused

rugged root
lavish rover
#

@stuck furnace I shortened my thing a little more:

from parsyc import *
from collections import Counter
from functools import reduce

multiply = lambda a, b=1: Counter({k: v * b for k, v in a.items()})
merge = lambda lst: reduce(Counter.__add__, lst)

atom = forward(lambda:
    Counter @ Regex("\w") |
    ~Char("(") + molecule + ~Char(")") |
    ~Char("[") + molecule + ~Char("]") |
    ~Char("{") + molecule + ~Char("}")
)
term = multiply % (atom + Optional(Integer))
molecule = merge @ Many(term)

print(molecule.parse("K4[ON(S{O1}3)2]2"))
#

The Final Proof of the non-Existence of God was proved by a Babel Fish.

Now, it is such a bizarrely improbable coincidence that anything so mind-bogglingly useful could have evolved purely by chance that some have chosen to see it as the final proof of the NON-existence of God. The argument goes something like this:

"I refuse to prove that I exist," says God, "for proof denies faith, and without faith I am nothing."

"But," says Man, "the Babel fish is a dead giveaway, isn't it? It could not have evolved by chance. It proves that You exist, and so therefore, by Your own arguments, You don't. QED."

"Oh dear," says God, "I hadn't thought of that," and promptly vanishes in a puff of logic.

"Oh, that was easy," says Man, and for an encore goes on to prove that black is white and gets himself killed on the next zebra crossing.

rugged root
rugged root
#

We all are

#

It's like when Pluto got reclassified

stuck furnace
#

Ooh Prolog?

#

Ah right, so it's like a programming paradigms course?

#

Horn clauses πŸ‘€

rugged root
stuck furnace
#

Ohh, do you know what you should try out (when you have time)?

rugged root
#

Which

stuck furnace
#

WebPPL

#

It's a probabilistic programming language, built on top of Javascript, I believe.

gentle flint
stuck furnace
#

What did Ward do to you?

gentle flint
rugged root
#

Burn ward

gentle flint
gentle flint
opal lantern
#

What is going on there?

gentle flint
#

King's day

opal lantern
#

<< Dumb American So ill google it

#

lol

#

Are you in the Netherlands?

gentle flint
#

yep

#

in Amsterdam

hasty fulcrum
#

noice

viscid rapids
#

hello guys

#

someone from brazil?

whole bear
#

no.

lavish rover
#

Poopoo headphones, I'll get my good ones in a sec

opal lantern
#

Hey GUys

#

I was trying to right a discord bot today AND i couldnt even follow the video lol\

#

Made me sad

#

Uhm

#

i was trying Nextcord imprt

#

Thats the videp

#

Sp the first time i made it i got the bot to come online but then but not accepting my slash commands

#

then i tried again and the bot wouldnt even come online so i just took a break

#

yea after trying to learn about it all day at work

#

and work then try more shit at home

#

Just breaks me after a while.

#

My Job Title is Transportation System Coordinator

#

But i work for a food distribution company

#

and i help the drivers

#

mostly

#

and some payroll stuff and kinda maintain the system

#

Right now im trying to learn a skill i can build on that will increase my salary from what im making to starting at 60+

#

Well Im 37 and i just really probably started learning python about 2 days

#

trying to

#

Not saying i can lol

#

kinda

#

LOL

#

Normally the videos walk you thru how to do 90% of it

somber heath
#

A sin tax is an excise tax specifically levied on certain goods deemed harmful to society and individuals, such as alcohol, tobacco, drugs, candies, soft drinks, fast foods, coffee, sugar, gambling, and pornography. In contrast to Pigovian taxes, which are to pay for the damage to society caused by these goods, sin taxes are used to increase the...

opal lantern
#

so just seeing what it can do usually and just getting familiar with the stuff

#

My problem is importing the ALL THE Shit that pretty much changes the base

#

I mean ive taken

#

2 a datacamp course intro to python and done some stuff on linkedin course todayu

#

Hell no

#

I no 0 languages

#

I love gaming. So i was going to try to make a bot that just did funny shit after i understood it more

#

Yea im sure i just Jumped in to a shit show lol

somber heath
#

Corey Schafer

opal lantern
#
#

You gave him to me yesterday

#

Np

#

i watched a couple videos from him

#

and used the Replit website

#

a little today

#

I was on a work PC

#

so i couldnt download a python app on it

#

See i love how people say its EZ

#

And then i just cant do the easiest shit in it sometimes

somber heath
#

Yeah, well, helps if your environment is set up.

#

If it's not and you don't know how to do that, then, yeah.

opal lantern
#

Im on my home PC now

#

i downloaded taht for the discord bot

#

Vscode

#

i was just trying to follow the video to see how it works But i dont know how to setup the i guess correct location for it to read from

#

i need to get some rest later guys

somber heath
#
def func_a():
    ...

def func_b():
    ...

def func_c():
    ...

alpha = "apple"

if alpha == "apple":
    func_a()
elif alpha == "pear":
    func_b()
elif alpha == "grape":
    func_c()```

```py
def func_a():
    ...

def func_b():
    ...

def func_c():
    ...

thing = "apple"
action = {"apple": func_a,
          "pear":  func_b,
          "grape": func_c}
action[thing]()```
stuck furnace
#

That was a deep sigh πŸ˜„

#

Hello guys πŸ‘‹

#

I think math is about understanding the fundamental essence of logical structure πŸ€”

#

But idk πŸ€·β€β™‚οΈ

#

Mathematicians try to explain things in the most succinct/parsimonious way.

#

Do we have a define command πŸ€”

#

.wa define succint

viscid lagoonBOT
stuck furnace
#

.wa short define succint

viscid lagoonBOT
stuck furnace
#

:C

#

So according to Google...

succint - Common misspelling of succinct.

#

There you go πŸ˜„

#

Ok, actual definition:

#

Characterized by clear, precise expression in few words; concise and terse.

#

I could have, but succinct was more succinct.

#

I hear a cat πŸ‘€

#

Erm, I'm not sure of the context sorry?

#

Ah yeah sorry Mustafa, weekends only.

#

It's ok, it's not really a written rule.

#

I have an idea: see what completion github copilot gives when you enter finals, semi-finals, quarter finals,

proud forum
#

πŸ˜”

stuck furnace
proud forum
#

Nightly bad? Perhaps

stuck furnace
#

Odds?

#

Nope πŸ˜„

#

I'm actually more of a mathy person than a verbal person.

#

And then I took a calculus to the knee

#

Sorry that was stupid πŸ˜„

lavish rover
#

IMO calculus becomes a lot more intuitive when you actually learn it under the context of using it for something

#

calc + lin alg started making a lot more sense to me once I started doing computer graphics

stuck furnace
#

Hey Mustafa btw, do you want to learn something new? πŸ‘€

#

He is not a lion πŸ˜„

#

Have you dabbled in probabilistic programming?

#

So like, have you tried logic programming before? E.g. Prolog

#

Oh right, well it's similar to that in a way πŸ˜„

#

I believe you could write a renderer using a PPL, although I've just started learning about it myself.

lavish rover
stuck furnace
#

I see

#

Apparently MCMC is one of the inference algorithms used by WebPPL.

#

Implements a variety of inference algorithms, including exact inference via enumeration, rejection sampling, Sequential Monte Carlo, Markov Chain Monte Carlo, Hamiltonian Monte Carlo, and inference-as-optimization (e.g. variational inference).

#

πŸ€”

#

Green

#

Β―_(ツ)_/Β―

#

OMG some of the gifs that come up when you search "green" 😹

#

Honestly, I have no idea

#

Yellow guy is not so happy ; - ;

somber heath
stuck furnace
#

🌈 t i m e z o n e s 🌈

#

Yeah sorry, didn't mean to be snarky πŸ˜„

#

Maybe like change your posture

#

Fair enough

#

Consolation prize?

#

Would you like to livestream your code btw?

#

Ah right, no pressure πŸ˜„

#

That's all I think of now when people mention Avatar πŸ˜„

#

They used papyrus lemon_pensive

#

Nah the subtitles in Avatar are in the font papyrus, and it was a whole thing.

#

SNL skit I think

#

BST

#

Which I think is UTC+1

#

πŸ‘€

#

Wow Mustafa, I am shocked

#

Alright alright, let's change the subject please lemon_pensive

#

This is T M I

#

Nice, so I can have another existential crisis πŸ˜„

lavish rover
#

shun shun shun shun shun shun shun shun shun shun

#

(a 10 shun)

stuck furnace
#

That game is basically Existential Crisis - The Game

lavish rover
stuck furnace
#

No not at all, I just got up πŸ˜„

#

Ready for the day ahead

#

About 6 am

#

Yep.

#

Although I don't think I've ever felt refreshed from taking a nap.

#

If I was a cat, yes

#

🐱

#

Oh I didn't know that

#

Do you think it's addictive?

peak copper
#

Wait it can be addictive?

stuck furnace
#

7

#

!eval ```py
import random
print(random.randrange(1, 11))

wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

10
stuck furnace
#

Erm, I would generally do random.random() < p, where p is the probability.

#

random.random() is a random number between 0 and 1.

#

So, if p is 0.2, then random.random() < p with probability 20%.

#

Erm, I think they're doubles πŸ€”

#

But I think it would depend on how many "bits of entropy" you have.

#

I guess that would be random.random() < 1E-9

#

Anyway, going to head off, cya πŸ‘‹

#

Adios

somber heath
#

!voice @calm hearth

wise cargoBOT
#

Voice verification

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

rugged root
#

Phineas P. Gage (1823–1860) was an American railroad construction foreman remembered for his improbable[B1]:β€Š19β€Š survival of an accident in which a large iron rod was driven completely through his head, destroying much of his brain's left frontal lobe, and for that injury's reported effects on his personality and behavior over the remaining 12 y...

woeful salmon
#

@lavish rover when do you guys start with the thing?

#

so i can join back at the time

#

gotta do some work meanwhile

rugged root
wind cove
#

Someone that can Coding that Wants to help

rugged root
#

The help system will be a much better way to get assistance

#

More eyes on the problems typically

astral drum
lavish rover
#

we're reading how to automate the boring stuff with python and talking about python stuff

astral drum
#

ohh, thanks for the answer! reading an article/paper?

molten pewter
#
lavish rover
sweet lodge
#

@amber raptor, can you tell me if you think this is PowerShell's fault or Rust's fault?

cargo run -p idi -- art kerp-art $(cargo run -qp idi -- art kerp-summary-designs "LS Pallet 22 wk1")

The inner command is returning the series of numbers correctly, but the outer command breaks on "invalid digit". If I copy and paste the numbers in, it works fine...

#

I'm using Windows PowerShell not Core yet if that matters
No issues using Core if it helps

rugged root
#

Can you add the RUST_BACKTRACE?

#

And I think it might just be how it's parsing it from the file

#

I don't think it's a powershell issue..... but hmm

lavish rover
#

might it be the leading space in the string?

sweet lodge
rugged root
#

I was wondering that

sweet lodge
#

Yeah no because.... Hmm

#

Maybe

#

Hi joe

amber raptor
molten pewter
sweet lodge
rugged root
#

It's an environmental variable thing

sweet lodge
#

Yeah
I just forget how to set them in PS

rugged root
#

But either way, can you strip out the leading - same - whitespace?

sweet lodge
#

Yeah, I thought so, it does still work with extra spaces

rugged root
sweet lodge
#
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
#

dammit

#

Could this really not be condensed?

sweet lodge
#
impl KerpDesignInfo {
    pub fn from_onsite_design_info(
        onsite_design_id: String,
        onsite_design_title: String,
    ) -> KerpDesignInfo {
        let split_title = onsite_design_title.split(' ').collect::<Vec<&str>>();
        let thousand = u32::from_str(onsite_design_id.as_str()).unwrap() / 1000;
        let thousand_folder = format!("{thousand}000-{thousand}999", thousand = thousand);

        KerpDesignInfo {
            onsite_id: onsite_design_id.to_string(),
            logo: split_title[0].to_string(),
            ground_color: split_title[1].to_string(),
            team: split_title[2].to_string(),
            gender: split_title.last().unwrap().to_string(),
            design: format!("{}{}", split_title[2], split_title[0]),
            design_folder: format!(
                r#"\\redacted\redacted\graphics\{thousand_folder}\{onsite_design_id}"#,
                thousand_folder = thousand_folder,
                onsite_design_id = onsite_design_id
            ),
        }
    }
}
uncut acorn
#

im on fricking 5000ms on LAN πŸ—Ώ

rugged root
#

Yeesh

#

That's weird

gentle flint
#

@faint ermine sounds like you're crackling again

sweet lodge
#

All the numbers get pulled together into one string

faint ermine
#

@sweet lodge could you just println onsite_design_id?

sweet lodge
#

God bless Rust errors

#

Please hold while it runs

faint ermine
#

do println!("'{:?}'", onsite_design_id);

sweet lodge
#

Huh, I didn't know you could print String

faint ermine
#

you can print most things with the {:?} format pattern

#

since that uses the Debug trait

#

which a LOT of things have

sweet lodge
#

And {:#?}

#

Formatting is nice

faint ermine
#

also are you not using a IDE with a rust language server?

lavish rover
#

itis itis itis itis itis itis itis itis itis itis

somber heath
#

A fan taser.

sweet lodge
# faint ermine do `println!("'{:?}'", onsite_design_id);`
'" 97774 97775 97776 97777 97778 97779 97780 97781 97782 97783 97784 97785 97786 97787 97788 97789 97790 97791 97792 97793 97794 97795 97796 97797 97798 97799 97800 97801 97802 97803 97804 97805 97806 9780
7 97808 97809 97810 97811 97812 97813 97814 97815 97816 97817 97818 97819 97820 97821 97822 97823 97824 97825 97826 97827 97828 97829 97830 97831 97832 97833 97834 97835 97836 97837 97838 97839 97840 97841 97842 97843 97844 97845 97846"'
faint ermine
#

thats a few dozen ints, not one

somber heath
#

Your face has a dickbutt?

lavish rover
rugged root
sweet lodge
#
let design_numbers: Vec<&str> = matches.values_of("design-number").unwrap().collect();
for design_number in design_numbers {
# ...
let kerp_design_info = KerpDesignInfo::from_onsite_design_info(design_number.to_string(), response_text);
# ...
}
rugged root
#

Still pissed this one didn't get accepted

sweet lodge
#

So... Subcommands always add quotes?

somber heath
#

Cry tear ear

faint ermine
somber heath
#

Turkey jerky.

#

Pair of invisible spectacles.

rugged root
somber heath
#

Eligible bachelor's degree.

molten pewter
sweet lodge
#
#

Becky want

#

some stick

#

Becky is smashing Ben

#

Ben is a hoe

molten pewter
#

"Legitimate accrediting agencies are recognized by the Council on Higher Education Accreditation (CHEA) and/or the U.S. Department of Education (ED)'

rugged tundra
molten pewter
somber heath
#

@rugged root Beat me to it. VPN war.

molten pewter
#

As Republicans grow enamored with Hungary's far-right, autocratic turn under Prime Minister Viktor OrbΓ‘n, Jordan Klepper heads to Budapest to glimpse the potential future of American conservatism. #DailyShow

Subscribe to The Daily Show:
https://www.youtube.com/channel/UCwWhs_6x42TyRM4Wstoq8HA/?sub_confirmation=1

Follow The Daily Show:
Twitter...

β–Ά Play video
runic forum
#

Hello

#

Long time, no heard

thick beacon
#

best vpn ?

amber raptor
#

@rugged tundra get on my level

thick beacon
#

i only get 400

#

😦

#

does speed effects ping?

#

@amber raptor

amber raptor
#

No

thick beacon
#

i get it.

#

what is latency and packet loss? which effects on games.

amber raptor
#

latency is how fast packets move, bandwidth is how many packets

gentle flint
#

if your packages move slower, you have a high latency, and a high ping

amber raptor
#

higher bandwidth can help with packet loss if reason for packet loss is lack of bandwidth

#

80 USD

gentle flint
#

if you lose packets on the way, your connection re-requests them (if you're using tcp), so they are retransmitted, so it takes longer for everything to arrive

thick beacon
#

How game company places there server on each country

#

like they from on place or they plant there servers

#

for games to each country

sweet lodge
#

Well now I don't have to debug anything

thick beacon
#

like example as valorant servers

gentle flint
amber raptor
#

Most of them use Big 3 Cloud providers and spin up servers in each of their datacenter

gentle flint
#

makes accounting simpler

amber raptor
#

Rocket League uses GCP if I remember correctly

royal raft
#

😭

royal raft
gentle flint
#

what are you using to check this

#

it's not ookla

amber raptor
gentle flint
#

ah

royal raft
royal raft
thick beacon
amber raptor
thick beacon
#

One question, maybe it can be stupid but just curious, how GTA5 server are not planted anywhere, as we play with players across global. but no delay in ping and all?

#

how?

sweet lodge
#

There are delays, which are shown by your ping

amber raptor
#

I believe GTA5 is Peer to Peer

#

someone in the game is "hosting"

thick beacon
thick beacon
thick beacon
#

only delay happens in gta5 when speed issue is there on internet.

sweet lodge
rugged root
#

@sturdy dirge What were you needing?

sturdy dirge
#

i'd like to stream screen, with code and help another to learn python or node.js

rugged root
#

Typically we only grant it on an as needed basis. There are certain users who do have it permanently, but they are people who were grandfathered in from the old system we had or they're people I've personally vetted.

#

But normally it's a temporary permission. So just let me know when you need it and we can go from there

sturdy dirge
#

oke, i understand

sturdy dirge
#

you need where i'd like to stream screen?

#

i only share code and help another to undestand

rugged root
#

Right, but I have video perms severely locked down after we had people streaming porn and abusing the perms. So I'm hesitant to give it to someone permanently until I get to know them much better

sturdy dirge
sweet lodge
#

Does Ubuntu Server have Python 3.10 yet?

sturdy dirge
#

oke

rugged root
#

Oh is this a part of the thing Magical is doing?

sturdy dirge
sturdy dirge
rugged tundra
sturdy dirge
sweet lodge
#

"You will never have a GUI on a server"

sweet lodge
amber raptor
#

Windows is special

sweet lodge
#

I fucked up my first 20 servers

#

Net negative is always nice

amber raptor
#

my kubernetes nodes are 50GB

sweet lodge
#

VPS is a great option

#

It was way easier than dual booting

#

Long live Docker!

#

docker exec -it container-name sh

#

I'm always amazed at how high quality DO's guides are

quasi condor
sweet lodge
#

I blame the user

quasi condor
#

I mean they tell the user to do dumb things. That's on the author

modern grail
#

it's goin good man, hbu

hybrid linden
#

yes you can

#

@lapis hazel you can use the the on_message event

#

and link that with something you been working on

signal sand
#

@lapis hazel πŸ™ƒ

sweet lodge
#

ME: uninstalls some programs I don't use anymore

#

Microsoft:

terse needle
#

@lavish rover

def digits(n):
    if n > 10:
        return [*digits(n//10), n%10]
    return [n]

print(digits(123))
[1, 2, 3]
lavish rover
#

hmm not sure what the point of this is?

sweet lodge
#

@terse needle

def digits(n):
  return list(int(i) for i in str(n))
terse needle
#

we don't have the leisure of str in asm unfortunately

sweet lodge
#

Stop using asm

#

ez

terse needle
#

I was just trying to put together a mock algorithm for separating digits in a number

lapis hazel
lavish rover
opal lantern
#

I wish i could have half the Brain you guys got. Listenting to you guys talk about this stuff makes me feel ill never understand anything you guys are doing lol

lavish rover
#

if it makes you feel better, I feel like that most of the time when people are talking about stuff I don't do.

opal lantern
#

@lavish rover Im not sure it does for all of us like it does u

#

Its very unfair for me to compare myself to u since ive only done this for this being my 3rd day ever trying just python but ow

lapis hazel
lavish rover
opal lantern
#

@lavish rover So when can i sign up for some classes with you! lol

rugged root
#

"Jack of all trades, master of none, is often times better than a master of one"

lavish rover
#

I'm known to just start explaining stuff even when no one asks

opal lantern
#

Ill wait my 1 more day and i may never leave discord again lol

#

so i can talk to you and not constantly type

rugged root
#

Yep, almost there

quasi condor
#

Average salary for non-STEM vs STEM graduates post-graduation

rugged root
#

I should stop making jokes

signal sand
quasi condor
#

because it's science!

quasi condor
#

exactly

rugged root
#

Trying to find mastic gum that has xylitol in it

#

Kind of a best of both worlds dental health gum

#

Especially since I started chewing a lot more gum because of.... what's it called again

#

Ah, right. Tardive dyskinesia.

#

Makes me at certain times just start making a chewing motion and I can't stop it. Side effect of years of medications. Will never go away, will only get worse or stay the same

#

Tis lame

stuck furnace
#

If you can visualise quarternions, 3Blue1Brown has probably done it.

#

They're supposed to be useful for computer graphics right?

signal sand
quasi condor
#

@amber raptor are you still working on your Von Neuman probe game?

amber raptor
#

Nothing I can show

signal sand
#

@quasi condor @lavish rover what book... is it about cellular automaton?

quasi condor
#

no no

signal sand
#

@lapis hazel that was good! awesome!

stuck furnace
#

Erm πŸ€” Not recently

#

I have Dirk Gently on my bedside table

quasi condor
#

Douglas Adams is great

amber raptor
#

I’ve read Vince Flynn novels about CIA agent going all CIA agent

quasi condor
stuck furnace
#

I hope Spin Launch succeeds πŸ˜„

#

It's just such a cool concept

amber raptor
#

When I read fiction, I’m generally not very picky

#

It’s entertainment

stuck furnace
#

Gotta go πŸ‘‹

rugged root
#

ΞœΞ±ΟƒΟ„Ξ―Ο‡Ξ± @lapis hazel

lapis hazel
#
signal sand
#

I think... it will not destroy general relativity... just as general relativity didn't destroy, newton's theory of gravity! @lapis hazel

#

we just did't have complete picture!

rugged root
lavish rover
whole bear
#

Guys does someone know if there is a telegram script/bot that auto sends a set message to a group chat every hour

lapis hazel
#

you can just use shortcuts if you're on iphone

whole bear
#

wdym shortcuts

lapis hazel
#

there's an app that comes with iphone called shortcuts

whole bear
#

ye

lapis hazel
#

you can do this with that app

whole bear
#

Oh