#ot1-perplexing-regexing
1 messages · Page 456 of 1
Plus I can only access my email on the VPN
(but my account would also actually be automatically disabled if it detected a non-authorized device connected to that laptop)
Self reporting as mouse
So you’re not allowed to plug a usb in?
Well, considering vendor/product IDs for USBs are trivial to spoof in firmware
Ha-za!
Most definitely not.
😄
You can move files remotely lol
If I can get it authorized by <ultra big boss man> maybe. But they would literally have no reason to do that and a million reasons to not
Over bluetooth for example
halp. Professor is trying to explain the concept of a function to someone and it's so painful.
yo any software engineer here?
its on our subject what is the meaning of the foundation in architecture design?
like the MVC style for a website how to determine its foundation?
halp. Professor is trying to explain the concept of a function to someone and it's so painful.
@honest star it happens sometimes ¯_(ツ)_/¯
what class though
numerical methods, it's grad class but it's also combined with an undergrad class which is.... greatly slowing down the class
install the needed audio codec 
F
lol my idm is to the point where it pop out 5 unregistered shit
it still work so idk what it is talking about.
i totally do not know what it is talking about
totally
i totally did not try to delete registry and somehow fucked it up
@jagged walrus Can you post your question here and I'll help you
Sorry for the meme, but this cracked me up 😄
I program in CSS
I pRoGraM iN hTml5
I program in cocaine
I program in Python
🕺 I know you are reading this.
@nocturne cipher Well that felt random
Helping someone and having them actually understand is just priceless
Yess! Exactly
Helping someone and having them actually understand is just priceless
@narrow pecan wrong 😎
m personally would pay u all the shit u wasted ur time for teaching
oops english
but yeahh if its actually works i will give back
im already with someone whos learning and im learning with him maybe?
he helps me a lot 
What I mean is that it's a feeling that can't be bought
what i meant is i will give back and thank u even if u dont want, and i agree, that feeling is indeed good

I finally got enrolled in the iOS Discord Beta
It's not easy
Gonna be testing out Canary on desktop as well
I just saw someone try to open a channel with !open. A completely reasonable thing to try, but @royal lake just threw a massive embed at them
A bit funny
finally got hacker subrciption
function f(array, left, right):
if left == right:
if array[left] % 2 == 0:
return 1
else:
return 0
else:
middle = (left + right) / 2
return f(array, left, middle)
+ f(array, middle + 1, right)```
what does this function do?
1. It finds the maximum even number between indices left and right (including both endpoints) in the input array.
2. After dividing, the element with the index middle belongs to the left sub-array.
3. It counts numbers between indices left and right (including both endpoints) in the input array.
4. It processes a subarray between indices left and right (including both endpoints).
5. It processes a subarray between indices left and right - 1 (including both endpoints).
6. It processes a subarray between indices left and right + 1 (including both endpoints).
7. It counts even numbers between indices left and right (including both endpoints) in the input array.```
it's a hard question
It does one or two things
I think it does 2 but I don't know what else
is it like u get to choose multiple answer ?
i can only think of 2 , 4 and 7
You know that you made someone's day
@plucky ridge we are social creatures after all even if you and i are both introverts
Damn straight
i cant speak today
Can’t get rid of scammers 😒
https://eu.nuvuneu.com/
nice
F
xD
i just finished rewriting 167 lines of code
1000 to go
because I need to convert my json files into a db xDDDDD it takes so long to rewrite
i can only think of
2,4and7
@upper sand That's correct
It seems your good at this
@rough sapphire CONGRATS🥳🥳🎉
😬😬
when I click on the purple square, it takes me here
looks like we lost the secret to success boys 😐
or that there is no success
Also possible
or, success is so cool you can't look at it
or its so lame that it wont look at us
or failure bribed success
and decline bribes
Success just needs a hug
yeah that one
yep
it has some convenient stuff, yeah
literals, capwords, Template and Formatter
by stringing a bunch of letters together, duh
You probably want a list of words to choose from then
Faker is a good module to generate fake data
You can just copy the list from somewhere, like a dictionary
you want to make a username generator?
yes
Faker can do that
hmm is it built in
no
I don't think you can use inbuilt string module to create words that actually make sense
you can probably get by with using random.choices
but they won't be dictionary words @young shoal
¯_(ツ)_/¯
just a random collection of words
@edgy crest add them together and you will get a word
def return_word(size):
import string
import random
output = ""
for i in size:
output += random.choice(string.ascii_letters)
return output
!e
def return_word(size):
import string
import random
output = ""
for i in size:
output += random.choice(string.ascii_letters)
return output
return_word(20)
You are not allowed to use that command here. Please use the #bot-commands channel instead.
ehh I'm getting an error anyway
import string
from random import choices
def generate(length):
return "".join(choices(string.ascii_letters + string.digits, k=length))
where's k
and i think you're missing a range around that
size
@tranquil orchid oh yeah
right there
or yeah just use choices
also you haven't imported random
we just need choice
choices
s*
def return_word(size):
import string
import random
output = ""
for i in range(size):
output += random.choice(string.ascii_letters)
return output
print(return_word(20))
this one works
yes...but string concat in loop
ok it works but words are too weird
btw
string.printable
this has all , digits , lowercase,
obviously if you want words that actually make sense then Faker is an excellent option @edgy crest
explain whats faker
its a module that generates fake data
like?
so every time you type
from faker import Faker
fake = Faker()
for i in range(10):
print(fake.username())
you will get 10 different actual usernames
what
that would be soooooooooooooooooooooooooooooooooooo easy
how can i make my own faker ;-;
pip install Faker @edgy crest
yeah?
if you use windows, yeah it's called cmd
so i can install faker from there or would i have to open cmd
okie
i made a gui for it
added a button
whoa this faker module seems pretty use full
yeah it's very useful
it has even fake addresses
also it's not a module it's a package
ok
it has even fake addresses
@edgy crest runprint(dir(Faker()))
yea
it will show you everything faker has
ok
hey i am getting an error
'Generator' object has no attribute 'username'
its not working..
did you forget the brackets()?
probably tried to access something from the wrong thing
no
check your parentheses
wait is username a thing in it?
in what
faker
cuz when i am using var.name(), its working
but not in var.username()
name gives real names
i need user names.
yes
does it work?
username is not a valid attribute
name is
and name just has random names not user names
what code did you write?
like not with under score and numbers
oh wait
hmm
it should be fake.user_name()
I'm not sure if it will be with underscores and numbers tho
hmm yea but still works
sometimes it uses numbers
but the names are like user names
it's a random generator
from tkinter import *
from faker import Faker
root = Tk()
root.title("username generator")
fake = Faker()
def generate():
my_label = Label(root, text=fake.user_name()).pack()
gen_button = Button(root, text="Generate", command=generate).pack()
root.mainloop()```
look at the docs, they probably have what you are looking for
i made it a gui so its easy
I don't know why it gets such a bad rap
It does the job if it's a simple little internal tool
It's one less thing to have to download
If looks don't matter, there's no reason not to use it
yeah, I really like tkinter when I have to display some simple graphics or information and it's annoying to do so in the shell
In my case I've used it for a couple little programs I've made for our accountants
One window, 5 buttons
I'm not going to download PyQt5 or Kivy for that
I'm not hating on tkinter, i just said i dont see any specific use in my case. I mostly work with browsers @plucky ridge
No I know, it wasn't specifically a response to you. Just reminded me how grumpy I get about it when people are like "uGH wHy ARe u UsiNG tKIntER???"
ugh why are you using tkinter??
ugh why are you using tkinter??
Let me check
mk
I think it might just be window.background = tk color value here?
Trying to hunt down a specific example though
I think it'd be root in that case then
The folks in #user-interfaces would be able to help more, I tend to just do really really simple stuff in it
Little to no flare
ok
@plucky ridge something awesome is coming soon... beard structure lemojis! I've opened the PR 😄 (https://github.com/python-discord/branding/pull/64)
HELL yes
I'm in love with them
They're on my test server already. Made some really odd structures so far
OH HELL YEAHHH
I need that as a desktop wallpaper
@plucky ridge One could actually make something really huge, like a mega pattern
This is arguably the best application, by far.
Haha
wow, nice my dude
Oh my god that's the best thing that's ever graced our server
That is an actual message
Here, soon
how
how
Can be assembled in million ways
Nope. It's manually done. We're thinking about doing something fun with @median dome though
either way looks hella sick
That beard border needs to be pinned
YES 😍
lmao
He is bluffing about having a body. It's all just a beard
@plucky ridge HEMMMYYY, check this out
Hahaha this is too good
Hahaha
The best part is that it'll all be available here once the PR is merged and the emojis added
You pinned the wrong one, the other is funnier 
por que no los dos?
They're all good
it is kinda spammable
Yeah lol. Hopefully the ot channels won't become a complete mess with this
Oh
My
God
@tame terrace I'm like 80% sure this would be your mecha form https://discordapp.com/channels/267624335836053506/463035241142026251/754008380388933658
Haha
This is getting insane
Let's write pydis with beards
Let's write pydis with beards
@solid pollen is that a challenge?
Definitely is
Someone should make a maze generator using these for @median dome
Almost looks like a menorah
I just want to feed that to a wave collapse function tbh
It's beautiful
@tame terrace PLEASE can we make that our banner for like a week
I second that
Someone should make a maze generator using these for @median dome
@undone berry We have thought about pipe games and mazes already. Hopefully, at least one of the things will happen
NGL THAT LOOKS HELLA SICK
We could have a text generator with seasonalbot tbh
why am I so excited?
That is.... SO GOOD
It's that perfect level of silly that I just love
Make the issue for it
@plucky ridge For sure
I gotta say, you may have permanently earned my respect for this one xD
Alright, we have an issue for .beardify <text> now!
yesss
YESSSSSSSSSSSSSSS
is that in seasonal bot?
man I need to not take my glasses off when looking at this place
would totally look like a swastika if they weren't pushed apart
haha
lol it would be the python logo with 4 snake heads
would totally look like a swastika if they weren't pushed apart
I wasnt gonna say anything
plz no
Man, why can't we just have nice wholesome things for people to enjoy
Nah, it won't go that far
Let's just all scroll up to the wonderful lemon-beard pydis logo
You're right — it only has 2 heads 😆
we dont even have to do that much work, that masterpiece was pinned
lol, are you making each of those characters by hand?
Yes
haha, well worth it
It's just a message with soooo many emojis
For sure
Honestly, this is a true work of art
it really is
whyisitpoopybrowncolored
that's a beard!
.> can you make the beard blue
Or maybe this is better?
^
I do wonder, unless you knew it was a beard, is that really what you'd think it was?
it doesn't look like a beard to me XD
AHhaha true
I mean it looks more like a snake
I'm still partially on team #chocolatedippedstrawberry
It is the python logo, so it's a snake beard
Kinda looks like § tbh
This is it tho
there are yellow strawberries!
chocolate is not gray-ish brown D;
I have a small yellow strawberry plant growing in my garden box
they're super small and cute
#chocolatedippedstrawberry
and hard to tell when they're done...
Anything you want be to create in beard?
since you have a set of tiles
there should totally be a @median dome command for this
for lemonifying text
they already added the issue xD
https://github.com/python-discord/seasonalbot/issues/436 they're ahead of you
It's needed
=3c this has been brewing in #dev-branding for a few days. Vester is doing great work
I have a request: create an entire platformer using the lemon-beard tileset
Now there's a good pyweek game idea
There should kind of be one for 2 and 3 lines heigh with the text
My team would say "nooo", but otherwise, I'd be 100% up for making that in pyweek 😆
haha
Could be something for seasonalbot as well
With auto-run, so there's only a space button to use
Please don't give people ideas
@plucky ridge That's the forst thing that came to my mind when I saw it 😅
This honestly deserves a pin hahaha #ot1-perplexing-regexing message
no so bad
Is that a platformer level haha
Yesss
gather the lemons, avoid the strawberries?
I have a request: create an entire platformer using the lemon-beard tileset
@eternal wing
Ooooo
Wait, strawberries aren't lemojis
oh. my. gosh
that's why you avoid them!
awesommmmeeee haha
We should totally turn it into a real game 😆
you have made this day so much better xD haha
@honest star Aaah I see
procedurally generated beards
you have made this day so much better xD haha
@eternal wing I honestly feel the same way about the beard structures
They're just the best things ever
pyweek?
If you don't have a team already, team up with each other and create a beard platformer 
Oooh man, if that fits the theme I'm totally gonna spam until they accept suggest that
im already in pyweek, that would be great though
oh wait, if we are both on board.........
haha
thats almost a majority
wouldnt that be the biggest bummer though? if another team won with that? LOL
Yeah, that's true
ehh
We should just create it on our own, outside PyWeek
I would happily contribute to a lemoji platformer outside of pyweek
Actually, we may be able to do it with SeasonalBot
Maybe with only a space button and auto-run
Ehhhhhh maybe
The fluctuation of the API doesn't really let things like that flow well
Typically better for turnbased things
I don't care what happens, but I want lemon text on this discord
Hopefully, it's coming. We all want it
Wonder If there is a way i can manually send some random data through data lines in a USB ?
Now I wonder that too
Any requests for beard art? I'm out of ideas
make a thing to beardify an image
Welp
How would I make that in beard?
Oooo
BEARD™️ should be a programming language
beard doesn't sound that bad tbh
Considering Rust and all the odd names, Beard sounds quite good
@narrow pecan is the code for beard on github
It's emojis, but yes
They're in this PR:
@undone berry Here's a maze:
oh
yesssss
wow
This is the "code" for it ```
:head_l::l_b::end_l::lr::l_b::end_t::r_b::l_b:
:end_t::t_r::lr::l_b::t_b::t_r_b::l_t::t_b:
:t_b::r_b::lr::l_t_b::t_b::t_b::r_b::l_t_b:
:t_r::l_t::r_b::l_t::t_b::t_b::end_b::t_b:
:end_l::lr::l_t_r::lr::l_t_r::l_t_r::end_r::head_b:
@narrow pecan can you-
wait are you foreal
yeah
you already have that going
I was gonna ask for that
Yeahh
I'm doing it in a test server
If I had Nitro, I could even do It here (but would get muted, since the limit is like 20 or 28 emojis per 10 seconds atm)
All of the things I've sent above are created as emojis, in another server hahah
how to disable that flashing white thing appears while typing in pycharm ?
📨 👌 applied magic to @narrow pecan until 2020-09-11 18:24 (1 minutes and 4 seconds) (reason: why not?: sent 1 messages in 1s).
oh
applied magic
The cursor?
Why wouldn't you want the cursor? You won't know where you are on the page
ehm
how
and i meant i want something like this
not that thicc boi selects words and letters
does the thicc boi replace the words you type?
yea
turn off insert mode
you are in insert mode
ehm how to disable that mode
try pressing insert button
and idk how did i enabled it
hit the insert key on your keyboard
:O
actually good
Thankss
Me - Plays happy birthday song to my brother .
Him - Don't play this song Don't play that song.
When I was played song by my brother on my bday
ME - yeah yeah songs , raise volume raise volume yeahhhhhhhhhhhhh
hmm , can i get raw emoji
I will upload them on my server and then use it here
@rough sapphire You can join my server with them if you want to (until we add them here) or check out the PR with them https://github.com/python-discord/branding/pull/64
There is a 20/28 limit on emojis per 10s or so. Aka try not to get an infraction before we solve this
If you're curious, here are the available ones
diagonal heads?
When put together, they're smooooth
diagonal heads?
@young shoal We've experimented with that, but it doesn't look too good
huh
Here's an example from when we tested with curvy beards
oh
I’ll DM
@narrow pecan can I join?
You don’t have Nitro, so you won’t be able to use it here
ah k




looks like apple mac wheel TBH
yes
I was thinking the beats headphones logo
Hmm
I think I've heard that wall thing before
Maybe I have too. It's still odd, though
@sand inlet do you have time for a little chat ?
checks the time yes
I do not think there is any time where you really learn python. I have been programming for years and never stop learning.
It took me about 3 months before I reasonably make some simple things that worked ok
Hey, I use bookmarking a lot in Firefox. Is there a software for bookmarking which way of bookmarking is very similar to Firefox's?
I tend to read them from time to time, what I bookmark is very useful, such articles or something like that
And Firefox bookmarking is really awesome! It got some.. imperfections, but I still like it
I think most browsers have that functionality
Hmm
@hot hull i still keep like a mental note, but i manually type it in
I think most browsers have that functionality
@young shoal Yeah, but I never met one as good as Firefox's
¯\_(ツ)_/¯
@young shoal change ur name back plsssssssssssssss
Having some trouble over why you need a bookmarking system like Firefox
¯\_(ツ)_/¯
@young shoal LMAO
what's wrong with this one lol
what's wrong with this one lol
@young shoal What do you mean?
I love to quote :)
no
I can only think of tags as unique to Firefox, really
I love to quote :)
@hot hull as do i
And "search-like" bookmarks
Having some trouble over why you need a bookmarking system like Firefox
@rough sapphire Look, I just press Ctrl + B and that opens up
@hot hull as do i
@manic bloom Nice :D
Oh, that
Chrome hasn't got that
Maybe an extension?
And I'm looking for a software with that same system, so I'm not dependent on Firefox
Maybe an extension?
@rough sapphire Yeah, maybe
@manic bloom Nice :D
@hot hull nice to you too
Hmm
What are your thoughts on Vivaldi?
Ohh, I see
What do you like from Vivaldi that from other browsers don't?
It has built-in window splitting
which is genuinely really nice
and a lot of power user features in general
which is great considering it's based on chromium
like you can group tabs
😮
Nice :D how is it on performance?
My only deal with Firefox is that it doesn't have Chrome-like tab groups
Chrome-like tab groups
...which I think is good
Yeah, but you need to create a container for every group
There was one time I got Firefox with four tabs opened and it used like 400 MB of RAM!! That's why I'm considering switching, or is it normal!?
yeah, which isn't what they're for really
Browsers are not light applications
they all use a significant amount of RAM
yeah, which isn't what they're for really
Yeah, I think that's the job of tab groups
400 isn't that bad tbh
._. so I'm really biased, I always pictured a browser that is not Chrome as "light"
I do really like organising stuff into trees
hm, I don't have vivaldi installed to show you tab groups
I mean, we have our own opinions
hm, I don't have vivaldi installed to show you tab groups
Is fine, I think
they're called tab stacks
._. so I'm really biased, I always pictured a browser that is not Chrome as "light"
I can see why people would think that though
Do you know the browser Slimjet?
That's not that bad of an idea, actually
what is that? I'm too lazy to read up
vivaldi
@sand goblet wait i dont understand
Do you know the browser Slimjet?
I don't (if you were asking me)
what don't you understand
the tabs with tabs
look at the tabs
they have their own tabs
Slimjet is based on Trident, it's not worth even a glance at
Trident is IE's rendering engine
I've heard Firefox had built-in tab groups
OH SHOOT thats six
ah, yeah, firefox 64 does have tab groups
Is it exactly like Panorama?
most people seem to be using extensions for it so it's hard for me to find info
Ah
ah they removed it
that's why people use extensions
Yeah
They removed it
I think because "barely no one uses it"
Which I don't really get
I don't think Reader Mode is used that much yet it stays
most people use tree style tabs really
guys i need to know if someone here play fall guys on pc
I do
aoo cool
is that all? XD
amm wait
Converting to "int" failed for parameter "rules".
!site rules [rules...]
Can also use: rule, rules, site r, site rule
Provides a link to all rules or, if specified, displays specific rule(s).
!rule 5
5. Do not provide or request help on projects that may break laws, breach terms of services, be considered malicious/inappropriate or be for graded coursework/exams.
fall guys cheats?
i'm assuming i was right
no thanks
aoo ok
if it's not allowed to be on the server you shouldn't be DMing about it :p
server rules are p lax
<@&267629731250176001> I already sent to modmail, but this dude prolly needs to get banned, I blocked him though
whatcha selling
i want to sell my projects where can i do it?
he made a fall guys bot that farms points for you haha
so cheats.
ok whatever u want
you can at least be open about it here if you are gonna try to dm randos privately. And I really do not appreciate what you are doing anyway.
lol we respect the hustle, but uh....no hustling here.
im trying to sell stuff
ok guys pls help me. i want to know where i can sell my projects
where can i do it?
read rule #6 please...
you agreed to the rules when you joined the server
oK
i don't know 😦
probs dealing with it via modmail
am here, sorry
"a while" 3 minutes we're too spoiled
lololol
@bronze shore You're not allowed to sell stuff here.
with what
We really are spoiled with how good moderating is on this server
Not sure, but not here. Don't advertise here or in DMs again.
ok
Alright.
guys can anyone help me invite all the bots you can to a server?
@ mods jkjkjk.
Can i ask why
@ mods jkjkjk.
Can i ask why
@eternal wing world record
@west zephyr yes.
Lol, I mean, you could just use selenium
Lol, I mean, you could just use selenium
@eternal wing ?
Well, you invite bots with their url, so you could make a selenium script that automatically visits a list of urls and adds them to your server in the browser
Oh yeah, sorry. I wasn't thinking, don't do that
hmm
any other ideas
maybe we could do that, but instead the script adding it it just opens the url so i can just go to tab and tab clicking verify and to add
ya know
Not really, that captcha is there to prevent something like this haha. Likewise you cannot use a bot on discords site
but you see what i said
just to open the tab
and get to the part were we have to do the captcha
I'm not sure how that goes for tos.
But yeah, i don't believe there is any way around actually using the browser.
how do i code selenium?
ohh ok
YO IS THERE A CHANNEL WHERE I CAN ADVERTISE????
no
6. No spamming or unapproved advertising, including requests for paid work. Open-source projects can be shared with others in #python-general and code reviews can be asked for in a help channel.
hmm is ELA still in this guild
haven't seen them in a while, can't find them now either
how come, they were admin no?

@eternal wing where's that pfp from? Also 
LOL, very nice. Actually impressive haha
LOL, oof, I need to be less personal on here xD
yeah, and im currently working.
See if you can figure out my work hours
I failed the side quest 
I can't find that info
thank god
now see if you can find my real name jk thats a little scary, and probably pretty easy
I'm guessing it's probably in one of the messages here? I was mmostly looking at your website and github
muahhaa
I have not explicitly said my hours, but I was curious how easy it would be to deduce
I bet there is enough info here for someone to figure where I work even
now see if you can find my real namejk thats a little scary, and probably pretty easy
@eternal wing give my friend permission and he will find your SSN and address
idk how, but he's hella good
everyone has some sort of digital trace 
ye
I would be really impressed actually
for example some are stupid enough to use their real name on github
he wants to be a forensic bounty hunter
or that's what he discribes it as
i'm pretty sure there is an official name for it
but it doesn't sound as cool
you can find out a lot about a person from just googling
that's why I don't ever use randomNerd anywhere else
i tried it with myself LOL
@west zephyr I have like 2 whole pages of google search results dedicated to my name
most of them are from github
if you have a unique name even a pidgeon googling you will find you
yes
if you search me up in quotes, im the only person you find
"if you have a unique name even a pidgeon googling you will find you"
--BrainDead
that needs to be on a t-shirt

So blocked messages not get blocked on mobile?
Do
I’m seeing messages from someone I’ve blocked, I thought it would carry over to mobile
Oh they created a new account maybe
Cool
@scenic blaze is this name longer or shorter than the previous one? Shorter, right?
Well a picture is a thousand words, no?
@narrow pecan Would your .beardify thing work if I gave you the same tile set but snakemoji version?
Yeah. Ot generates a sequence of emojis is the form of :NAME:, so it’s just a matter of switching those name to snakemojis
Whatever snakemojis are
I'm tempted to make 2 pysnake ones, one with the current logo and one with the older school logo
Do you mean full snakes?
what do you mean by 'full snakes'?
All 20 pieces?
Oh yeah, it'll have all 20 that you have for the beard
Aah alright
Just make sure that staff is onboard with having 20 more emojis for a snake
oh yeah, just a kitschy project, I don't think it should actually be added. I like the beard one much more
But it would be very, very easy to use that code for snakes as well. With a few extra lines of code, we’d be able to translate the beard font(s) to snake and let the user choose — since it’s the same kinds of pieces
Maybe the snake could go in the @median dome emoji server though. It would be cool to have the option to choose snake as well as beard
@honest star
z41
Z41?
z41.
z... 41...?
Zee forty one
Should I understand this?
What does this mean?
No one knows. It’s a mystery
it's a secret.
Had z41 been completed she would have looked like this
this is z43
her sister ship
sorry, z41 is "affirmative" from an old game where the shortcut for that was z41
ah
ah, g
c + drag mouse left
what should i include for "coding experience"
not education?
there's no education section lol
it's just one question What experience have you had with coding?
most places near me specifically ask not to include education or projects as work experience, but you should just put what ever you do have.
That is vague enough to include education and projects I'd say
huh, cool i guess
it's not like an internship or anything important, just a small thing
ty!
i have no work experience 😢
hey me neither
i have no work experience 😢
@young shoal I'm not old enough to legally 'work' without a state approved permit, that is signed by the district attorney's office
where are you based
where are you based
@rough sapphire Cali
sad
not really, we have like 3 or 4 of the best colleges in the nation
drug addiction.. human trafficking.. wildfires.. homelessness..
income disparity.. etc
we don't talk about that
you alright, my guy?
@eternal wing yeah man, just finished a 30km hike yesterday (with a 15kg backpack and a Galil rifle) in under 4 hours
and today, pretty much every inch of my body hurts
feels kind of good though, not going to lie
Lol, oh good haha. That is crazy. Congrats on completing that, that is crazy haha. I wish i was still in that shape.
Judging by your gear, that sounds like it may not have been just for fun. Haha
why did you carry a heavy backpack
and why were you carrying a rifle?
so yeah
like in #ot0-psvm’s-eternal-disapproval follow what the mod said
how old are you @edgy crest ?
i wont tell sorry
@solid pollen The top right one is a lonely lemon, right?
AAAh, in the K
I honestly don't think there's a way to solve this without diagonals

I feel like I can see a way. Have the spine, have one bend left and down have one bend to the right, then have a cap. Do the opposite for the top
That's a bad explanation
Wait what? I didn't quite get that
Oh I think I get what you mean
I can't draw it in mobile
Oh wait no I don't
something like this is somewhat close to a k
I added an extra spinal tile. But it shouldn't matter
What about lak's suggestion?
@graceful basin I don't quite think that looks like a K 
If you could get rid of the right handmost row of tiles, it would look fine for my one I think
Guess it is still worth a try
that k
oh, you can make the letters wider?
Yep! The program I made is really flexible
could try without the right hand caps like Charlie said
I'm not a fan of leaving flat edges, though
Yeah. You don't have a curve+cap in a single tile, which is what the K needs. But that adds too many new tiles
I really dislike the fact you have straight edges
wait oops, I got confused
What about ditching the connector, moving it all to the left, and adding the caps back?
@graceful basin Like this?
ye, that is what I meant, but that looks more like an h
Yeah
That's the best so far. But it doesn't look too K ish
What about ditching the connector, moving it all to the left, and adding the caps back?
@undone berry Not quite sure how you mean?
You could probably do it more easily if you made it one char taller, but I guess that would break everything else haha
Yeah, it would (sadly)
if you could get this to work, rather than flattening the right edge, it would probably do fine

if you could get this to work, rather than flattening the right edge, it would probably do fine
@graceful basin https://canary.discordapp.com/channels/267624335836053506/463035241142026251/754299072789086249 Isn't this that design?
To make it not flat you'd need more emojis I think
is that a kinder garten project?
Get rid of that bit
Don't think we have pieces to do that lakmatiol
Move it to the left
That character is only 2 wide. That would give us a C
what are you guys discussing about
This is fairly obviously a K to me
But you're right @wheat lynx, we would need more emojis to make it work
that isnt even a letter
How many think this is a k?
Still have the spine, then have a weird c next to it right? Or is the entire K thing in the screenshot only 2 chars wide?
the fact that some of you are uncultured enough to have never seen a K written like that
smh
wow
ow
:>
:<
Still have the spine, then have a weird c next to it right? Or is the entire K thing in the screenshot only 2 chars wife
@undone berry The entire K is 2 wide
what are you guys talkin bout
Lemojis
Just a sidenote




