#voice-chat-text-0

1 messages · Page 596 of 1

wheat wolf
#

it looks ok

#

how do i add a project

#

oh right mx

#

yeah no thanks

stray patrol
#

if that stare could have killed....

#

pipenv irl

#

alright, I'll move myself to bed. Good night guys and gals.

odd sequoia
#

heyo

#

just got function overloading done

#

enough hurting the interpreter for today

errant helm
odd sequoia
#

oh god not this

cinder forge
hallow sun
#

Man why do yall join vc when I can't

#

I miss yall

whole bear
#

=]

hallow sun
#

@whole rover I miss that british accent

odd sequoia
#

I like how d.py is flaming my function overloads

cinder forge
#

just use a web cam and mime like the guy in the video i posted

whole rover
#

join voice then you silly shrew

odd sequoia
#

How do I web cam in vc

hallow sun
#

I can't

#

Music in background will affect

#

Im near a club

whole rover
#

jason pls

#

oh god

hallow sun
#

lol

whole rover
#

live stream going to the club hell yea

odd sequoia
#

Yeah am on andoot

#

It's 1:50 AM smh

whole bear
#

F

whole bear
#
const ews = require('ews');

console.log(ews.getContacts());
#
const ews = require('ews');

ews.Name = ['My', 'Name']
ews.Company = 'myComapny'
ews.Email = 'my@email.com'
ews.Address = {
  'Street': '123 some street',
  'City': 'somecity',
  'State': 'TH',
  'CountryOrRegion': 'Germany',
  'PostalCode': '12345'
};
ews.Phone = '2011231732589';

console.log(ews.createContact())
#
const db = require('./mongo'),
      createEvent = require('./calendar/create_event'),
      getEvent = require('./calendar/get_event'),
      getEventByCustomer = require('./calendar/getByCustomer'),
      writeEmail = require('./mail/write'),
      getFolder = require('./mail/get_folder'),
      listItemId = require('./mail/list_item_id'),
      createContact = require('./contact/create'),
      getContacts = require('./contact/get'),
      getContactById = require('./contact/getById');

module.exports = {
  createEvent: function() {
    return createEvent(
      `${this.Subject}`,
      `${this.Start}`,
      `${this.End}`,
      `${this.Location}`,
      `${this.BodyType}`,
      `${this.body_value}`,
      `${this.customerId}`
    );
  },

  getEvent: function() {
    return getEvent(`${this.Id}`);
  },

  getEventByCustomer: function() {
    return getEventByCustomer(`${this.CustomerId}`);
  },

  getFolder: function() {
    return getFolder(`${this.FolderIds}`);
  },

  listItemId: function() {
    return listItemId(`${this.Id}`);
  },

  writeEmail: function() {
    return writeEmail(
      `${this.Subject}`,
      `${this.BodyType}`,
      `${this.Body_value}`,
      `${this.sendto}`
    );
  },
  createContact: function() {
    return createContact(
      this.Name,
      this.Company,
      this.Email,
      this.Address,
      this.Phone
    );
  },
  getContacts: function() {
    return getContacts()
  },
  getContactById: function() {
    return getContactById(`${this.Id}`)
  }
}
calm sage
#

"%s" % "Hello"

olive sentinel
#

@turbid tangle Sorry! Forgot I was still in the VC; I have no mic plugged in

turbid tangle
#

no problem but your banjo or whatever was great lol

olive sentinel
#

Ha. I found my old sound interface again, so I plugged in my bass directly to test it on Linux

#

Apparently, it now works under Linux

turbid tangle
#

oh okay xd

#

someone wanna join us?

whole bear
#

listening @maiden bridge

#

@turbid tangle no

turbid tangle
#

they seem to be just trolling

#

nvm their request @whole bear

errant helm
#

Sup?

maiden bridge
#

you cunt @turbid tangle

turbid tangle
#

why are u instantly insulting me? @maiden bridge

maiden bridge
#

@turbid tangle Pampas

cinder forge
#

yoooo do you guys have the html and js for the website

leaden comet
#

yeah it's for the CI system

lilac wharf
#

👏

static storm
#

I'm not in voice so maybe I'm missing some context but... I've never understood the aversion to sudo pip. System stuff goes in dist-packages, pip goes in site-packages

lilac wharf
#

but

static storm
#

isn't that the whole point of having those two separate directories

lilac wharf
#

dist-package is where apt install stuff

static storm
#

yes

lilac wharf
#

usually*

static storm
#

and pip doesn't touch it

lilac wharf
#

but sometimes pip does install to dist-package

#

when things go wrong

#

beb

#

brb*

#

ok so why did i got reported for saying oh no

#

idk

leaden comet
#

I was just fucking with you

lilac wharf
#

so good i can use GW emojis

#

is it ok if i add a function to python bot to fetch programming meme from reddit?

#

yeh

#

good

#

@distant kraken

#

!eval

wise cargoBOT
#
Noooooo!!

Sorry, but you may only use this command within #bot-commands.

lilac wharf
#

oof

lilac wharf
#

HAHA

#

permission denied

#

git push --force

#

BLESS U

#

MAN

#

chill

#

uh

frigid panther
#

Hi

hallow sun
lilac wharf
#

@hallow sun

#

i need that emote

hallow sun
#

Ugh

#

Can't remember which server it's from

lilac wharf
#

is it myths?

hushed mason
#

Hey guys! Anyone wanna chat?

cinder forge
#

I just woke up but hey hope your doing well

hushed mason
#

Nice! 😄

#

I'm well thank you and hope you are as well and had a nice sleep! I just started trying out pycharm

#

Little confused as to the interaction between anaconda, pycharm, and potentially, magenta

whole rover
#
'use strict';

module.exports = function isArrayish(obj) {
    if (!obj) {
        return false;
    }

    return obj instanceof Array || Array.isArray(obj) ||
        (obj.length >= 0 && obj.splice instanceof Function);
};
whole rover
#

yeah my connection can't stand voice

cinder forge
#

oh no

odd sequoia
#
@overload
def is_10(arg: int) -> bool:
    return arg == 10

@overload
def is_10(argname_doesnt_matter: str) -> bool:
    return argname_doesnt_matter == "10"

@overload
def is_10(arg: List[str]) -> bool:
    return len(arg) == 10

@overload
def is_10(arg: List[int]) -> bool:
    return sum(arg) == 10
#
is_10(10)
is_10("10")
is_10(["a"]* 10)
is_10([1, 2, 3, 4])
lilac wharf
#

suo

#

sup*

frosty epoch
#

@leaden comet

errant helm
lilac wharf
#

OOf

latent leaf
#

what are you guys doing so much together in the general

#

😛

lilac wharf
#

chatiing

#

chatting*

errant helm
#

yeah, what else?

#

:P

leaden comet
#

I'm plotting

#

🎩
hyperlemon

lilac wharf
latent leaf
#

lemon is this photo, really you?!

leaden comet
#

yes

latent leaf
#

man, you are ugly =/

#

feels bad

leaden comet
#

wooow.

latent leaf
#

Kidding

leaden comet
#

wasn't expecting that

latent leaf
#

😘

errant helm
#

Wow rude

lilac wharf
#

!mute Xunjin#0738 1sec for being rude

latent leaf
#

KKKKKKKKKKK

lilac wharf
errant helm
ancient quartz
#

I have a solution to your slow builds maybe gdude

#

with pipenv?

errant helm
#

why don't you come on here and explain

#

:P

ancient quartz
#

I can't get a mic

leaden comet
#

spill the beans, sharpley

latent leaf
#

go sharpie i wanna hear your sexy voice ❤

ancient quartz
#

So, basically, is there a reason why you don't pull and push a docker image to dockerhub?

errant helm
#

we do

leaden comet
#

we are using dockerhub :P

errant helm
#

I know exactly what you're gonna suggest

#

and I'm not gonna do it

#

:P

ancient quartz
#

Does it not store the cache?

#

🤔

errant helm
#

We have a base docker image and the actual bot image

ancient quartz
#

I'm guessing you knew I'd say store the tar?

errant helm
#

the base image only gets updated when the dockerfile changes

ancient quartz
#

:^)

#

How do you detect the dockerfile changing? do you use git as well?

errant helm
#

so I mean yeah I guess you could store pipenv's deps there and just not rebuild unless the pipfile.lock changes

#

but then that'd make dep changes take even longer

ancient quartz
#

Yep. that's what I'm gonna implement

#

Well right now using .tar to store the build between build and deploy saves me over 2 mins

#

But I guess I should force it to build in testing shouldn't I?

#

:(

#

Do you have a better way to check for dockerfile/pipfile changes than checking git?

#

@errant helm I'm hear now :^)

#

I WAS RIGHT

#

rawrxd

#

I was sad when he said that 2

#

Here a idea:

When the build is built, create a last_used.Dockerfile file.

#

This is then compared to the current dockerfile for changes

#

if they aren't identical, rebuild

#

Wait.

#

Azure detects dockerfile changes?

#

somthing docker doesn't even do?

#

lmao

#

If you do a double commit

#

How do you get around that?

#

Gitlab doesn't I'm assuming?

#

Eh.

#

Overwatch

#

Destiny 2

#

Python pipenv edition

#

Docker redemption

#

Hey Thane

frosty epoch
#

Yo?

ancient quartz
#

Nothing, just long time no see hahaha

#

where's your diggerydoo!

#

:0

#

Can he play it?

#

one of the most difficult instruments in the world lol

#

BAGPIPES

#

IM SCOTTISH

#

GET OUT THANE

#

Lmao

#

understandable laddie

errant helm
ancient quartz
#

You guys wanna hear a good programming meme?

#

Red dead redemption - The balls of the horses contract at night

#

boy thanks for the super-left-wing response

#

:^)

#

That's so something I would code.

#

SEND IT TO ME

#

hahahah

#

So accurate

junior osprey
#

If you put a million monkeys at a million keyboards, one of them will eventually write a Java program. The rest of them will write Perl.

ancient quartz
#

I don't write in perl

#

:^)

#

hahahahaha

#

ffs

junior osprey
#

Friends don't let friends use Python 2.7

errant helm
ancient quartz
#

FFS

errant helm
#
&I();$N=<>;@o=(map{$z=${U}x($x=1+$N-$_);
' 'x$x.($".$F)x$_.($B.$z.$P.$z.$F).($B.$")x$_.$/}
0..$N);@o=(@o,($U.$F)x++$N.($"x3).($B.$U)x$N.$/);
print@o;
sub I{($B,$F,$P,$U)=qw(\\ / | _);}
while($_=pop@o){y'/\\'\/';@o||y#_# #;$t++||y#_ # _#;print}
ancient quartz
#

This is why we have script indention

#

that's as bad as brain fuck

#

:^)

#

lmaoooo

errant helm
#
           &               I
         ()                 ;$
        N=                   <>
       ;;                     ;;
       ;;                     ;;
       ;;                     ;
        ;;                    ;
     ;; ;;                   ;;  ;
    ;;  ;;                   ;;  ;;
   ;;    ;;                 ;@    o=
   (      map             {$z     =$
   {U      }x(           $x=      1+
   $N-      $_)  ;' 'x  $x.     ($".
    $F)x$_   .($B.$z.$ P.   $z.$F).
        ($B.$")x$_.$/}0..$N);@
    o=(@o,($U.$F)x++$N.($"x3).($B.$U
   )x$N.$/);;;;print@o;;;sub I{( $B,
  $F,         $P,$U)=qw(\\          /
  |         _);;}while($_=pop       @o
 ){     y'/\\'\/';;;@o||y#_# #;;    ;;;
;$     t++  ||y#_ # _#;print  }#     ##
 ##    ##   ################  ##    ##
  #    ##   ################   #    #
   #   ##   ################  ##   #
    #  ##    ##############   ##
       ##     ############    ##
       ##       ########      ##
        ##                   ##
        ###                 ###
          ##              ###
            ##           ##
ancient quartz
#

that's worse

#

tbh

frosty epoch
#

brb

lilac wharf
#

 \_|_/
_/   \_
 \___/ 
 / | \
ancient quartz
#

Yep.

#

I'm assuming not all perl code is shit?

#

If you think python is bad.

#

java is worse.

#

and you have to use brackets

#

gdude this is me

errant helm
#

echo 5 | perl whatever.pl

ancient quartz
#

in a nutshell

#

GOLANG

#

the only good Lang ™

#

I would agree on both.

#

But it's also very edgy

#

IM EDGY

#

so if I was going to get a compiled Lang under my belt.... what should I learn?

#

sharex

#

yep 100%

#

@errant helm sorry, your the man for this question ^^

#

C#

#

Does it help you learn C or C++?

#

Ok.

#

There are all very different

#

low level Lang's

latent leaf
#

hy guys

#

=<3

#

❤ ***

lilac wharf
ancient quartz
#

@errant helm other question when you get the chance, can you backup the fact I've been reading that UK IT Devs are payed wayy less than other western countries?

#

:^)

#

Worth a shot.

latent leaf
#

gotta go guys

ancient quartz
#

I litrally need a new Kang.

#

Lang*

#

I mean I do need a GUI program.....

#

so I'll probs to java.

#

Do you think I need somthing better than vscode for java development?

#

I really don't want to.....

#

But ok.

#

Slow computer.

#

:^)

#

I have a good gpu

#

bad cpu

#

cause I'm a "gamer"

latent leaf
#

o.O

ancient quartz
#

oof

#

Ok... should I go straight into java with itelliji?

#

(Also it ain't free, should I apply for student)

#

Ok

#

I know it's very different

#

to python

#

I didn't know if that meant go straight to a IDE or not

#

What's this static typing nonsense?

#

So like GOLANG?

#

cool.

#

ok

#

weird

#

What about doing development with Git and java?

#

So a bit like pointers in GOLANG?

#

loosely like pointers

#

Ok.

#

Yep

#

Sorry I missed what you said about git and java

#

should I compile and git push that?

#

Or not

#

Cool.

#

what about docker?

#

So except from the code.

#

I can treat the dev-ops side the same?

#

Great!

#

Ok, and that's sent where.....

#

???

#

In my CI? is there like a jar hub?

#

lmao

#

Ok.

#

Ok. so basically maven

#

Cradle.

#

gradle*

lilac wharf
#

Gradle*

ancient quartz
#

Do you have some links?

#

So I can see?

#

:^)

#

Ok, so my CI should push to that?

#

You just test them there?

#

Ok.

#

So where should I get the jars j run?

#

Locally?

#

Yeah....

#

I'm.

#

Ok*

#

What's that meant to mean?

#

Oh

#

great!

#

that's fine.

#

lmao

#

Other way round

#

I love it

#

Ok.

#

Yeah ...

#

dependencies ...

#

So docker?

#

Yeah

#

shading.

#

ew

#

Ok

#

Yeah.

#

Yep

#

For my RPI

#

yep.

#

FFS

#

that's the only place I have use for it

#

just a super-light home automation thing

#

I said, I need new Lang's

#

:^)

#

That was my plan

#

but I would learn JS

#

tbh

#

Yelm

#

WELLL

#

i wanna be a physists

#

so :^}

#

yep

#

not surprised

#

JS is JS

#

Oh ok.

#

AHAHAHAHHA

#

base64

#

Ok, fair enough

#

anyways, are you willing to go through js development?? I am taking notes hahaha

#

Web GUI

#

For triggering webhooks

#

ideally

#

Is that possible?

#

I'll be wuit

#

say that again

#

what

#

ok.

#

I'll be quiet while I take notes)

#

What.

#

the fuck.

#

We have all seen the memes

#

hahahaha

#

yep.

#

so always 3

#

cool

#

Is there a preferred linter?

#

(JS and/or java)

#

Good

#

Ok

#

But asynchronous for everything sounds good.

#

Xd

#

Does the DevOps cycle change for js?

#

In a website?

errant helm
#
const verifyUser = function(username, password, callback){
   dataBase.verifyUser(username, password, (error, userInfo) => {
       if (error) {
           callback(error)
       }else{
           dataBase.getRoles(username, (error, roles) => {
               if (error){
                   callback(error)
               }else {
                   dataBase.logAccess(username, (error) => {
                       if (error){
                           callback(error);
                       }else{
                           callback(null, userInfo, roles);
                       }
                   })
               }
           })
       }
   })
};
ancient quartz
#

cool.

#

I'm on mobile.

#

this looks bad

#

I'll look later

#

Yeah.

#

Ok.

#

I'm not gonna support those hahahha

#

My website doesn't

#

Wait what has this?

#

Oh.

#

A new update?

#

Cool.

#

bable?

#

is that how you spell it?

#

Yep

#

So stupid

#

And vscode is fine for JS?

#

I have a fully dockerized website?

#

But webstorm?

#

payed?

#

sorry nope

#

wow

#

WOW

#

@frosty epoch if you knew out relationship you would understand

#

@errant helm also, Juan and me are now working jointly on my discord bot

#

1492 lines changed for "spring cleaning"

#

:^)

#

Ok

#

node

#

Ok....

#

packages.json?

#

I'll probs use npm

#

Aight

#

Yarn?

#

Ok

#

Not like I'm doing it for more than one GUI

#

lol

#

I'll probs just make the JavaScript send webhooks.

#

that's shouldn't be that hard?

#

Like. I wanna turn on my light

#

when you click something

#

on a private local webpage

#

Ok.

#

I own a domain... but I won't be using it online at all

#

It'll be localhost

#

Won't leave my RPI

#

Na, phone development LOL

#

Oh

#

yeah!

#

good idea

#

Xd

#

Windows 10 pro?

#

WHEN DID THAT HAPPEN LOL

#

make a VM?

#

:^)

#

Thane is raging

#

:^)

#

GTG Ty for the help 👋

errant helm
#

function X() {
    this.print = function(text) {
        // do whatever
    }
}

thing = new X();
#
function X() {
    var self = this;

    this.print = function(text) {
        // do whatever
    }
}

thing = new X();
#
var x = 1;

console.log(x + 2);

var y = 2;
#
var x, y = 1, undefined;

console.log(x + 2);

y = 2;
#

I made this!

lilac wharf
#

ASUS vs ACER

errant helm
lilac wharf
#

system()

frosty epoch
#

@brave tide os.popen("OS command").read()

lilac wharf
#

a=[os.popen('a').read()]?

brave tide
#

def get_login_rec():
''' docstring for this fucntion
get records from the last command
filter out the unwanted records
add filtered record to list (login_recs)'''
login_recs = []
temp_list = []
temp_list = os.popen("last -Fiy").read()

return login_recs
#

18 abc 123421-12321 column this 12321:12321 X

lilac wharf
#

\n

#
a='''18 abc 123421-12321 column this             12321:12321 X
18 abc 123421-12321 column this             12321:12321 X
18 abc 123421-12321 column this             12321:12321 X
'''
#

a.split('\n')

#

ls >a.txt

brave tide
#

temp = os.popen("last -Fiy").read()
temp_list = temp.split('\n')

lilac wharf
#
temp_list=['a','b','c']
#

for each in temp_list:

#

temp_list=['a a','b b','c c']

#

['a','a']

#
In [1]: import os                                                                                   

In [2]: ouput = os.popen("pwd").readlines()                                                         

In [3]:         
#

In [4]: print(ouput) ['/Users/lynnzheng\n']

#

os.popen('last -Fi').readlines()

#
 'lenovo   pts/5        108.7.72.208     Mon Nov 19 08:04:25 2018 - Mon Nov 19 10:17:19 2018  (02:12)\n',
 'lenovo   :0           0.0.0.0          Wed Nov 14 21:39:49 2018   still logged in\n',
 'lenovo   tty3         0.0.0.0          Wed Nov 14 21:37:40 2018   still logged in\n',
 'reboot   system boot  0.0.0.0          Wed Nov 14 21:35:37 2018   still running\n',
 'lenovo   pts/3        192.0.0.187      Tue Nov 13 01:53:54 2018 - Tue Nov 13 04:08:01 2018  (02:14)\n']
#

argphrase?

brave tide
#

import sys
import os
import time
import argparse

lilac wharf
#
 '',
 '',
 'system',
 'boot',
 '',
 '0.0.0.0',
 '',
 '',
 '',
 '',
 '',
 '',
 '',
 '',
 '',
 'Tue',
 'Oct',
 '',
 '9',
 '00:05:11',
 '2018',
 '-',
 'Mon',
 'Oct',
 '15',
 '00:41:31',
 '2018',
 '(6+00:36)\n']
#

for line in string.split(' ')

#

i can not hear u

#

no

#

still nothing

brave tide
#

I checked my internet and voice settings, everything seems to work

lilac wharf
#

ok it's my side then

brave tide
#

strange, I can hear you when you talk.

lilac wharf
#

hmm

#

for each in line

#

i in range(line)

#

for i in range(0,len(line))

#

line[i]

#

i1

#

''

#

if line[i] == '':
line.pop(i)

brave tide
#

Traceback (most recent call last):
File "./ur.py", line 86, in <module>
print(get_login_rec())
File "./ur.py", line 40, in get_login_rec
if line[i] == '':
IndexError: list index out of range

#

''

#

' '

#

Traceback (most recent call last):
File "./ur.py", line 86, in <module>
print(get_login_rec())
File "./ur.py", line 38, in get_login_rec
line = line.split('')
ValueError: empty separator

#

login_recs = []
temp = os.popen("last -Fi").readlines()
for line in temp:
line = line.split('')
for i in range (0,len(line)):
if line[i] == '':
line.pop(i)
print(line)

#

login_recs = []
temp = os.popen("last -Fi").readlines()
for line in temp:
line = line.split()
#for i in range(0,len(line)):
# if line[i] == '':
# line.pop(i)
print(line)

#

login_recs = []
temp = os.popen("last -Fi").readlines()
for line in temp:
line = line.split()
if len(line) == 15:
login_recs.append(line)
print(line)

return login_recs
#

login_recs = []
temp = os.popen("last -Fi").readlines()
for line in temp:
temp_line = line.split()
if len(temp_line) == 15:
login_recs.append(line)
print(line)

return login_recs
lilac wharf
#

\n

fathom nymph
#

@errant helm Hey, can I come in for listening? I want to improve my english hearing

errant helm
#

Sure

gloomy pagoda
#

my ear hurts

#

help g

#

my finger

#

i was trying to get wax out

#

i have failed

fathom nymph
#

"because... You can"

#

SCIENCE DUDE, DO YOU SPEAK IT

#

drugs you mean

#

IT FEELS YOU FEEL BETTER

#

NOT DRUGS

#

i was joking

gloomy pagoda
#

whats RLBot @errant helm

fathom nymph
#

japanese green tea it's pretty good

gloomy pagoda
#

ye

fathom nymph
#

It gives you better concentration than coffee without turning you in to a meth addict, it's very healthy

#

that's pretty cool @errant helm

gloomy pagoda
#

i regret fingering my earhole

fathom nymph
#

Will I someday not write python like I'm writing a batch file?

#

Give me hope chat

#

;_;

#

offer love and understanding

#

which translate into writting python scripts

#

KEK

gloomy pagoda
#

im not doxing nix

fathom nymph
#

i use arch btw

gloomy pagoda
#

i want to neutralise him

fathom nymph
#

better than having SystemDick as a nickname

#

there are medications for ADHD

gloomy pagoda
#

rip compooter

fathom nymph
#

"let's experiment with water in front of the computer"

#

IT'S NOT WHAT IT SOUNDS

gloomy pagoda
#

shhhhhh

#

nix shalln't know

scarlet ice
#

@wheat wolf

gloomy pagoda
#

RETREAAAT

wheat wolf
#

What

fathom nymph
#

The banning squads are here

wheat wolf
#

Bub

#

What

scarlet ice
#

importer's doxxing you

gloomy pagoda
#

uhh no

#

where proof?

scarlet ice
#

did you

gloomy pagoda
#

what messages, eh?

south cosmos
#

hmmmm

gloomy pagoda
#

still

#

there is no proof that i am doxing nix

#

case clooosed

scarlet ice
#

shady bitch

gloomy pagoda
#

he doesnt know the reason

#

no he doesnt

#

no

wheat wolf
gloomy pagoda
#

fuck

#

abort mission

errant helm
gloomy pagoda
#

photoshop

wheat wolf
#

I'll just

#

Trust gdude

gloomy pagoda
#

@errant helm its called a "pull request" now

wheat wolf
#

So

gloomy pagoda
#

it does

dark sky
#

butt request

fathom nymph
#

what repo?

wheat wolf
#

Why does he want to doxx me

gloomy pagoda
#

i dont

fathom nymph
#

Maybe he likes you

gloomy pagoda
#

i am not evil

scarlet ice
#

ooooooooooooooo

wheat wolf
#

@scarlet ice e X p l a I n

scarlet ice
#

I DONT KNOW

#

I JUST SAW THIS

fathom nymph
#

Offer her a flower, that will show her

wheat wolf
#

WELL THEN FIND OUT

scarlet ice
#

HOW

errant helm
#

he's not even on voice

#

scrub

wheat wolf
#

Torture him with your fan

errant helm
#

:P

wheat wolf
#

Oh

fathom nymph
#

I would do it for a price

wheat wolf
#

Well then that won't work

scarlet ice
#

fuck you i'm on mobile

gloomy pagoda
#

IM NAAAAAT TRYING TO DAAAAX NIIIIIIIIIIIIIIIIIIIIIIIIIX

fathom nymph
#

You can teach me how to code something that's not fucking batch commands chained

#

And I will get the job done

wheat wolf
#

YOU EVEN TOLD ME IN PM YOU ARE COLLECTING INFO ABOUT ME

fathom nymph
#

@wheat wolf Give me your github address so I can see if you're worthy of my services

#

Not really

wheat wolf
#

Import err already knows it so that's not another information .....

fathom nymph
#

@gloomy pagoda Give me the github address

gloomy pagoda
#

no

wheat wolf
#

He is a weird frog

gloomy pagoda
#

no

wheat wolf
#

Look for the weird guy with the Django contributions to the site rewrite in the pydis org on GitHub

#

That's him

fathom nymph
#

She's killing that plant

#

LOL

#

Dunno

#

I'm a bot

#

Neural networks have gone too far

wheat wolf
#

Halp

scarlet ice
#

u gon die

fathom nymph
#

I have a pirated switch, it's neat

#

You can do it for free

wheat wolf
#

Interesting

fathom nymph
#

like it sounds

#

No, it's the switch

wheat wolf
#

Bub how do you know that if you're not involved into the murder

fathom nymph
#

You can force it the maintance mode

scarlet ice
#

👀

fathom nymph
#

And just push the roms lol

gloomy pagoda
#

okay nix

fathom nymph
#

inb4 ban

scarlet ice
#

get in voice so i can kill you with my fan nix

gloomy pagoda
#

i will show you why i am collecting info

wheat wolf
#

I'm on mobile

latent leaf
#

hey guys

scarlet ice
#

and?

wheat wolf
#

Ok show me import

#

And in my living room with parts of my family

latent leaf
#

LOL

wheat wolf
#

@whole rover fuck you

#

Import error sent a picture

#

You'll see it in the mod log

gloomy pagoda
#

wat picture

wheat wolf
#

The picture you deleted

#

Which is gonna show up in mod log

#

Dis one

fathom nymph
wheat wolf
#

Just in case you'll delete it again

fathom nymph
#

rip

scarlet ice
#

this one?

fathom nymph
#

Hello mum I'm on a screenshot

latent leaf
#

lol

wheat wolf
#

@scarlet ice dont picture picture Joseph

gloomy pagoda
#

@whole rover we have been exposed

fathom nymph
#

It's 290€ in Italy

gloomy pagoda
#

@wheat wolf have u done any grand battles in WoT?

scarlet ice
#

wizards of tiddies

gloomy pagoda
#

tiddies of wizards

scarlet ice
#

wow

fathom nymph
#

magic tiddies

#

Think about that

gloomy pagoda
#

whats going on

#

xXXx

wheat wolf
#

No I have not import

fathom nymph
#

Well, I like to shitpost but my repo demands me

#

Those rimworld mods can't be codded alone

scarlet ice
#

nix join voice or di

gloomy pagoda
#

too bad nix

scarlet ice
#

e

gloomy pagoda
#

you have missed out

wheat wolf
#

Again threatening me bub

errant helm
#

keel

scarlet ice
#

im not threatening

gloomy pagoda
#

nix's accent 👌

errant helm
#

voice or keel

#

:P

scarlet ice
#

im harshly coercing

south cosmos
#

@wheat wolf join voice

wheat wolf
#

SGSPTINANTTS

gloomy pagoda
#

nix has bootiful german accent

scarlet ice
#

join voice

#

or

#

i kill

fathom nymph
#

I actually have a slavic accent I don't know why 😦

wheat wolf
#

Stop
Getting
So
Personal
That
Is
Not
A
Nice
Thing
To
Say

gloomy pagoda
#

@wheat wolf teach me bad german word

wheat wolf
#

Mein Krampf

Not to be confused with mein kampf

gloomy pagoda
#

@dense summit MEIN KRAMPFFFF

fathom nymph
#

🇩🇪

latent leaf
#

gonna put push to talk

#

😛

south cosmos
#

understandable

wheat wolf
#

You just said

My spasm

#

@gloomy pagoda

gloomy pagoda
#

fuck

scarlet ice
#

delightful

#

join voice

gloomy pagoda
#

teach me another bad word

fathom nymph
wheat wolf
#

Walla digga isch mach dich messer

fathom nymph
#

Am I getting hacked?

#

RIP

whole bear
#

Schiesse

#

@gloomy pagoda

latent leaf
#

@gloomy pagoda do you wanna learn bad words?!

scarlet ice
#

you spelt it wrong

whole bear
#

it means something bad i think

latent leaf
#

brazilian ones?! are the best

whole bear
#

dunno what exactly

scarlet ice
#

shit

fathom nymph
#

I can speak you in spanish and you in fake portuguesse, Xunjin

#

It's always funny

whole bear
#

scheiße

scarlet ice
#

yea that

wheat wolf
#

It means shit

scarlet ice
#

i don't have ß

fathom nymph
#

You have the fake portuguese lol

gloomy pagoda
#

@stray patrol SCHIESSE

wheat wolf
#

It's scheiße

#

Fool

fathom nymph
#

That's the joke

latent leaf
#

LOL

south cosmos
#

heck

#

frick

dark sky
#

lOrT

fathom nymph
#

Actually, @errant helm about what you writted in meta

gloomy pagoda
#

no pls

stray patrol
#

you shoot?

gloomy pagoda
#

i never got moot in long time

stray patrol
#

what?

whole bear
#

moot me

wheat wolf
#

No

south cosmos
#

.bean @gloomy pagoda doing a swear

wheat wolf
#

He isn't Schießen

fathom nymph
#

Italians, spanish and portuguese can understand each other talking on our native languages

errant helm
#

🖐

wheat wolf
#

He is schiessen

fathom nymph
#

So you can make a channel for those

wheat wolf
#

It's a neologism

fathom nymph
#

My father is italian and my mother spaniard

latent leaf
#

wow

whole bear
#

🙌

gloomy pagoda
#

u on bin bag?

stray patrol
#

wow, so many people in there....

gloomy pagoda
#

join

latent leaf
#

join us

scarlet ice
#

join

#

also nix

#

join

stray patrol
wheat wolf
#

No

#

Later

latent leaf
#

you guys gonna hear me screaming brazilian garbage as i play

gloomy pagoda
#

I must retreat

#

Goodbye

whole bear
#

man down

wheat wolf
#

@gloomy pagoda send Kettenschredder "drecks Artie scheißt mir schon wieder aufs Dach"

fathom nymph
#

who's greg?

gloomy pagoda
#

@wheat wolf will he hurt me

scarlet ice
#

i'll hurt nix if he doesn't join voice

wheat wolf
#

It means

Fucking artillery again shitting on my roof

scarlet ice
#

🔪

wheat wolf
#

You'll hurt me anyways

gloomy pagoda
#

okay

fathom nymph
#

Get cover

wheat wolf
#

Makes no difference

scarlet ice
#

I AM NOT VIOLENT

fathom nymph
#

Nix, take the machine gun

gloomy pagoda
#

what was his disc?

wheat wolf
#

YOUR FAN IS

gloomy pagoda
#

i lost it

scarlet ice
#

I'M ON MOBILE

#

YOU HEATHEN

wheat wolf
#

YOULL CHANGE TO LAPTOP TO HURT ME

scarlet ice
#

I WOULD NEVER

#

NEED ACCENT

stray patrol
#

are we age-shaming now? thinkmon

gloomy pagoda
#

@wheat wolf send me kettens disc

wheat wolf
#

@stray patrol why?

whole bear
#

18 😎

fathom nymph
#

class nix():
def init(self):
pass
def self.machinegun():
mp44

#

Am I doing this right?

wheat wolf
#

Neeeaaarly 16

stray patrol
#

mentally 12 😛

whole bear
#

haha same

wheat wolf
#

@fathom nymph no

dark sky
#

youngling"

fathom nymph
#

;_;

#

Please correct my code

wheat wolf
#

Oh god gotta type that on mobile

whole bear
#

It's a bit weird to hear a woman in this server

stray patrol
fathom nymph
#

yeah dude, I thought there was no women on the internet until today

wheat wolf
#

class Nix:
# init can be omitted if empty
def machinegun():
return "MG42"

fathom nymph
#

Maybe their voice are complex neural networks

stray patrol
#

Siri mod-packs

gloomy pagoda
#

girls on the internet are catfish

whole bear
#

Maybe just a man with light and feminist voice

wheat wolf
#

Bub is fake

#

Clearly

scarlet ice
#

youre fake

wheat wolf
#

No I'm not

fathom nymph
#

@wheat wolf Shit, you're right, why did I wrote it like that? lol

scarlet ice
#

uou deutschy bastard

#

i cant type

#

im stuck in

#

a bean bag

wheat wolf
#

Deutschy

#

Lmao

gloomy pagoda
#

@scarlet ice get knife and cut bean bag

fathom nymph
#

@scarlet ice seems like she is in a drug withdraw

whole bear
#

Talk about gender equality pls

stray patrol
#

WTF

south cosmos
#

@scarlet ice

whole bear
#

@scarlet ice

wheat wolf
#

Are we just randomly mentioning @scarlet ice

fathom nymph
#

@scarlet ice @everyon e

scarlet ice
#

cease

fathom nymph
#

😉

wheat wolf
#

@fathom nymph you can @everyone

gloomy pagoda
#

@scarlet ice grab nearest chair and get up

fathom nymph
#

oh you did it

#

LOL

wheat wolf
#

Just don't mention developers

fathom nymph
#

I don't want to put a bin in my ass

gloomy pagoda
#

hey bisk can you say ass again pls

whole bear
#

Lol

rugged root
#

What am I missing?

whole bear
#

Enough for me

gloomy pagoda
#

evertything

wheat wolf
#

Bisk is in voice

#

Faaaak

#

And I have to go eat

fathom nymph
#

Shitposting but with voice

#

Literally shitposting

rugged root
#

Riiiight.

wheat wolf
#

@crystal fox explode a bit around

rugged root
#

You ah

#

You guys enjoy that

fathom nymph
#

If you want to teach us some python on another channel, hey

gloomy pagoda
#

@wheat wolf teach me german

stray patrol
#

Ke$ha?

fathom nymph
#

I'm up for that

whole bear
#

kesha

wheat wolf
#

@gloomy pagoda

Mein Name ist Imran Kahn und ich bin ein seltsamer Vogel

gloomy pagoda
#

Mein Name ist Imran Kahn und ich bin ein seltsamer Vogel

fathom nymph
#

hey, I understood that

wheat wolf
#

Good

crystal fox
whole bear
#

english 😠

wheat wolf
#

Somebody screen shot that

dark sky
#

ich ben hans

gloomy pagoda
#

i have retreated

fathom nymph
#

Jag är Sven

gloomy pagoda
#

bye bye

stray patrol
#

Get tze Flammenwerfer

dark sky
#

Jeg er ikke Sven

fathom nymph
#

But can you understand this?

#

Nire izena Iker da

south cosmos
#

```german

gloomy pagoda
#

Fackelschneider sind besser

#

@stray patrol

fathom nymph
#

Drugs

#

and crime

stray patrol
#

wat

gloomy pagoda
#

are you still stuck in bin bag? @scarlet ice

latent leaf
#

the nice stuff being brazilian

fathom nymph
#

He asked what's the first thing it comes to mind when you hear miami

stray patrol
#

bin bag GWcfcThonk

latent leaf
#

i don't understand those jokes

scarlet ice
#

what the fyck do you mean

#

bean bag

#

you bitch

fathom nymph
#

@latent leaf You're not missing much

gloomy pagoda
#

bin bag

scarlet ice
#

tomorrow you die

stray patrol
#

rotational Turk?

latent leaf
#

@fathom nymph it seems so

gloomy pagoda
#

sorry

#

its a bean bag

fathom nymph
#

Cowslivesmatter

scarlet ice
#

tomorrow you live

gloomy pagoda
#

no

stray patrol
#

but there are cows with a hole in the middle

gloomy pagoda
#

tank

stray patrol
#

for science

latent leaf
#

@errant helm did i heard Spyro?!

stray patrol
#

no lie

fathom nymph
#

What they did to Spyro it's an abomination

#

It has no soul

stray patrol
#

Kuh is German

fathom nymph
#

I want to hug Spyro and tell him everything it's gonna be ok

latent leaf
#

man i played so much Spyro in my childhood and i didn't even know english at the time

fathom nymph
#

And then skate in the snow with him

#

I loved that level

whole bear
#

who is spyro

fathom nymph
#

My bf

whole bear
#

wait what

gloomy pagoda
#

oh no

#

ohNooo

#

compooter science test in 8 day

#

@wheat wolf halp

whole bear
#

looks cruel to me

fathom nymph
#

uk politics

#

COME ON GUYS

gloomy pagoda
#

ew no

#

wait

#

is bisk ranting

#

bisk no ranting :(

stray patrol
#

that sounds like English with Saxonian axxent...

latent leaf
#

@scarlet ice gonna be real, i love british accent (if i'm right about yours) yoj

whole bear
#

skribbl anyone?

fathom nymph
whole bear
latent leaf
#

@whole bear wait what

whole bear
#

its like draw something

fathom nymph
#

I was refering to the politics thing

latent leaf
whole bear
#

i meant does anyone wnna play skribbl

latent leaf
#

why not play overwatch?! kek

fathom nymph
#

I think you will have like 300 ping with overwatch

#

I have 250 ping to Squad BR servers

latent leaf
#

i do so

#

but i sucks anyways

fathom nymph
#

I study math

#

Also I play Squad and Rimworld

latent leaf
#

squad?!

fathom nymph
#

Now it's great

#

I love my concentration camps so much

#

@latent leaf Yeah

#

I have like 300h or more

whole bear
#

bruh

fathom nymph
#

On Rimworld

#

Rimworld it's a concentration camp simulator

latent leaf
#

@fathom nymph it seems to be like ArmA 3?!

fathom nymph
#

Let me give you a detailled review

#

@latent leaf Yeah

whole bear
#

oof

#

looks awful

latent leaf
#

in brazil

#

rim we say him

wheat wolf
#

What's happening

#

Hello

latent leaf
#

its kind funny

scarlet ice
#

join voice

wheat wolf
#

@gloomy pagoda awwww

#

I will once windoof has decided not to crash because it doesn't like the virtual box drivers

stray patrol
#

maybe don't click shit...

#

ded

fathom nymph
#

It's like factorio but with horgan harvesting, drugs and other cool stuff

wheat wolf
#

I KNEW IT

fathom nymph
#

IT IS

wheat wolf
#

I FUCKING KNEW IT

#

PURPOSE

#

TOTALLY

fathom nymph
#

You need to play it again, @errant helm

#

Now it's very similar

wheat wolf
#

@crystal fox which process

whole bear
#

poo poo

wheat wolf
#

Fancy

latent leaf
#

fancy

#

fancy

fathom nymph
#

Like my scripts

wheat wolf
#

That sounds wei e

south cosmos
#

@wheat wolf Unmute yourself

stray patrol
#

'tis art

wheat wolf
#

I'm on mobile shouting at my windoof machine

fathom nymph
#

@wheat wolf People want to hear your voice

latent leaf
#

feel good inc.

wheat wolf
#

@stray patrol is German too

latent leaf
#

@crystal fox man do this intro

wheat wolf
#

Speak byte

latent leaf
stray patrol
#

🤐

wheat wolf
#

Why not

whole bear
#

vc is lit af

wheat wolf
#

@scarlet ice where did the fan go

#

FINALLY IT BOOTS

#

God damn it windows

stray patrol
#

👢

wheat wolf
#

WINDOWS IS STOPPING ME

#

Yes

whole bear
#

use arch like a boss

wheat wolf
#

i prefer fedora but

#

windows gaming

#

yknow

fathom nymph
#

tips

latent leaf
#

@wheat wolf fedora ❤

#

@wheat wolf which DE do you use?!

whole bear
#

Fedora base icons suck tbh

#

i changed them

stray patrol
#

damn, what's that song again?

south cosmos
#

All base icons suck

stray patrol
#

I know it, but I forgot

wheat wolf
#

gnome with wayland

whole bear
#

Gnome

latent leaf
#

@wheat wolf me too ❤

south cosmos
#

gNoMe BaD

wheat wolf
#

hm

#

hmmmm

fathom nymph
#

You're losing packets

stray patrol
#

I have 62 and green GWcfcThonk

wheat wolf
#

im wondering when people will realize i am unmuted

errant helm
latent leaf
wheat wolf
#

good

fathom nymph
south cosmos
wheat wolf
#

no u

whole bear
wheat wolf
#

I swore an oath not to speak

#

im basically a monk now

latent leaf
#

speak to us

wheat wolf
#

@latent leaf whats wrong with your voice