#voice-chat-text-0
1 messages · Page 721 of 1
Muito muito eu inter em uma company brasileira agora
o português falado aí é bem diferente do de Portugal e do daqui, eu consigo compreender melhor você falando inglês lol
theres no money in that
Foi mal,acabei escrevendo errado
Sou intern em uma company brasileira agora,quis dizer isso
eu consigo um emprego que paga 10 mil por mês se você quiser
Agradeceria
"Perform support service in order to answer questions in the operation of Ecommerce ERP system or analysis regarding technical problems reported by users."
I'm mean,I've dealing with Microservices, EDa,Monolithics system for a long while I can handle this
Alright, I do that
agreed
What do you prefer, self-taught or get taught by teachers?
you need to check for duplicate
prince, you are really eloquent
your tool to scrape will probably have checking
After high school, I don't think I can learn by teachers anymore 'cause I'm really self taught 
But now I'm finishing major
well it's based on each person ability to absorb knowledge, some people need mentor some people can self learn @whole bear
raise or return if you in a function
red dot is the IDE debugger
For sure it is ,that's why I'm finishing college
@fiery hearth if the code not running in the function you can do raise or sys.exit() to stop the code at that line https://docs.python.org/3/library/sys.html#sys.exit
if in a loop break; is ok too
there alot of way
import os
os.system("pause")
about what you said you can go on any channel and someone appears from void and responds with precision and quality, that's impressive
it's like going to a good college for free
this server is one of the most incredible toolls
you can become like master programmer in no time
IF you know how to present your code and pose your question
yes and it's not like searching something on the internet and something static and bureaucratic
appears
exactly
it's literally a conscious person
as it should be
and a person can understand you
do you guys think 60k in austin is low for an entry level software engineer?
damn
not really sure yet but
they offered 60 and I already signed the offer letter
I've just been thinking about how low it is
it's not a big tech company either so I'm sure it won't be too difficult?
yeah, I was just worried
if they didn't accept my offer
idk it's a big company so i'm not sure they will
but they did tell me that based on a performance evaluation every 6 months I can raise my salary by like 4.5%
so I'm thinking 9% isn't bad at all
assuming I do well on the evaluations
yeah, this is my first
thanks
also
should I be throwing in 2k a month in my 401k?
or is that too much
so based on the calculations, I make like 48k after taxes
but I'm not sure howw much people usually throw in
oh wait. I just read something online where it said I can only throw in 6k pretax dollars
takje that back.. it was just for ira
@graceful grail did you mute me?
@somber heath did u change ur pfp again ?
@sick cloud I did.
Powershell is oop cmd not
i'm good and hbu ?
WHY CANT I TALK
Check voice chat verify channel
@gentle merlin :D
Soundtrack: https://bit.ly/3lo7cnH Support me on Patreon: http://patreon.com/melodysheep
What if there was a museum that contained every type of life form in the universe? This experience takes you on a tour through the possible forms alien life might take, from the eerily familiar to the utterly exotic, ranging from the inside of the Earth t...
You can buy Universe Sandbox 2 here: http://amzn.to/2yJqwU6
Or get a shirt: https://teespring.com/stores/whatdamath
Hello and welcome! My name is Anton and in this video, we will talk about the possibility of silicon based life somewhere out there.
Paper: https://www.mdpi.com/2075-1729/10/6/84/htm
Support this channel on Patreon to help me ma...
üöä
ß
Learn more about Aaron Alon's music, writing, and films at aaronalon.com.
Z++
Anyone here tried WordAI?
C--
@sick cloud
I am asking to people in Voice Chat
Where Will You Be?
did u change ur pfp ?
@versed island wtf is that ?
Anyone used WordAI here?
this is not me
import random
random('Even', 'Odd')
if no one reply mean no one know, don't have to type it again
import random
random.choice('Even', 'Odd')
import random
print(random.choice('Even', 'Odd'))
import random
mylist = ["Even", "Odd"]
print(random.choices(mylist, weights = [10, 1, 1], k = 14))
!e
import random
print(random.choice(["Even", "Odd"]))
@lusty marsh :white_check_mark: Your eval job has completed with return code 0.
Odd
@somber heath would you like to play with me?
😉
Chess?
@glacial osprey No, and I don't intend to in the future. Thanks. 🙂
Nothing to do with you, specifically, so much as a general policy.
@sick cloud im sorry im so fucking tired i clicked the link before realizing it was gonna start the game
Ok get it
a secondary thought
what is this ?
ok...
I have a programming related blog.
but i am confused to whether write general stuff about a particular programming language or write project based blog posts.
Like How to create this and that.
Or pick certain language and explain basics about it just like Books and Notes?
Please help.
I am listening in Voice Chat
@winged cedar Can't talk? Check out the #voice-verification channel! (764802555427029012)
hey @somber heath hows it going?
You need to be active for 30 minutes at least and send around 50 messages. then you can use voice verification
Ok. get it. I am sorry for triggering and disturbing everyone.
i remember a class when i was in college we have to write coordinate to connect lines, somehow we made a 3d park with just coordinate @@!
#version 330
out vec4 outColour;
in vec2 passTextureCoord;
uniform sampler2D texSampler;
void main()
{
vec4 color = texture(texSampler, passTextureCoord);
outColour = color;
}
@whole bear It goes.
#version 330
layout(location = 0) in vec3 inVertexPosition;
layout(location = 1) in vec2 inTextureCoord;
layout(location = 2) in float inCardinalLight;
out vec2 passTextureCoord;
out float passCardinalLight;
uniform mat4 projViewMatrix;
uniform float globalTime;
vec4 getWorldPos()
{
vec3 inVert = inVertexPosition.xyz;
inVert.y += sin((globalTime + inVert.x) * 1.5) / 8.8f;
inVert.y += cos((globalTime + inVert.z) * 1.5) / 8.1f;
inVert.y -= 0.2;
return vec4(inVert, 1);
}
void main()
{
gl_Position = projViewMatrix * getWorldPos();
passTextureCoord = inTextureCoord;
passCardinalLight = inCardinalLight;
}
#version 330
out vec4 outColour;
in vec3 passTextureCoord;
uniform samplerCube texSampler;
vec3 brightnessContrast(vec3 value, float brightness, float contrast)
{
return (value - 0.5) * contrast + 0.5 + (brightness-1);
}
vec4 color;
vec3 gamma(vec3 value, float param)
{
return vec3(pow(abs(value.r), param),pow(abs(value.g), param),pow(abs(value.b), param));
}
void main()
{
color = texture(texSampler, passTextureCoord);
color = vec4(brightnessContrast(color.xyz, 1.15f, 1.15f), color.w);
color = vec4(gamma(color.xyz, 4.8f),color.w);
outColour = color;
if (outColour.a == 0) discard;
}
alot of maths that why he got a bunch of likes on that
@surreal glacier use a help channels #❓|how-to-get-help , this is general chat
In geometry, a frustum[1] (plural: frusta or frustums) is the portion of a solid (normally a cone or pyramid) that lies between one or two parallel planes cutting it. A right frustum is a parallel truncation of a right pyramid or right cone.In computer graphics, the viewing frustum is the three-dimensional region which is visible on the screen. ...
its fine
your aren't voice verified ;-;
A video game in the world of hyperbolic space (and spherical space). Many more details and a whole video series to come, so stay tuned. I've been working on this project for over a year now and it's so great to finally announce it publicly.
Steam Wishlist: https://store.steampowered.com/app/1256230/Hyperbolica
=== FAQ ===
Q: Does this use yo...
Steam Page: http://store.steampowered.com/app/219890
Official Website: http://www.antichamber-game.com
Facebook: http://www.facebook.com/Antichamber
Twitter: http://twitter.com/Antichamber
Antichamber is a mind-bending psychological exploration game where nothing can be taken for granted. Discover an Escher-like world where hallways wrap around...
After 7 years, Manifold Garden is finally launching on October 18th, 2019. It will be available on the Epic Games Store and Apple Arcade.
https://www.epicgames.com/store/en-US/product/manifold-garden/home
Twitch - https://www.twitch.tv/andersonjph
Second Channel - https://www.youtube.com/channel/UCIJlrEQoJE3eI168TWSl39g
Script: soon!
Twitter: https://twitter.com/jph_anderson
Superliminal Gameplay Full Walkthrough (Unique Forced Perspective Puzzle Game)
About Superliminal:
This is a single player first-person puzzle game that uses perception as a mechanic. You play as someone who wakes up in surprisingly lucid dream. As you complete puzzles to get to the next exit, certain patterns and truths become more apparent. I...
Available now on iOS, Android, and PC!
App Store: https://itunes.apple.com/us/app/reigns/id1114127463
Google Play: https://play.google.com/store/apps/details?id=com.devolver.reigns
Steam: http://store.steampowered.com/app/474750/
Sit on the throne as a benevolent (or malevolent) medieval monarch of the modern age and swipe your royal fingers e...
Cool❣️
hello
Hi
plotly
thats beatiful i imagined everything under snow!
@neon sleet hey got some stalanium
i wanted to build a pc
hi
@whole bear helo
whatsup
gud and hbu ?
umm, nope
noo, like i'm talking to ppl in the voice call
ov ok
!e print("helo")
@sick cloud :white_check_mark: Your eval job has completed with return code 0.
helo
@meager shale :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | TypeError: can only concatenate str (not "int") to str
!e for x in range(10): print("This is the " + str(x+1) + "th try.")
@meager shale :white_check_mark: Your eval job has completed with return code 0.
001 | This is the 1th try.
002 | This is the 2th try.
003 | This is the 3th try.
004 | This is the 4th try.
005 | This is the 5th try.
006 | This is the 6th try.
007 | This is the 7th try.
008 | This is the 8th try.
009 | This is the 9th try.
010 | This is the 10th try.
yes
!e
for x in range(10): print(f"This is the {x}th try.")
@sick cloud :white_check_mark: Your eval job has completed with return code 0.
001 | This is the 0th try.
002 | This is the 1th try.
003 | This is the 2th try.
004 | This is the 3th try.
005 | This is the 4th try.
006 | This is the 5th try.
007 | This is the 6th try.
008 | This is the 7th try.
009 | This is the 8th try.
010 | This is the 9th try.
i didnt know that
for i in range(4): print(f"I am counting to ten: {x+1}")
forgot e
!e for i in range(4): print(f"I am counting to ten: {x+1}")
@meager shale :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | NameError: name 'x' is not defined
!e
for i in range(4): print(f"I am counting to ten: {i+1}")
!e for i in range(4): print(f"I am counting to ten: {i+1}")
@meager shale :white_check_mark: Your eval job has completed with return code 0.
001 | I am counting to ten: 1
002 | I am counting to ten: 2
003 | I am counting to ten: 3
004 | I am counting to ten: 4
@pliant atlas helo
!e for i in range(3): print(f"I am counting to three: {x+1}")
@meager shale :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | NameError: name 'x' is not defined
go to #bot-commands @meager shale
!e for i in range(3): print(f"I am counting to three: {i+1}")
@meager shale :white_check_mark: Your eval job has completed with return code 0.
001 | I am counting to three: 1
002 | I am counting to three: 2
003 | I am counting to three: 3
griff with that new pfp looking fresh
@severe pulsar hheelloo
hey
@uncut meteor helo

Gus!
gus
who is gus
this is gus
Gus!

chunGUS
how do i make tic tac toe in discord ?
what
kinda
yepp
👍
what
i'm using cogs
gus
gussssss
gys
gus
guyss
gus
no(
gys
guys
gyus
bruh
ohhh
gusb
🙂
how are you?
good||ish|| and hbu ?
🔴 🔵 🟢
🟩 🟥 🟦
💙 💚 ❤️
ohhh
php?
is this bad>?
php bad?
vk written on php
vkontakte
)
js?
for backend
i need backend
xD'
sc
cs
noo
gus
gyd
gys
gus
goose
?_?
ok, i go write sites on c++ xD
i knoe
know
i am crazy xD
this is good idea)
backend
)
my social network
^))
i know
django
python very easy :)))
ff
i can't talk
but i have role
gus

ohhh
gohhh-ru
Ghus
smth like dat
buura russian
nope
ghus
E
s
On in a bit, getting settled in at work
Declan McKenna - Rapture
New album 'Zeros': https://smarturl.it/DeclanZeros?IQid=yt
Follow Declan McKenna:
Instagram: https://www.instagram.com/thedeclanmc...
Twitter: https://twitter.com/DeclanMcKenna
Facebook: https://www.facebook.com/DeclanMckenn...
YouTube: https://smarturl.it/DMckennaYTSub?IQi...
Website: http://www.declan...
Learn how to set up your own Git server in this tutorial from our archives. Git is a versioning system developed by Linus Torvalds, that is used by millions of users around the globe. Companies like GitHub offer code hosting services based on Git. According to reports, GitHub, a code hosting site, is the world’s largest code hosting service. The...
@uncut meteor it showing the board now
https://medium.com/@piteryo7/how-to-set-up-git-server-on-local-network-windows-tutorial-7ec5cd2df3b1
helo
??
scp -r my_project.git user@git.example.com:/opt/git is scp a linux command?
later cuz i'm making a game rn
it is kind of ezy
python -m http.server, to run an http server
what for running an ssh server
so I did this
>> scp -r proj.git localhost:8000/repository
ssh: connect to host localhost port 22: Connection refused
lost connection
/path/to/venv/Scripts/python /path/to/python/script.py
/path/to/venv/Scripts/activate
python -m http.server, this server doesn't give read write access?
where python, didn't work for me
@uncut meteor http://www.scpwiki.com/scp-173
python -m http.server
can i use XAMPP?
anyone ever used it
anyone know sql? you must have setup a local server to practice with it
i'm gonna get some dinner, brb
One sec, IT is calling
what you need help with?
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.
and like that ^ for highlighting
Ik that
and login using qr code scan

@uncut meteor Like i'm almost done with the game
quick easy
...I just need a way to show the change...
hi
Is that discord light theme...?
plz someone help me in a small project
yeah, ||i care about my eyes||
You can ask in general python or take a help channel
I'm talking to him in here

@rugged root i'll try it
k
editing the embed...
did uk 1+1-1 = 0!?
...?
1+1-1 = 0!
It fucked with me too
also what she said
!e
x = 0
while x < 26:
print(chr(97+x))
x -=- 1
@uncut meteor :white_check_mark: Your eval job has completed with return code 0.
001 | a
002 | b
003 | c
004 | d
005 | e
006 | f
007 | g
008 | h
009 | i
010 | j
011 | k
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/leqotofiwi.txt
I know x -= 1 is equal to x = x - 1, but what does x -=- 1 equal to?
why won't you use x += 1?
cos im evil
Spite
subtracting
🙈

finally i'm able to do it, now i need to add the rules
!e
class SubTact0r:
"""
___ __ __ ____ ____ __ ___ ____ ___ ____
/ __)( )( )( _ \(_ _) /__\ / __)(_ _)/ _ \( _ \
\__ \ )(__)( ) _ < )( /(__)\( (__ )( ( (_) )) /
(___/(______)(____/ (__)(__)(__)\___) (__) \___/(_)\_)
"""
def __call__(self, *args, **kwargs):
assert len(args) == 2, "Tract0rs requires only two numbers. murrr"
assert all(type(a) is int for a in args), "Tract0rs only like ints, burrr"
return args[0] - args[1]
TracKt0R = SubTact0r()
print(TracKt0R(420, 69))
hey guys
@uncut meteor :white_check_mark: Your eval job has completed with return code 0.
351
what are you guys talking about
@cosmic thorn ur static/background noise is awful. i've muted you till you get it sorted. let me know when you do
u can mute him ?!
oh, i thought he could muted ppl lol
lol
hmmmm...
i want to get voice verified
but i dont want to spam
bc, i dont have stuff to talk...
same
how did u get channel id ?
Channel Desc, for this chan
read this channel's description
oh, i feel so dumb now lol
;)
u would get muted if the admin smth spots u
sry if i annoy any of u
nooo, like the mod would mute u if they see u say random stuff everytime
aaa
like
im not trying to be annoying
and im not going to be toxic
i just wanted to get the voice verified
An alternative Christmas message for a very alternative year.
Watch the full Deepfake Queen's Speech - including TikTok dances, and much much more...
#Channel4 #All4 #Deepfake
and im sending messages till i get the 50 i need
idk how many messages i sent
sry if im being annoying
i see what you are doing
kakashi sensei
yo guys
quick question
if text == "task manager" or "manager":
sub.Popen("C:\\Windows\\system32\\Taskmgr.exe")
anything wrong with this code?
hmmmmm....
OSError: [WinError 740] The requested operation requires elevation
this is the error im getting
i dont think task manager requirest admin permition
idk
np
sryy
i will look into it
ty
its 5:47 pm for me
coding in windows seems a nightmare
I think it is
but others will disagree
i have never used linux before
why windows 10 is so slow
when I tried Ubuntu everything was fast
hmmmm...
8x
Remember not to spam your way to it
👍 Force of habit to remind
Eh... it was enough to make me go "ehhhh"
everyone I met in USA says
that im look like indian
how can I shorten this?
_=[0,1]
while len(_)<31:_.append(sum(_[-2::]))
print(*_,sep='\n')
Eso would know better. Just seeing that makes me sad
happy_sloth
you thought process is very fast
i'm noticing that with people here
the pace is different
import speech_recognition as sr
import os
import subprocess as sub
import webbrowser as web
r = sr.Recognizer()
while True:
with sr.Microphone() as source:
print("speak:")
audio = r.listen(source)
try :
text = r.recognize_google(audio)
print("You said : ", format(text) )
except:
print("sorry cant hear anything")
# if text == "exit" or "quit":
# quit()
if text == "calculator":
sub.Popen("C:\\Windows\\System32\\calc.exe")
# if text == "task manager" or "manager":
# sub.Popen("C:\\Windows\\system32\\Taskmgr.exe")
if text == "google" or "chrome" or "google chrome":
web.open("google.com")
!or-gotcha
When checking if something is equal to one thing or another, you might think that this is possible:
if favorite_fruit == 'grapefruit' or 'lemon':
print("That's a weird favorite fruit to have.")
While this makes sense in English, it may not behave the way you would expect. In Python, you should have complete instructions on both sides of the logical operator.
So, if you want to check if something is equal to one thing or another, there are two common ways:
# Like this...
if favorite_fruit == 'grapefruit' or favorite_fruit == 'lemon':
print("That's a weird favorite fruit to have.")
# ...or like this.
if favorite_fruit in ('grapefruit', 'lemon'):
print("That's a weird favorite fruit to have.")
❌
if text == "google" or "chrome" or "google chrome":
✅
if text in ["google","chrome","google chrome"]:
✅
if text == "google" or text == "chrome" or text == "google chrome":
The second one that griff has (the one with the list) is ideal
Lets you add or remove things more easily
Actually
A set might be more efficient.... but it's kind of moot in this case
lower()
()
text = r.recognize_google(audio).lower()
@gentle flint what did you say?
I'm playing around with the tuning of a low whistle
it's heating up as I play it, thus getting longer
so the tuning is changing
what's a low whistle?
Brian playing his Low Eb MacNeil whistle at boxwood festival 2008.
yeh that sounds interesting
low whistle
Yeah
wooden whistles don't have that problem
its not efficient
hover over me baby
using the mic of computer
UwU @hushed elm
snugglez wuzzlez
765915388554641457-793517851007778847
looks at hen tie
hhhhh
765915388554641457-793517851007778847
oh boy
perfect
765913831612350545
Cock tie is not a wise thing to google 🤢
yeah i wouldn't recommend it
hey @eternal bough, did you get some sleep
@severe elm you interrupt people a lot
it is his pride and his joy
^^
yeah i saw
seriously?
i started the conversation about the plugins so i should have a admin-role like thing for this conversatoin
like https://kiwiirc.com/
they will hunt you
im korean but i hate kimchi
and eat you
lol
it'll definetly have some great use
what does Daemon mean in programming? I've seen it at a bunch of places now
it's a program running as a background process
In multitasking computer operating systems, a daemon ( or ) is a computer program that runs as a background process, rather than being under the direct control of an interactive user. Traditionally, the process names of a daemon end with the letter d, for clarification that the process is in fact a daemon, and for differentiation between a daemo...
nah, i'll keep mine. maybe i will photoshop it first and then use it
like, for instance, systemd
i've to think about it
so anything running in background, not necessarily a process
In Threading Daemon is a boolion which if false the thread terminates when the main thread is not active.
yeah, that's what I read initially, now Daemon in git
!paste
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.
anyone uses Gitlab?
Used to
so its worth it, to learn it, gonna do it
!e ```py
import threading
import time
class Thread(threading.Thread):
def init(self):
threading.Thread.init(self)
self.daemon = False
self.dt = time.time()
def run(self) -> None:
while True:
pass
thread = Thread()
for i in range(1000000):
pass
print(f"thread ran for {time.time()-thread.dt}(s)")
@lusty marsh :white_check_mark: Your eval job has completed with return code 0.
thread ran for 0.08312225341796875(s)
@lusty marsh Use #bot-commands if you don't mind
Oh no sorry
Sorry, I see that it's relevant
That's on me
This was a demo to Accelerator to show what Daemon means
we going tier 4 on the 31st
Yeah I see that now
rip work
Sorry, Sam
i knew what it meant in reference to concurrency
np
Discord doesn't require Admin rights
PermissionError: [WinError 5] Access is denied
if it doesn't have it, it installs into userland AppData
I'm assuming Windows
Wait, Is this Python issue?
You already have that.......
Windows has Cortana and you can enable "Hey Cortana"
how can I install gitlab in windows? https://bitnami.com/stack/gitlab
forget it 1gb, I think
run Virtual Machine with Gitlab
ok
.ova files, they run in VirtualBox?
yes
it will open the discord web
i know
not the actual app
yes
i need the actual app
I want to learn sql, so should I start with what is server, host, router, etc stuff, or just dive into making tables and working with queries (is that what they're called)?
256525845961637888
Database servers do not require auto increment PKs, only require PK is unique
you guys did paid internships?
Not I
sub.Popen("cmd.exe")
Microsoft Windows [Version 10.0.19041.685]
???????????????????
why is it giving me this output
i googled define jaded, comes out, bored or lacking enthusiasm, typically after having had too much of something 😂😂, so Rabbit's bored
like College = automatic great job
debt you take on in college will be easily paid because becuase it's not a ton of debt
🇩 Rabbit
if text == "cmd":
sub.Popen("cmd.exe")
import speech_recognition as sr
import os
import subprocess as sub
import webbrowser as web
r = sr.Recognizer()
while True:
with sr.Microphone() as source:
print("speak:")
audio = r.listen(source)
try :
text = r.recognize_google(audio).lower()
print("You said : ", format(text) )
except:
print("sorry cant hear anything")
if text == "exit" or text =="quit":
quit()
if text == "calculator":
sub.Popen("C:\\Windows\\System32\\calc.exe")
if text == "google" :
web.open("google.com")
if text == "youtube" :
web.open("youtube.com")
if text == "cmd":
sub.Popen("cmd.exe")
talk is cheap, show him the code
Microsoft Windows [Version 10.0.19041.685]
(c) 2020 Microsoft Corporation. All rights reserved.
what if you run your script in powershell? would it open cmd then?
more?
please sir, can I haf some more?
TypeError: open() missing required argument 'flags' (pos 2)
@cosmic thorn If you click on their name you can see the roles they have
It'll tell you if they have the voice-verified role
so, when i fork a repo on Github, I create a copy of that repo to work on, and when I make changes to that fork, the original repo person can pull my changes anytime when they think appropriate.
is that how it all works in companies?
No
ok, let me read the thing again
Companies don't fork internally
we branch
unless some other team is really really big jerks
Integration-Manager Workflow (heading)
That's Open Source with unknown people contributing to your code
at companies, you assume a coworker isn't a complete idiot hacking at your code
so coworkers have access to the origin/master, they just branch and work on their branches, and then merge later
ok, so no write access, they create pull requests, and the admin pulls in changes if they like em
Yea
Trying to get the right permissions, possibly filling out forms, having to ask multiple people, etc.
yeah in my country, if a coworker is a jerk, he (and believe me its a man) gets beaten outside probably, and if he goes to police "that guy slapped me", police goes "he slapped you cause you deserve it, now get the f*** outta here" 😂
same here
india, you know how crazy it can get here
Yeesh
Have it delivered?
i can’t start working until i finish it
what did they gave you?
You can always save some for later
Just save it as a snack for later
The sausage will keep. Eggs might end up a bit rubbery
i could but i typically don’t eat until 10 hours from now
im j tryna cram rn before i take my meds
Ahhh, okay yeah I feel you there
don't drink any water afterward for 30-40 min, I read somewhere, after eating if you drink water, it drains the acid in stomach, slows the digestion
can you tell me how and when we use import math or from math import i'm a student so i'm a beginner
oh that’s interesting
hearing Rabbit's talk, I read somewhere, "Companies don't want their employees to hve a creative thinking, they want em to work a certain way forever " 😂 , seems legit now
lol
yes that is facts
when using math tools, like sin, cos, tan, sqrt etc
numpy tho
yes@wise glade
how
oh okay thanks
is there a way to undo ```cmd
pipenv sync --dev
on a project?
Hey @rugged root did you forgot to wear your santa cap?
its nae chrimbo
Already took it off
what does git add --patch do?
I'll google it, just was wondering someone would tell me in a line or something, talking
Damn! You were looking amazing in it.
$action = New-ScheduledTaskAction -Execute "notepad.exe"
$trigger = New-ScheduledTaskTrigger -Weekly -AT "23:00" -RepetitionDuration "3:00:00" -RepetitionInterval "00:20:00" -DaysOfWeek 'Monday', 'Tuesday', 'Wednesday','Thursday'```
pls help I am getting error in this powershell script
At line:1 char:12
+ $trigger = New-ScheduledTaskTrigger -Weekly -AT "23:00" -RepetitionDu ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [New-ScheduledTaskTrigger], ParameterBindingException
+ FullyQualifiedErrorId : AmbiguousParameterSet,New-ScheduledTaskTrigger```
error
oh god, what is git add --patch, I did this, and
diff --git a/file2.py b/file2.py
index 83f38f3..d96e724 100644
--- a/file2.py
+++ b/file2.py
@@ -1 +1,3 @@
-print("master 1")
\ No newline at end of file
+print("master 1")
+
+print("hello")
\ No newline at end of file
(1/1) Stage this hunk [y,n,q,a,d,e,?]?
``` popped up
@ocean comet I just realized that your avatar is a potato and not a Twinkie
11:15
pls check my doubt
ok
@rugged root lmao
for refernce https://docs.microsoft.com/en-us/powershell/module/scheduledtasks/new-scheduledtasktrigger?view=win10-ps
am I the only one , who thinks its a ||turd||
wot seriously
Full 256 here m8
this is what I see
Yes that's what I see too lol
well if its a potato, I'm don't wanna eat it ever
Ahhhh, for some reason I thought it was from Stardew Valley
This is mine
I use this one though, right now
Nice
on the second monitor

this is sick
blinding at full screen brightness 😂
i gonna go to bed now, see you later, bye
wall.alphacoders.com <- this is where to go for the best stuff
let me show you guys something intresting, I took
pls help me with this
comments
nice
anyone grossed out, I could delete em
Damn what festival?
for the unknown , its a rat
Also here: https://www.youtube.com/channel/UChGJGhZ9SOOHvBB0Y4DOO_w that youtube channel
Welcome To Ryan's World!!! Ryan loves doing lots of fun things like pretend play, science experiments, music videos, skits, challenges, DIY arts and crafts and more!!!
Most of the toys we used to review are being donated to local charity
Ryan's Toys & Clothing at Walmart and Target!
Ryan's World
Ryan's Family Review: https://www.youtube.com...
I seriously read today, Nurse got vaccinated, and after 8-9 days was found positive for Corona
not kidding
nice
geez you've got everything
want a break from the ads
my background
@rugged root
I wish Borderlands was easier to play MP
whats mp?
Multiplayer
$action = New-ScheduledTaskAction -Execute "notepad.exe"
$trigger = New-ScheduledTaskTrigger -Weekly -AT "23:00" -RepetitionDuration "3:00:00" -RepetitionInterval "00:20:00" -DaysOfWeek 'Monday', 'Tuesday', 'Wednesday','Thursday'```
pls help I am getting error in this powershell script
error:-
```New-ScheduledTaskTrigger : Parameter set cannot be resolved using the specified named parameters.
At line:1 char:12
+ $trigger = New-ScheduledTaskTrigger -Weekly -AT "23:00" -RepetitionDu ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [New-ScheduledTaskTrigger], ParameterBindingException
+ FullyQualifiedErrorId : AmbiguousParameterSet,New-ScheduledTaskTrigger```
@rugged root
I really don't know. I only know basic PowerShell.
@whole bear you could use Unity aswell, it compiles to mobile too
I think the 3 you provided fit perfectly with the similar color tones
yeh
Javascript/Typescript or Java/Kotlin or C#
I really need top pick C# back up
well, Java/C# go to Bytecode
@whole bear https://www.transcrypt.org/
The Transcrypt Python to JavaScript compiler makes it possible to program lean and fast browser applications in Python. Transcrypt applications can use any JavaScript library and can also run on top of Node.js or be used in combination with Django.
you could try this
if you want to do web, javascript/Typescript
for MUDs in javascript
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
tech
jon duckett is the best author for frontend
frontend isn’t real
@limber blaze no u
This will end poorly
elon is doing it for the marketing
very poorly
@hushed elm Your keyboard is coming through
and he succeeded, cuz people are talking about it
ty
lots of information is bullshit, don't worry about it
Much like me explaining things I'm unsure of. However it's quality bullshit
yeh i guess
computers are our tools, it depends on how we use them
ok
do you know that in 10 years (from 2007 to 2017) the drones have replaced pilots and camera mans jobs
yo
thats automation
sup
not much hbu?
coding...
same hahaha
a course bro
F
hahahaha i finished about half of it
nice
especially in the US
its in the course
you shouldnt
theres a whole chapter on it bruv
lmao
when will i need it tho?
wow
kk
ye
not really
perhaps in more advanced projects
cz i didint really used it that much
i used it like 1 time
k
The Kessler syndrome (also called the Kessler effect, collisional cascading, or ablation cascade), proposed by NASA scientist Donald J. Kessler in 1978, is a theoretical scenario in which the density of objects in low Earth orbit (LEO) due to space pollution is high enough that collisions between objects could cause a cascade in which each colli...
thats seems interesting
its just statistical anyway
if it have a math proof
terrible thing to think
The crested pigeon (Ocyphaps lophotes) is a bird found widely throughout mainland Australia except for the far northern tropical areas. Only two Australian pigeon species possess an erect crest, the crested pigeon and the spinifex pigeon. The crested pigeon is the larger of the two species. The crested pigeon is sometimes referred to as a topkn...
Ah the joy of floats....
It's why I'm happy that Decimal exists: https://docs.python.org/3/library/decimal.html
Ahh....looking good @rugged root
?
I'm talking about the new profile picture
I mean
@hasty plinth Easier to talk to us in here
can anyone on voice help me with Flask Security?
@cedar briar #web-development or #cybersecurity might know better than we would
and the ppl trying to maintain social distancing while having a chat:
@sick cloud That wouldn't qualify as adequate physical distancing, in my book.
;-;
i'm not paying attention lol
its 9:05 pm for me....
its 04:05 pm here
mah_string = ""
Since 1929, the British Prime Minister has employed an official cat called The Chief Mouser to exterminate vermin at 10 Downing Street - discover their fascinating biographies.
Visit my new audio book channel 'War Stories with Mark Felton': https://youtu.be/xszsAzbHcPE
Help support my channel:
https://www.paypal.me/markfeltonproduction
https:/...
here is how you make ramen noodles for anyone who's google is broken
small can of mixed veggies

@rugged root voice shh would be useful now wouldn't it
You don't even know
lol
Voice disconnect button is ultra useful
i am so confusion
??
lmao
Rahmen
Rayman


