lichess.org
Join the challenge or watch the game here.
1 messages · Page 780 of 1
Join the challenge or watch the game here.
so we can watch you 👀
@violet oasis What's ur question?
It's on denglish^^
yes, you can
it's a discord bot
wait a second, I'll send you an invite link to a server.
i want ur prompt pls
powerline
@candid venture
self.people[self.name] = {'date': self.date, 'location': self.location}
{ Yato: { date: today, location: 'some Location'}}
class People:
I'm gonna go now, bye 👋
Join the challenge or watch the game here.
hi
hi
want to play chess
yeh
ok lemme send link
wait
Join the challenge or watch the game here.
have you account in chess.com
you are good
im so bad
good game
i won again
you are so good at this game
thanks
alright
hello
hello
Hello
want to play a cgame of chess iron
you won
haha xD
lol
can you copy paste the code here
my question is why u are not in dark mode?
Please be in dark mode for ur safety
alright
can you see my vscode
mean?
mine as well
ye
!e
def findMedianSortedArrays(nums1, nums2):
"""
:type nums1: List[int]
:type nums2: List[int]
:rtype: float
"""
combined_arr = []
for i in nums1+nums2:
combined_arr.append(i)
combined_arr.sort()
index_mid_arr = len(combined_arr)//2
if len(combined_arr) == 0: return 0
if len(combined_arr) % 2 == 0:
return (combined_arr[index_mid_arr] + combined_arr[index_mid_arr-1])/2
return sum(combined_arr)/len(combined_arr)
result = findMedianSortedArrays([1,2], [3,4])
print(result)
assert result == 2.5
@uncut meteor :white_check_mark: Your eval job has completed with return code 0.
2.5
3.9.1
on leetcode?
3.9.2
send me a link to the site
pls
on that question if poss
change python
to python3
at the top
oof
kinda a shot in the dark, it's so different from 3
several versions of 3 introduced loads of new features
just don't use 2 if you can help it
class Solution:
def findMedianSortedArrays(self, nums1: List[int], nums2: List[int]) -> float:
size = len(nums1+nums2)
print(size//2)
return nums1+nums2 [size//2]
it does not work
def sortMergeAndMed():
nums1 = [1, 3]
nums2 = [2]
size = len(nums1+nums2)
return sorted(nums1+nums2) [size//2]
median = sortMergeAndMed()
print(median)
Join the challenge or watch the game here.
How can I watch the game?
how?
wow, my firewall is blocking the link
I'll try to use VPN
alright
class Solution:
def findMedianSortedArrays(self, nums1: List[int], nums2: List[int]) -> float:
size = len(nums1+nums2)
sortedArray = sorted(nums1+nums2)
if size%2 != 0:
return sortedArray [size//2]
else:
return (sortedArray [size//2-1]+ sortedArray [size//2])/2
Runtime: 88 ms, faster than 85.39% of Python3 online submissions for Median of Two Sorted Arrays.
Memory Usage: 14.5 MB, less than 58.71% of Python3 online submissions for Median of Two Sorted Arrays.
👍
here
can't i just get voice-verification`?
I wish
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
#voice-verification
Hello everyone ı have a problem . I am using VideoCapture method from opencv to take image. In my main script ı am taking image after that ı will emit through signal to the main qml file. But ı can not manage. Can anybody help me ?
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte
look it up on
or stack overflow
"no one can learn Python"
cpp
that thing you cant remember
with open(customlist, "r", encoding="utf-8") as data:
datar = data.read()
Take your Python skills to the next level with this intermediate Python course. First, you will get a review of basic concepts such as lists, strings, and dictionaries, but with an emphasis on some lesser known capabilities. Then, you will learn more advanced topics such as threading, multiprocessing, context managers, generators, and more.
💻 C...
here is the video
Hello everyone ı have a problem . I am using VideoCapture method from opencv to take image. In my main script ı am taking image after that ı will emit through signal to the main qml file. But ı can not manage. Can anybody help me ?
oh sorry
np
hakuna matata
@remote kettle Which country is your accent from?
me when a thing is to programmer for me
That's a animal sanctuary in africa
he is form Austria
ohh
i didn't know you can speak with such a ping...
sad...
192.168.8.101
haha funny
second I believe
alternative account
who are you even trying to scare?
.help
ConnectFour
.connect_four [board_size=7] [emoji1=🔵] [emoji2=🔴]
Play the classic game of Connect Four with someone!
ConvoStarters
.topic
Responds with a random topic to start a conversation.
DragNames
.dragname
Sends a message with a drag queen name.
EarthPhotos
.earth_photos
Returns a random photo of earth, sourced from Unsplash.
EasterFacts
.eggfact
Get easter egg facts.
.ban
.topic
.ban forever
lmao
what brand
.ban @lunar pendant -reason trying to use .ban command
well i did not hear
can you ask him one more
agree
hahaha
yup
mác
I have 4 windows
did anyone see that my msg get deleted
i also use windows
correct
actualy no
haha ... just jokin
which version?
1.1
show me...
I also want to install ubuntu in my virtual machine. because It's kidda feel like it's the demand of the current time
better is not needing to use anything ... sitting-on the beach ... sipping starbucks
everything has pros and cons
i dear this chat to friend me
you mean dare
kubuntu
type anything it turns out one of the flavour of ubuntu
ethical haching*
@flat sentinel
dont wanna get banned
hacking*
i want to
henck
go with penetration tester
Hey @last ivy!
It looks like you tried to attach a Python file - please use a code-pasting service such as https://paste.pythondiscord.com
`
wowowow chill
´m
yo
`m
you got prenk
?
hello
https://paste.pythondiscord.com/orujusoyek.py Can u check it please ....(it is a A* finding algo)
python.cpp
python.java
discord.java
thats quite amazing
python.html
"""
Sliding Puzzle Game
Assignment 1
Semester 1, 2021
CSSE1001/CSSE7030
"""
from a1_support import *
# Replace these <strings> with your name, student number and email address.
__author__ = "<Your Name>, <Your Student Number>"
__email__ = "<Your Student Email>"
def shuffle_puzzle(solution: str) -> str:
"""
Shuffle a puzzle solution to produce a solvable sliding puzzle.
Parameters:
solution (str): a solution to be converted into a shuffled puzzle.
Returns:
(str): a solvable shuffled game with an empty tile at the
bottom right corner.
References:
- https://en.wikipedia.org/wiki/15_puzzle#Solvability
- https://www.youtube.com/watch?v=YI1WqYKHi78&ab_channel=Numberphile
Note: This function uses the swap_position function that you have to
implement on your own. Use this function when the swap_position
function is ready
"""
shuffled_solution = solution[:-1]
# Do more shuffling for bigger puzzles.
swaps = len(solution) * 2
for _ in range(swaps):
# Pick two indices in the puzzle randomly.
index1, index2 = random.sample(range(len(shuffled_solution)), k=2)
shuffled_solution = swap_position(shuffled_solution, index1, index2)
return shuffled_solution + EMPTY
# Write your functions here
def main():
"""Entry point to gameplay"""
print("Implement your solution and run this file")
if __name__ == "__main__":
main()
https://paste.pythondiscord.com/orujusoyek.py Can u check it please ....(it is a A* finding algo)
!pase
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.pydis.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.
what was that sound?
@flat sentinel https://paste.pythondiscord.com/orujusoyek.py Can u check it please ....(it is a A* finding algo)
links good
i will se
didnt know you could do that
nice one
difficulty = int(input("Choose a difficulty: "))
def print_grid(puzzle):
diffiuclty = int(len(g))**(1/2)
for i in range(difficulty):
start = i * difficulty
end = (i + 1) * difficulty
for j in row:
print(j, '|')```
!e print(', '.join('apple') )
@somber heath :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print(', '.join('apple') )
003 | ^
004 | SyntaxError: invalid non-printable character U+200A
🤨
what's your rating?
1735 rapid
The built-in function range returns an iterable sequence of numbers.
Write a function sum_range(start, end) which uses range to return the sum of the numbers from start up to, but not including, end. (Including start but excluding end is the default behaviour of range.)
Write a function sum_evens(start, end) which does the same thing, but which only includes even numbers. You should also use range.
def sum_range(start,end):
range[start:end]
return sum
def sum_evens(start,end):
for range in start:
if x/2 == True:
print(sum(x))```
try:
n = int(n_str)
except:
print("Invalid Input: not an integer")
quit()
if (n % 2) == 0:
print(f"\"{n}\" is an even number!")
else:
print(f"\"{n}\" is an odd number!")```
def sum_range(start,end):
range[start:end]
return sum
def sum_evens(start,end):
for range in start:
if x%2 == 0:
return True```
!code
Here's how to format Python code on Discord:
```py
print('Hello world!')
```
These are backticks, not quotes. Check this out if you can't find the backtick key.
for i in range(5, 10):
pass```
a = 1, 2, 3
b = sum(a)
b == 6```
def sum_range(start,end):
for i in range(4,10):
i += 1```
def sum_range(start,end):
for i in range(4,10):
v = 0
v += i ```
and I like sublime
def sum_range(start,end):
v = 0
for i in range(4,10):
v += i
return v ```
def sum_range(start,end):
v = 0
for i in range(start, end):
v += i
break
return v```
def sum_range(start,end):
v = 0
for i in range(start, end):
v += i
return v```
I don't know python much, but let me write sum_even just for fun
!e ```py
def sum_even(start,end):
ans=0
for i in range(start,end):
if i%2==0:
ans+=i
return ans
print(sum_even(6,16))
@lunar pendant :white_check_mark: Your eval job has completed with return code 0.
50
that's cool
just for fun
def sum_evens(start,end):
g = 0
for i in range(start, end):
if i % 2 == 0:
g += i
return g
```
hello your computer has virus
lol
NOT THE INDIAN TECH SUPPORT
but ya
if anyone wants to hop ina dm call and help that would be great
i hate typing over problems
haha, indian tech support is scam. I'm from india
let's go
ok then
lichess
I don't have account there
u can play without account
Join the challenge or watch the game here.
with no increament
!e
num = 100
div = []
for i in range(1, num):
n = 0
for _ in range(2, i - 1):
if i % _ == 0:
n += 1
if n == 0:
div.append(i)
print(div)
@remote kettle :white_check_mark: Your eval job has completed with return code 0.
[1, 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97]
rematch?
@somber heath you want me to talk in here??
i remember my friend popped a blood vessel in his eye and it was strang
@last ivy ok you're good
what thingy
?
Join the challenge or watch the game here.
should i dm a mod about the voice verification thing
cause i think i have all the requiroments
except spelling
what command
@bronze moon Are these modules things you've installed through pip or other modules in your project folder?
!voiceverify in the #voice-verification
@bronze moon use a different langauge server
like pylance
!e
print(', '.join('apple'))
@rugged root :white_check_mark: Your eval job has completed with return code 0.
a, p, p, l, e
!e
print(', '.join('apple') )
@rugged root :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print(', '.join('apple') )
003 | ^
004 | SyntaxError: invalid non-printable character U+200A
@zealous wave :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print(', '.join(["apple"]) )
003 | ^
004 | SyntaxError: invalid non-printable character U+200A
python3 -m pip install
have you installed it through admin cmd
I have to use conda because Cartopy breaks everything when you use pip
!e
print(', '.join('apple') )
@rugged root :white_check_mark: Your eval job has completed with return code 0.
a, p, p, l, e
!charinfo ) )
\u0029 : RIGHT PARENTHESIS - )
\u200a : HAIR SPACE -
\u0029 : RIGHT PARENTHESIS - )
\u0029\u200a\u0029
!e
import matplotlib.pyplot as np
import numpy as pd
import tensorflow as plt
import pandas as tf
!charinfo ( (
\u0028 : LEFT PARENTHESIS - (
\u0020 : SPACE -
\u0028 : LEFT PARENTHESIS - (
\u0028\u0020\u0028
due to a lang server
Spacce. Space, but thicc.
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'bot.exts.utils.help' raised an error: ImportError: cannot import name 'menus' from 'discord.ext' (unknown location)
print (1, end=' ') #1 is a factor of every number
factor = 2
storms you say hemlock?
nvim
nano >>>>>>>>>>>>> vim
(I kid)
Chili are you helping vester with his bot?
We are all of us stupid. It's just that some of us have more big brain moments and fewer small brain moments.
but its dog
ipython3 >>>>>>>> python3
probably not you, cause there are 160.000 people on this server
ok try me
i do
I didn't say you're bad
Er...ow.
,but the chance that nobody of 160.000 people is better than you, is lower than 1%
yea
But I'm sure, that you're probably the best chess player in current voice^^
(hopefully)
literally about to get breakfast, now is not the time sorry
@rugged root can u help me ?
I never code on an empty stomach. That's how I managed to get the JVM to uninstall itself last year
ok
hello
with open("mah_file.txt") as file:
raw_data = file.read()
Now I am an Arsonist, Today With Your Wife, Nobody Loves You Like Me
so sad 😦
ofo = {}
print(f'{ofo['Osztály']} - {ofo['Tanár']}', file=f2)
It's working now, thank you
Always happy to help
Inksy?
^ maybe inkscape?
setting_s = NewSetting()```
Yo
opalmist your accent is nice
Everything about him is nice
i see
You'll make me blush.
guys relaxed it's a python server
its not just that emoji
everyone its ok ;-; (?
.topic
Suggest more topics here!
The ergonomic of the chair its very important jehehe
.topic
Hebrew (:
no, i get it but but i keep my internal laugh
why would anyone but this chair 
secret labs are soooooooooo comfortable
What's a secret lab?
oh boi
Ooh
they're making "gaming" chairs i think
Yeahh, thanks, they told me in VC (ish)
https://store.hermanmiller.com/gaming/herman-miller-x-logitech-g-embody-gaming-chair/2517590.html?lang=en_US The best chair. NO DOUBTS
also the price (;
That's expensive
the classic RGB chair
12yr warranty
i like obama
Evenin'
ok
Just finished eating
what did ya have
yeah what ice said
Do Racing Gaming Chairs Suck? Some people love them, some people hate them. I think they are okay but there are definitely some things to watch out for before buying one for yourself.
Check out some of my other videos to help you find your perfect office chair:
How to Choose an Office Chair - https://www.youtube.com/watch?v=MgRE2PFnfNw
IKEA Vo...
nice
Premium™ sardines because I'm too lazy to prepare food
what did I say 
you asked what they ate
some one knows the tsuru tuneado?
Sometimes I eat instant ramen
cup noodles
Both with rice
Victoria Arlen (born September 26, 1994) is a current television personality for ESPN, as well as an actress, speaker, model, and former American paralympian swimmer.Arlen is a triplet and has two brothers.
Arlen, at the age of eleven, developed two rare conditions known as transverse myelitis and acute disseminated encephalomyelitis. This was...
another way to use a biscuit
Can i say Stallman whit no fear of being judge (?
o boi the history of language and asian in general its like the history of war an envy
being complex for being complex
you can draw it (?
bread board 😉
oh boi...
Mushi-Shi
The white rabbit for much was Death None
well gl
But the advantages of take a run
Well
No... you kill the coffe
;-;
Nuts, I dont kwon who to call the cortado
Nice
well
Depens of the lawyer
What is that?
;-;
I have to go ciao
Monero btw
You don’t have to outrun the bear, just your friend
is it c# making more money
They call me Gordon Ramsey
|| dont open this literally ||
heyo people 👋
so watcha guys working on today?
except for pure, pretty sure its the website 😂
I am working on a grill cheese
I know I joined late, but is Rabbit's explaining how corporate world sucks? 😂
why dont you speak?
ceiling fan's running
mosquitoes, 😢
😂 best story time ever
where's Hemlock at this time
it got depressing suddenly
😂 quite interesting right
its Facebook
they're evil
_ all my knowledge coming from The Social Network_
I also need to learn how to write "corporate" emails
poor Jane
adultery at its finest
at rabbit's workplace
_kinda wanna work there now 😅 _
fyi, I also hate logging
logging module in python
adultery again 😂
What's the phrase.... don't shit where you eat?
apt
cab Rabbit reveal all this?
was there an NDA?
maybe if he doesn't reveal the company's name, its fine
we'll think he works for Trump Org. 😂
😢
#voice-chat-text-0 message
voice stuff
How do Blackhats usually get into a secure system?
people 
Your assumption is systems are secure
what's a SQL injection attack?
is that's how they do it?
That assumption is fake
That's a scary thought
usually by social engineering
how do they get root access
Same again
Try to convince the user that they're the IT support for the company and that they need the password to do account maintenance
Social engineering is the strongest tool
People are dumb
unless the victim is smart
Sure, but that'd be one user out of however many are in the company
one of the thing they were serious about in my HR induction
"If you think an email's not from company, do report it without clicking any links in it "
I don't like too much freedom
can a virus be installed with only clicking links?
Well let's start pulling back on this
a chain is only as strong as its weakest link
yeah, its called something in JS
and that is usually some non tech savvy employee
some "script" attack
Not even necessarily that
doesnt the browser block it?
why would it, its mean to execute scripts
now it doesn't happen
damn straight
they've done something in the JS itself to prevent it
oh
completed my FriendTeasingApp 😈
https://paste.pythondiscord.com/ufateriqix.csharp
just gotta remove 2 print statemets
cloud ☁️
Yeah, cloud scaling has made it much easier
google stadia + starlink
Starlink is starting show issues
could cloud gaming be a thing, if the servers are too too many
like 2-3 in every city?
and they all run fibers
😞 cost might be too much then, to use it
higher frequency gets blocked through matter
like visible light
its over 300Ghz, it gets completely blocked by matter
5g, just below 300Ghz
Which means more lost packets, more having to resend, etc.
I have 100 MBPS fiber, India
Does depend on if they'd have servers near there
well, I'm gonna go 😴
cya
Later
Hardcore gamers might scoff at the notion of a 16-bit gaming system, but they clearly haven’t been to Brazil, where systems like the original Sega Genesis are still among the most dominant forms of gaming. The demand for retro consoles is so high, a company called Tectoy has announced it will begin manufacturing the Sega Genesis (known better as...
@rugged root is why we can’t have nice voice things
Restart-Service audiosrv
You're not wrong
this may sound weird, but do some NBA players read books?
Why wouldn’t they?
Yeah that is a bit weird
i3, awesome
i3 is a dynamic tiling window manager with clean, readable and documented code, featuring extended Xinerama support, usage of libxcb instead of xlib and several improvements over wmii
i told you
The Mortal Kombat movie reboot from director Simon McQuoid features the defenders of Earthrealm Liu Kang, Sonya Blade, Jax Briggs and more entering the Mortal Kombat tournament to save the world from Shang Tsung, Sub-Zero, Mileena and other supernatural kombatants.
This red band Mortal Kombat (2021) trailer shows off why it's rated R.
Mort...
Are you going to be the only one accessing the database @dense ibex ?
Probably why?
sqlite isnt as friendly for when/if you need to make concurrent writes to the database
but really i think it would be more like in cases when it gets really big. concurrent meaning like 2 or more users editing at the same time. and yeah haha. if i had to make a recommendation id say go ahead and learn postgres
do you know sql or are learning it as well? or more planning towards using some kind of ORM framework?
@sick dew you could make a pokemon battle bot
no I dont
make like a simulator and keep track of the HP
postgres is a database
yeah the panel is like the gui used to manage the database
yeah you can run it on linode
i like linode
nah you can use one of the basic options
you can get a server with windows or linux. just something you can install postgres on
lmfao @molten tinsel
yeah
i think you can expand storage as time goes on
start with 1kb and then upgrade to 2kb 😆
lmfao i jk above ^ haha
does anyone happen to be familiar with front end development or networks/sockets?
I am, sorta
Been working with Qt and websockets/pipes for a while now
current project actually
do you happen to have any insight as to like... how to stream video over a web server?
exactly what im doing
lol
What are you gonna do on the webserver end? just display or are you doing processing?
what do you mean by processing?
basically, do you need frame by frame dta
data*
or are you just gonna stream for the purpose of displaying video?
nah essentially im just trying to build a personal netflix
If you want reliable streaming like netflix you want HLS
gotcha okay. ill check them out. i had gotten to gstreamer and was getting directed to FFMPEG
got it. I will do some research
@client.event
async def on_member_join(member):
if botdata.welcome_channel != None:
embed = discord.Embed(color=discord.Color.green())
embed.add_field(name="Welcome,",value=f"{member.mention}, pls read the rules and have fun.",inline=False)
embed.set_thumbnail(url=member.avatar_url)
await botdata.welcome_channel.send(embed=embed)
else:
print("Welcome channel was not set!")
@client.event
embed=discord.Embed(title='BEM-VINDO', description=f'{m} ENTROU')
await ctx.send(embed=embed)
Synthetic Everything shows you how to send a message to a specific channel using discord.py
Have A Suggestion For A New Video Comment Below And I Will Get Back To You As Soon As Possible!
I post my videos on lbry.tv: https://lbry.tv/@SyntheticEverything:8
My lbry invite link: https://lbry.tv/$/invite/@SyntheticEverything:8
Check out my websit...
watched
docstrings be like
sudo pacman -S [package name here]
pacman -S <package>
sudo pacman -Syu
pip install pacman
hmmm? is pacman on pypi?
pacman is a linux package manager
for arch based distros
i know what it is
Nope, I didn't mean it.
i've become fearful of updating manjaro, it's broke grub twice after updates
Just use AWS, Azure or GCP free tier
it seems to be installing updates from pamac instead of pacman/paru/yay
then I had to add GRUB_DISABLE_OS_PROBER=false in the grub config file
strange
ye
Listen to this episode from LINUX Unplugged on Spotify. Tim Canham, the Mars Helicopter Operations Lead, shares Linux’s origins at JPL and how it ended up running on multiple boxes on Mars. Plus the challenges Linux still faces before its ready for mission-critical space exploration. Special Guest: Tim Canham.
how linux got to mars 
@amber raptor what about Redis?
Redis is great for KV database
Going on a delivery run, I'll probably hop on call while I'm driving
@amber raptor I like making stuff for fun too man 🙂
ok time do stuffs
When we at Timber went looking for the difference between threading and multiprocessing, we found that the information available was unnecessarily complicated and didn't help us figure out what to use. This post is our attempt at fixing that problem.
TLDR: If you don't want to understand the under-the-hood explanation, here's what you've been waiting for: you can use threading if your program is network bound or multiprocessing if it's CPU bound.
Siri Shortcuts deliver a quick way to get things done with your apps with just a tap or by asking Siri. The Shortcuts app enables you to create personal shortcuts with multiple steps from your favorite apps. Start from hundreds of examples in the Gallery or drag and drop to create your own.
Shortc…
Pythonista is a complete scripting environment for Python, running directly on your iPad or iPhone. It includes support for both Python 3.6 and 2.7, so you can use all the language improvements in Python 3, while still having 2.7 available for backwards compatibility.
In true Python fashion, batter…
me and my home in minecraft
what version if its java ngl that sucks if its MCPE not thhhhatttt baddddd
hello
@amber raptor I forgot to tell u thank u for the great info from earlier
@amber raptor when u see this lol
Python is a powerful general-purpose programming language. Our Python tutorial will guide you to learn Python one step at a time with the help of examples.
translate with chrome browser
Machine translation to and from Scots now! https://slate.com/technology/2020/09/scots-wikipedia-language-american-teenager.html
its optifine 1.16.4 i think
hello
hello
helo
hows your day
same, just school
yea me to
kinda boring not gonna lye
what is your favorite subject
propably mathematics or physics
im learning about classes
nice
so object oriented programming
do you know python
what time is it for you
9:23 am
you mean cold, yea its a bit cold
yea for me to
do you do anything other than python
oh nice
do you know C#
why no one's talking?
@gentle flint what your job?
ain't got none
Hacker? Or cracker?
I study electrical engineering
mmm
Studies?
that's my hobby
Where are you from?
my house
From
🌍 🌏 🌎
Nope, not from Fuck
Do you know where my nationality is?
inside you?
in your government office, I think
Busy morning for you guys
If you get it right, I'll give you a nitro.
India or USA
Me?
perhaps
You're a Steve from Stevelandia
Enlarged panda legs
one can always pick out the furry
You can take the man out of the furry...
they do
Do you know where my nationality is? If you get it right, I'll give you a nitro.
Mars
Why do you keep offering this
rip
Lip?
Ripe
ripen

Minor
Sri Lanka
Bahamas
Very Clumsy
No worries it was just an odd thing to offer a prize for
woow
Wrong Korea
Who are you kim?
i knowe
kim is my favourite woman
I should be asleep
kim is my favourite woman
Black pink?
Jenni Neutron
Who is kim?
why
Far too blinding of a gif, Kemal
that is three in a cup
4
ok sorry
The joke was Kim Jong Un
kim is sort of a man
Ah..
But it wasn't exactly funny
he is a pig
Just eat food

u are going right
pigacious
Forgot we had that one
eye fog?
why no mask
I might start making random ones to try and catch you out
2019y
ok stop flexing flex
Do eeeeeeet
And now my cat is laying back on me
My basketball shoes
how many cats south korea have?
Dude I'm on mobile, hush your face
Cats?
nou
Oh fuck
uno
the number continues to reduce
@gentle flint i know
Fuck
What?
you
cat is an animal
meow
Yeah..
a bit of a lion
I like not cat
I should set my nickname to meow
Fuck
but is scared of you
My eye
w h i s k e r s
that is a geneic cat
That's my buddy Lucky
Fuxx my eyes...
where did you copied from?
did he just wake up?
or is going to sleep
he looks very confused
it is not human
intrigued, perhaps
It's my cat, the one laying on me
*lying
Hush
laying*
i thought you copied a generic cat
in your life
cause that is a cute cat
i had a cat
I still have a cat
he was a dic*head
aren't they all
Zzzz
he looks like one of them
Zoom time
he looks about to eat something
Zoom time camera 📷
i dont know what do you do with that picture
tickled it
bit of stinker
2picture
He is bright with history
Very much my own cat
ur hair grows quick
omg
wth
stop it
It’s me
fles
beard?
flex
Old picture
Why
o
You can tell by the glasses
oo
Why
Where are you from??. Here people
I don't have access to the commit history of your glasses
I was gonna say, That is some Guinness world record stuff. Fast Hair Grower
Why foreget?
The ones in my pfp are current
o
Mr. Hairlock
anything foreget?
what is the cat's name?