#voice-chat-text-1

1 messages · Page 105 of 1

stuck bluff
granite nova
#

i have school in the morning

granite nova
#

u can do that in python?

#

wooow

#

hahaha

#

thats nice im gonna save it

#

thx

#

anyways goodbye for now

peak frigate
#

LMAOOOOOOOOO someone just came in and asked me why a certain button wasn't working

#

he had popups disabled

#

this guy

#

he does data conversions for our customers...

#

y u no know how to use browser

golden marsh
peak frigate
golden marsh
sage shuttle
hidden cliff
dusty apex
#

@raven orbit i changed the messed up heading in indigo wikipedia

raven orbit
#

this is why I love wikipedia

misty sinew
#

I cant talk yet so im just going to talk here

raven orbit
#

that's ok, you can chat in here

misty sinew
#

ye

raven orbit
#

In August 2020, the site attracted attention after a Reddit post noted that the project contained an unusually high number of articles written in bogus Scots by a single prolific contributor without basic knowledge of the language. These articles were written with mostly English instead of Scots vocabulary and grammar and apparently using an online English-Scots dictionary to crudely translate parts of English Wikipedia articles. Over 23,000 articles, approximately a third of the entire Scots Wikipedia at that time, were created by this contributor, an American teenager. These articles have been described as "English written in a Scottish accent" and "very odd" to abject gibberish with nonsensical words and spellings not present in any Scots dialect. The incident was described as "a huge failure on Wikimedia’s part", with specific criticisms placed on Wikipedia's "labyrinthine back-end system" and a lack of coordination across smaller Wiki projects.

In response to the controversy, the Scots Wikipedia posted a banner saying "Followin recent revelations, Scots Wikipedia is presently reviewin its airticles for muckle leid inaccuracies."

#

Robert McColl Millar, professor in linguistics and Scottish language at the University of Aberdeen, has said that the affected articles displayed "a very limited knowledge both of Modern Scots and its earlier manifestations". Michael Dempster, director of the Scots Language Centre, contacted the Wikimedia Foundation over the possibility of building upon the Scots Wikipedia's existing infrastructure, describing the renewed interest in the site as having "potential to be a great online focus" for the Scots language.

misty sinew
#

im still banned from hypixel

#

it thought it was flying but i just jumped once lol

raven orbit
#

rip

misty sinew
#

they're also making a game @gray seal

peak frigate
#

so good lol. every time

golden marsh
sage shuttle
#

@noble ginkgo 👋

#

Good luck with your project!

noble ginkgo
#

event_queue = []

#

while True:

#

if event_queue not empty:

#

event = event_queue.pop()

#

call(event.function)

sage shuttle
#
def counter():
    count = 0
    while True:
        yield count
        count += 1
#
for i in count():
    print(i)
#
g = counter()  # Initialize the generator
# This is called priming
next(g)  # Now all internal variables and state have been started

val = next(g)  # 1
val = next(g)  # 2
val = next(g)  # 3
noble ginkgo
#

def gen():

sage shuttle
#

In computer science, the event loop is a programming construct or design pattern that waits for and dispatches events or messages in a program. The event loop works by making a request to some internal or external "event provider" (that generally blocks the request until an event has arrived), then calls the relevant event handler ("dispatches t...

noble ginkgo
#

count = 0

#

yield count

#

count += 1

#

yield count

#

count += 2

#

yield count

coarse hearthBOT
#

trio/_core/_traps.py lines 12 to 21

# Helper for the bottommost 'yield'. You can't use 'yield' inside an async
# function, but you can inside a generator, and if you decorate your generator
# with @types.coroutine, then it's even awaitable. However, it's still not a
# real async function: in particular, it isn't recognized by
# inspect.iscoroutinefunction, and it doesn't trigger the unawaited coroutine
# tracking machinery. Since our traps are public APIs, we make them real async
# functions, and then this helper takes care of the actual yield:
@types.coroutine
def _async_yield(obj):
    return (yield obj)```
sage shuttle
#
def counter():
    count = 0
    while True:
        increment = (yield count)
        count += increment
#
g = counter()

next(g)

val = g.send(1)  # 1
val = g.send(2)  # 1 + 2 = 3
val = g.send(4)  # 1 + 2 + 4 = 7
#

(yield count)

#
# THE EVENT LOOP
event_queue = []
while not event_queue:
    for event in event_queue:
        event()  # Run a bit of each event/coroutine/generator until yield
#
# THE EVENT LOOP
event_queue = []
while not event_queue:
    for event in event_queue:
        try:
            event()  # Run a bit of each event/coroutine/generator until yield
        except StopIterration:
            event_queue.remove(event)
misty sinew
#

i am back

#

finally

warped wind
#

wc back

visual totem
#

Brainfuck

misty sinew
#

The baddest programming language is python

YK

mild flume
#
>++++++++[<+++++++++>-]<.>++++[<+++++++>-]<+.+++++++..+++.>>++++++[<+++++++>-]<+
+.------------.>++++++[<+++++++++>-]<+.<.+++.------.--------.>>>++++[<++++++++>-
]<+.
pearl torrent
#

...its not python.

#

😔

misty sinew
#
print('Hello world')
pearl torrent
#

try running it with the bot

#

!e

coarse hearthBOT
#
Command Help

!eval [code]
Can also use: e

*Run Python code and get the results.

This command supports multiple lines of code, including code wrapped inside a formatted code
block. Code can be re-evaluated by editing the original message within 10 seconds and
clicking the reaction that subsequently appears.

We've done our best to make this sandboxed, but do let us know if you manage to find an
issue with it!*

misty sinew
#

im the best coder ever Cool

gray seal
#

!e

print("Hello world")
coarse hearthBOT
#

@gray seal :white_check_mark: Your eval job has completed with return code 0.

Hello world
misty sinew
#

!e ```
print("Node.js is better than python")

coarse hearthBOT
#

@misty sinew :white_check_mark: Your eval job has completed with return code 0.

Node.js is better than python
mild flume
#

Different purposes

#

Python is a language, Node.js is a backend

misty sinew
#

just joking

#

but node.js is also an really good language

pearl torrent
mild flume
#

Right right

gray seal
misty sinew
#

noooo

pearl torrent
#

glazed hemlock 🍩

misty sinew
#

im not the impostor

#

I've heard about an coding lanugage named EmojiCode

pearl torrent
misty sinew
#

I cannot handle that

ember stream
misty sinew
#

i know german

#

im turkish but i learned german

#

but now i regret that language

#

i hate that language and i also hate germany itself

#

and i also regret living here

inland marlin
misty sinew
#

I had an Discord Bot which had 100 Servers and was verified but then somebody hacked my discord account pp_Cry

fluid edge
#

Yoo

mild flume
#

How goes it

fluid edge
#

Meh lol

misty sinew
#

i love coding

#

but my friends are telling me, that i'll never be a good coder.

mild flume
#

Don't listen to critics. You can do anything if you work incredibly hard

fluid edge
#

You need new friends.

misty sinew
gray seal
mild flume
wary fable
#

anyone want some wildfire smoke?

fluid edge
misty sinew
#

germany is getting flooded right now

mild flume
#

Still?

misty sinew
#

yep+

#

My uncle almost drowned twice

mild flume
#

Yikes. He okay now?

misty sinew
#

But he saw two people drowning they drowned in the car so there was no way they could escape

wary fable
#

"Let's build a major american city 12 feet below sea level, what could possibly go wrong?"

mild flume
#

"Let's build a nation that's the same"

mild flume
misty sinew
#

im tired

mild flume
#

Race Zone

#

I think

misty sinew
#

A smooth criminial

true valley
misty sinew
mild flume
#

!vban 628010001922785319 Intentionally making loud noise into your microphone is unacceptable. Continuing to make said noises after being told not to makes it that much worse. Your voice privileges have been revoked.

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied voice ban to @fluid fox permanently.

wary fable
#

edgy

misty sinew
#

micheal jackson

mild flume
#

!mute 628010001922785319 3d Disrespecting staff by calling them "bitch" after you've received another infraction isn't the way to make friends. Please review our #rules and #code-of-conduct before you return.

coarse hearthBOT
#

:incoming_envelope: :ok_hand: applied mute to @fluid fox until <t:1627846234:f> (2 days and 23 hours).

true valley
#

"It is not safe to go back outside until 30 minutes after the last thunder,"

misty sinew
dusty apex
#

3 days

mild flume
#

Possibly. Regardless it's handled

wary fable
misty sinew
#

i have to go

mild flume
#

Have a good one

wary fable
#

we get winter storms like this several times a year

rare kayak
#

does anyone here used python in raspberry pi ?

lament olive
#

farenheit

#

can anyone translate the temperatures to real units xd

wary fable
#

freedom units

lament olive
#

maybe make a python script

rare kayak
#

i wanted somehelp

wary fable
#

it's easy:

rare kayak
#

like please xD

lament olive
#

lmao

rare kayak
#

raspberry pi؟

#

?*

#

anyone?

lament olive
#

kelvin is really easy to go to celsius tho

#

I'd actually prefer kelvin instead of Fahrenheit

violet venture
#

South has more

inland marlin
violet venture
#

Rednecks

mild flume
true valley
#

Redneck is a derogatory term chiefly, but not exclusively, applied to white Americans perceived to be crass and unsophisticated, closely associated with rural whites of the Southern United States. Its usage is similar in meaning to cracker (especially regarding Texas, Georgia, and Florida), hillbilly (especially regarding Appalachia and the Ozar...

#

The term characterized farmers having a red neck caused by sunburn from hours working in the fields. A citation from 1893 provides a definition as "poorer inhabitants of the rural districts ... men who work in the field, as a matter of course, generally have their skin stained red and burnt by the sun, and especially is this true of the back of their necks".

still pond
#
const express = require('express');
const app = express();
const port = 8000;
app.use(express.json());
app.post('/store', (req, res) => {
    const a = req.body;
});
app.listen(port, () => console.log(`App started`));
//gonna do stuff with a here
```Just tryna access `a` outside of the app.post @mild flume
wary fable
#

cries in ECMAScript 2016

still pond
#

fhaslkfsakld

mild flume
#

I'm looking

wary fable
#
import { opine } from "https://deno.land/x/opine@1.6.0/mod.ts";

const app = opine();

app.get("/", function(req, res) {
  res.send("Hello World");
});

app.listen(3000, () => console.log("server has started on http://localhost:3000 🚀"));
#

try this way

still pond
#

I guess I gotta use express tho

inland marlin
wary fable
still pond
#

I can put the whole code inside of app.post...

#

cLeAn cOdE

true valley
#

!paste

coarse hearthBOT
#

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.

wary fable
#

Wisconsin had some interesting weather at 2am

#

Europeans in the chat, how selfish are the people on the trains there?

mild flume
#

Opening so many RDP connections

#

I have so many desktops on my desktop

sleek parrot
#

GPIO you meant?

#

@rare kayak

mild flume
#

What's GPIO?

sleek parrot
rare kayak
#

I still don't totally understand it

mild flume
#

That'll tell you what you need to know

peak frigate
thick marsh
#

class MobileApplications(models.Model):
title = models.CharField(max_length=70, null=False, blank=False, default="Coming Soon")
description = models.CharField(max_length=70, null=True, blank=True)
image = models.ImageField(null=False, blank=False, default="coming_soon.jpg", upload_to='mobile_app_prod_pics')
alt = models.TextField(max_length=500, null=False, blank=False, default="Mobile Application")
class Meta: # You are adding this to get rid of from the +s feature of django.https://docs.djangoproject.com/en/3.1/topics/db/models/ to see the feature search for "%(class" and you will see it's adding s.
verbose_name_plural = "Mobile Applications"

def __str__(self): # You are using this function to name data base objects so as long as there is this function the object that you created won't be named as Activities object
    """String for representing the Model object."""
    if self.title:
        return self.title
    else:
        print("No title")
mild flume
#

!code

coarse hearthBOT
#

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.

dusty apex
#

!code

#

damn my net

#

;-;

mild flume
#
this
thick marsh
#
    title = models.CharField(max_length=70, null=False, blank=False, default="Coming Soon")
    description = models.CharField(max_length=70, null=True, blank=True)
    image = models.ImageField(null=False, blank=False, default="coming_soon.jpg", upload_to='mobile_app_prod_pics')
    alt = models.TextField(max_length=500, null=False, blank=False, default="Mobile Application")
    class Meta: # You are adding this to get rid of from the +s feature of django.https://docs.djangoproject.com/en/3.1/topics/db/models/ to see the feature search for "%(class" and you will see it's adding s.
        verbose_name_plural = "Mobile Applications"

    def __str__(self): # You are using this function to name data base objects so as long as there is this function the object that you created won't be named as Activities object
        """String for representing the Model object."""
        if self.title:
            return self.title
        else:
            print("No title")
dusty apex
thick marsh
#
class MobileApplications(models.Model):
    title = models.CharField(max_length=70, null=False, blank=False, default="Coming Soon")
    description = models.CharField(max_length=70, null=True, blank=True)
    image = models.ImageField(null=False, blank=False, default="coming_soon.jpg", upload_to='mobile_app_prod_pics')
    alt = models.TextField(max_length=500, null=False, blank=False, default="Mobile Application")
    class Meta: # You are adding this to get rid of from the +s feature of django.https://docs.djangoproject.com/en/3.1/topics/db/models/ to see the feature search for "%(class" and you will see it's adding s.
        verbose_name_plural = "Mobile Applications"

    def __str__(self): # You are using this function to name data base objects so as long as there is this function the object that you created won't be named as Activities object
        """String for representing the Model object."""
        if self.title:
            return self.title
        else:
            print("No title")
#

/media/mobile_app_prod_pics/mobile_application_1.jpg

#

src="/media/mobile_app_prod_pics/coming_soon.jpg"

mild flume
#

Do you have this on a github repo?

thick marsh
#

/media/coming_soon.jpg

violet venture
#

If the image is in a different directory, the default argument will need to have the full path to the image [file], right?

mild flume
#

Or does it base it from the opening file

#

I'm always unclear about that

coarse hearthBOT
#

Hey @thick marsh!

It looks like you tried to attach file type(s) that we do not allow (.html). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a.

Feel free to ask in #community-meta if you think this is a mistake.

mild flume
#

!paste

coarse hearthBOT
#

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.

thick marsh
#
{% endblock %}
{% block mobileBox %}
    {% if allMobileApps.first.title %}
        <h1>Mobile Applications</h1>
        <div class="product_slide_show">
            {% for ma in allMobileApps %}
            <div class="ApplicationFrame">
                <img src="{{ ma.image.url }}" alt="{{ ma.alt }}">
                <h3>{{ma.title}}</h3>
                <p>{{ma.description}}</p>
            </div>
            {% endfor %}
        </div>
    {% endif %}
{% endblock %}

#

def storeManager(request):
"""View Function for home page of the personal webpage"""

# All Meta Descriptions
allMetaDescription = MetaDescription.objects.all()

# Main Pic
allMainPics = MainPic.objects.all()

# News pictures
allNewsPics = NewsPics.objects.all()
numNewsPics = NewsPics.objects.all().count()

# All mission and vision text objects
allMissionAndVisionTexts = MissionAndVision.objects.all()

# All mobile product objects
allMobileApps = MobileApplications.objects.all()

# All desktop product objects
allDesktopApps = DesktopApplications.objects.all()

# All mobile product objects
allWebApps = WebApplications.objects.all()

# All SocialMediaLinks
allSocialMediaLinks = SocialMediaLinks.objects.all()

context = {
    'allMetaDescription': allMetaDescription,
    'allMainPics': allMainPics,
    'allNewsPics': allNewsPics,
    'numNewsPics': numNewsPics,
    'allMissionAndVisionTexts': allMissionAndVisionTexts,
    'allMobileApps': allMobileApps,
    'allDesktopApps': allDesktopApps,
    'allWebApps': allWebApps,
    'allSocialMediaLinks': allSocialMediaLinks,
}

return render(request, 'store_manager/home.html', context=context)
#
def storeManager(request):
    """View Function for home page of the personal webpage"""

    # All Meta Descriptions
    allMetaDescription = MetaDescription.objects.all()

    # Main Pic
    allMainPics = MainPic.objects.all()

    # News pictures
    allNewsPics = NewsPics.objects.all()
    numNewsPics = NewsPics.objects.all().count()

    # All mission and vision text objects
    allMissionAndVisionTexts = MissionAndVision.objects.all()

    # All mobile product objects
    allMobileApps = MobileApplications.objects.all()

    # All desktop product objects
    allDesktopApps = DesktopApplications.objects.all()

    # All mobile product objects
    allWebApps = WebApplications.objects.all()

    # All SocialMediaLinks
    allSocialMediaLinks = SocialMediaLinks.objects.all()

    context = {
        'allMetaDescription': allMetaDescription,
        'allMainPics': allMainPics,
        'allNewsPics': allNewsPics,
        'numNewsPics': numNewsPics,
        'allMissionAndVisionTexts': allMissionAndVisionTexts,
        'allMobileApps': allMobileApps,
        'allDesktopApps': allDesktopApps,
        'allWebApps': allWebApps,
        'allSocialMediaLinks': allSocialMediaLinks,
    }

    return render(request, 'store_manager/home.html', context=context)
hidden cliff
mild flume
#

@sleek parrot What's up?

sleek parrot
#

is there some noise in back?

mild flume
#

Of yours?

sleek parrot
#

from my side

thick marsh
#
class MobileApplications(models.Model):
    title = models.CharField(max_length=70, null=False, blank=False, default="Coming Soon")
    description = models.CharField(max_length=70, null=True, blank=True)
    image = models.ImageField(null=False, blank=False, default="mobile_app_prod_pics/coming_soon.jpg", upload_to='mobile_app_prod_pics')
    alt = models.TextField(max_length=500, null=False, blank=False, default="Mobile Application")
    class Meta: # You are adding this to get rid of from the +s feature of django.https://docs.djangoproject.com/en/3.1/topics/db/models/ to see the feature search for "%(class" and you will see it's adding s.
        verbose_name_plural = "Mobile Applications"

    def __str__(self): # You are using this function to name data base objects so as long as there is this function the object that you created won't be named as Activities object
        """String for representing the Model object."""
        if self.title:
            return self.title
        else:
            print("No title")
hidden cliff
#

@thick marsh make the image field nullable, then add a getImage function that checks if image is null and if it is, return a default image, otherwise return the image

thick marsh
#
def getImage(self):
        if self.image == null:
            return self.image.default="mobile_app_prod_pics/coming_soon.jpg"
        else:
            self.image
hidden cliff
#

function () {} changes this, but () => {} doesn't

devout nimbus
#
  width: 100%;
  height : 10%;
  background-color : rgb(92,82,102);
  position:fixed;
  top:0;
  left: 0;
  margin: 0 0 0 0;
}

body{
  background-color : rgb(123,123,164);
}

ul#nav li{
  float:left;
}

ul#nav li a{
  text-decoration : none;
  padding: 30px;
  margin-right: 5;
  display: block;
  text-align:center;
  color : rgb(255,255, 255);
  font-size:16pt;
}```
thick marsh
#
def getImage(self):
        if self.image == null:
            return self.image.url
        else:
            self.image
smoky lark
#
class TheGambler():
  """ Class for gambling your money away """
  def __init__(* args, ** kwargs):
    self.money = kwargs["money"]
sage shuttle
#
class TheGambler():
  """Class for gambling your money away."""
  def __init__(*args, **kwargs):
    self.money = kwargs["money"]
#

pls

devout nimbus
#
  width: 100%;
  height : 10%;
  background-color : rgb(92,82,102);
  position:fixed;
  top:0;
  left: 0;
  margin: 0 0 0 0;
}

body{
  background-color : rgb(123,123,164);
}

ul#nav li{
  float:left;
}

ul#nav li a{
  text-decoration : none;
  padding: 30px;
  margin-right: 5;
  display: block;
  text-align:center;
  color : rgb(255,255, 255);
  font-size:16pt;
}```
hidden cliff
#
class TheGambler():
  """ Class for gambling your money away """
  def __init__(*  args, *  *  kwargs):
    self.money = kwargs["money"]
mild flume
golden marsh
#

!e ```py
import random

class TheGambler():
def init(self, money):
self.money = money
def gambler(self, money):
result = random.choice(([0] * self.money) + ([1] * self.money))
if result == 0:
print("The Gambler has won")
self.money += money
return 0
elif result == 1:
print("The opponent has won")
self.money -= money
return money*2
tg = TheGambler(10)
opponent = 4
opponent = tg.gambler(opponent)
print(opponent)

coarse hearthBOT
#

@golden marsh :white_check_mark: Your eval job has completed with return code 0.

001 | The Gambler has won
002 | 0
mild flume
#

Guys

#

Play nice

#

I'm low on patience today

sage shuttle
#

yes

golden marsh
golden marsh
#

well, depending on who bets more. but the gambler always bets everything and only looses as much as the other person bets. the only way to win against TheGambler is to repeatedly bet with a crazy multitude of TheGamblers money

hidden cliff
peak frigate
#

@hearty heath it's that snake dude

hearty heath
#

Hello, @devout nimbus would you like to screen-share?

#

!stream 750025574558335017

coarse hearthBOT
#

✅ @devout nimbus can now stream until <t:1627595944:f>.

hearty heath
#

There's a margin-right?

golden marsh
#

seems decent

#

or vw and vh

peak frigate
hearty heath
#

Erm, I don't remember enough about CSS to confidently say what's wrong.

peak frigate
#

is there an easy way to copy all the CSS afterwards?

sage shuttle
#

[] == false is true....

#

But ```js
if ([]) { console.log('Truthy?!')}

#

Logs............

misty sinew
#

hello

#

am new to coding

devout nimbus
#

<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Resu-Me</title>
  <link rel="stylesheet" href="../static/style.css">
</head>

<body>
    <ul style="list-style-type:none;" id="nav">
      <li><a href="#">HOME</a></li>
      <li><a href="#">ABOUT</a></li>
      <li><a href="#">SEARCH</a></li>
      <li><a href="#">CONTACT US</a></li>
    </ul>
</body>
</html>```
#
  width: 100%;
  height : 10%;
  background-color : rgb(92,82,102);
  position:fixed;
  top:0;
  left: 0;
  margin: 0 0 0 0;
}

body{
  background-color : rgb(123,123,164);
}

ul#nav li{
  float:left;
}

ul#nav li a{
  text-decoration : none;
  padding: 30px;
  margin-right: 5;
  margin-bottom:auto;
  margin-top: auto;
  display: block;
  text-align:center;
  color : rgb(255,255, 255);
  font-size:16pt;
}```
hidden cliff
mild flume
#

Is Brave Chromium based?

hearty heath
elder wraith
mild flume
#

TIL

elder wraith
#

About only browsers that are not is Safari and Firefox

mild flume
#

Vivaldi

#

Wait, did Opera turn Chromium?

elder wraith
#

Yes

mild flume
#

Huh

elder wraith
mild flume
#

Oh wow

#

That's way more than I thought

elder wraith
mild flume
#

Fair point

#

If my jokes aren't causing pain then I'm not telling them right

hidden cliff
#
ul#nav{
    width: 100%;
    height : 10%;
    background-color : rgb(92,82,102);
    position:fixed;
    top:0;
    left: 0;
    margin: 0 0 0 0;
  }
  
  body{
    background-color : rgb(123,123,164);
  }
  
  ul#nav li{
    float: left;
    display: flex;
    height: 100%;
  }
  
  ul#nav li a{
    text-decoration : none;
    margin-right: 3em;
    margin-bottom: auto;
    margin-top: auto;
    display: flex;
    align-items: center;
    color : rgb(255,255, 255);
    font-size:16pt;
  }
hearty heath
#

Oh yeah, it's nice.

mild flume
#

Do I kill the defrag so I can set up the sfc and head home?

#

I mean I'm getting overtime...

elder wraith
mild flume
#

True, I just have to figure out how

elder wraith
#

Start-Sleep 10800;Sfc command

mild flume
#

Fair point

elder wraith
#

It will wait for 3 hours and launch it

mild flume
#

What would I do if I wanted to do the DISM thing as well

elder wraith
#

Otherwise, does defrag start a process?

#

Does SFC reboot?

mild flume
#

It does not

elder wraith
#

Then another ;

mild flume
#

Typically it's DISM then SFC

elder wraith
#

; means next line without pipelining

#

It’s from C#

mild flume
#

So it'll do one after another upon completion of each task?

elder wraith
#

Think ; like java would if you had 5 different things on same line

#

; means end of line move on

#

| is piping so data will get dragged

mild flume
#

Gotcha

#
Start-Sleep 10800; DISM /Online /Cleanup-Image /Restorehealth; sfc /scannow
#

Would that do it?

elder wraith
#

Should

mild flume
#

And now to set it and forget it

#

I'm heading home. Thanks Rab

hidden cliff
misty sinew
#
Ignoring exception in command work:
Traceback (most recent call last):
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 85, in wrapped
    ret = await coro(*args, **kwargs)
  File "c:\Users\Kaden\Documents\Bot\home.py", line 24, in work
    cursor.execute(f"SELECT money FROM main WHERE user_id = {ctx.author}")
sqlite3.OperationalError: near "#3957": syntax error

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\bot.py", line 939, in invoke
    await ctx.command.invoke(ctx)
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 863, in invoke
    await injected(*ctx.args, **ctx.kwargs)
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 94, in wrapped
    raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: OperationalError: near "#3957": syntax error```
upper dragon
#

integer

misty sinew
#
Ignoring exception in command work:
Traceback (most recent call last):
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 85, in wrapped
    ret = await coro(*args, **kwargs)
  File "c:\Users\Kaden\Documents\Bot\home.py", line 27, in work
    cursor.execute(f"INSERT INTO main (money, user_id) VALUES ({random.randint(75, 100)}, {ctx.author.id}")
sqlite3.OperationalError: incomplete input

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\bot.py", line 939, in invoke
    await ctx.command.invoke(ctx)
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 863, in invoke
    await injected(*ctx.args, **ctx.kwargs)
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 94, in wrapped
    raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: OperationalError: incomplete input```
#
Ignoring exception in command work:
Traceback (most recent call last):
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 85, in wrapped
    ret = await coro(*args, **kwargs)
  File "c:\Users\Kaden\Documents\Bot\home.py", line 27, in work
    cursor.execute(f"INSERT INTO main (money, user_id) VALUES ({random.randint(75, 100)}, {ctx.author.id}")
sqlite3.OperationalError: incomplete input

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\bot.py", line 939, in invoke
    await ctx.command.invoke(ctx)
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 863, in invoke
    await injected(*ctx.args, **ctx.kwargs)
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 94, in wrapped
    raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: OperationalError: incomplete input
upper dragon
#
@bot.command()
async def work(ctx):
    
    db = sqlite3.connect('main.sqlite')
    cursor = db.cursor()
    cursor.execute(f"SELECT money FROM main WHERE user_id = {ctx.author.id}")
    result = cursor.fetchone()
    
    if not result:
        cursor.execute(f"INSERT INTO main (money, user_id) VALUES ({random.randint(75, 100)}, {ctx.author.id})")
    else:
        cursor.execute(f"UPDATE main SET money = money + {random.randint(75, 100)} WHERE user_id = {ctx.author.id}")
        
    db.commit()
#
@bot.command()
@commands.cooldown(1, 5, commands.BucketType.user)
async def work(ctx):
    
    db = sqlite3.connect('main.sqlite')
    cursor = db.cursor()
    cursor.execute(f"SELECT money FROM main WHERE user_id = {ctx.author.id}")
    result = cursor.fetchone()
    
    if not result:
        cursor.execute(f"INSERT INTO main (money, user_id) VALUES ({random.randint(75, 100)}, {ctx.author.id})")
    else:
        cursor.execute(f"UPDATE main SET money = money + {random.randint(75, 100)} WHERE user_id = {ctx.author.id}")
        
    db.commit()
misty sinew
#
Ignoring exception in command work:
Traceback (most recent call last):
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\bot.py", line 939, in invoke
    await ctx.command.invoke(ctx)
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 855, in invoke
    await self.prepare(ctx)
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 788, in prepare
    self._prepare_cooldowns(ctx)
  File "C:\Users\Kaden\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 772, in _prepare_cooldowns
    raise CommandOnCooldown(bucket, retry_after)
discord.ext.commands.errors.CommandOnCooldown: You are on cooldown. Try again in 2.23s```
upper dragon
#
@bot.command()
@commands.cooldown(1, 5, commands.BucketType.user)
async def work(ctx):
    db = sqlite3.connect('main.sqlite')
    cursor = db.cursor()
    cursor.execute(f"SELECT money FROM main WHERE user_id = {ctx.author.id}")
    result = cursor.fetchone()

    if not result:
        cursor.execute(f"INSERT INTO main (money, user_id) VALUES ({random.randint(75, 100)}, {ctx.author.id})")
    else:
        cursor.execute(f"UPDATE main SET money = money + {random.randint(75, 100)} WHERE user_id = {ctx.author.id}")

    db.commit()


@work.error
async def work_error(ctx, error):
    if isinstance(error, commands.errors.CommandOnCooldown):
        await ctx.send("You are on cooldown")
#
    db = sqlite3.connect('main.sqlite')
    cursor = db.cursor()
    cursor.execute(f"SELECT money FROM main WHERE user_id = {ctx.author.id}")
    result = cursor.fetchone()
#

await ctx.send(f"You have {result[0]} coins!")

true valley
#

@cinder seal here

cinder seal
#

hello

#

sorry i am new to this . i dont know how it works

#

this voice channels

true valley
#

!voice

coarse hearthBOT
#

Voice verification

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

cinder seal
#

let me chat you in private. i was to ask a question.

#

its was asked in my interview before .

#

no . job .

#

fresher

#

internship

#

i just want to know how would you solve.

true valley
cinder seal
#

Got it.

#

thank you so much @true valley

true valley
#

@steel root here

steel root
#

ok

#

but why cant i unmute

true valley
#

!paste

coarse hearthBOT
#

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.

steel root
#
RuntimeWarning: Enable tracemalloc to get the object allocation traceback
#
  channel.send("@everyone" + str(link))
RuntimeWarning: Enable tracemalloc to get the object allocation traceback
#
>>> ```
#

await channel.send("@everyone" + str(link))

true valley
steel root
#

asyncio.channel.send?

#

@true valley

true valley
#

import asyncio

steel root
#

await channel.sen

#

asyncio.channel.send("@ everyone" + str(link))

#

await asyncio.channel.send("everyone" + str(link))
^
SyntaxError: 'await' outside async function

true valley
#
#

What does the await keyword do?
The await operator is applied to a task in an asynchronous method to suspend the execution of the method until the awaited task completes. The task represents ongoing work. That means the await operator blocks the execution of the for loop until it get a responds from the server, making it sequential.

steel root
#

async def cycRecommend():
time.sleep(10)
await recommend(link)

#

async def recommend(link):
channel = client.get_channel(channel)
await asyncio.channel.send("everyone" + str(link))

true valley
coarse hearthBOT
#

Hey @steel root!

Uh-oh! It looks like your message got zapped by our spam filter. We currently don't allow .txt attachments, so here are some tips to help you travel safely:

• If you attempted to send a message longer than 2000 characters, try shortening your message to fit within the character limit or use a pasting service (see below)

• If you tried to show someone your code, you can use codeblocks
(run !code-blocks in #bot-commands for more information) or use a pasting service like:

https://paste.pythondiscord.com

steel root
#

here u go\

#

thats the code

mild flume
#

Taking a glance

steel root
#

async def cycRecommend():
asyncio.sleep(10)
recommend(link)

#

def recommend(link):
channel = client.get_channel(channelID)
await channel.send("everyone" + str(link))

mild flume
#

!traceback

coarse hearthBOT
#

Please provide a full traceback to your exception in order for us to identify your issue.

A full traceback could look like:

Traceback (most recent call last):
    File "tiny", line 3, in
        do_something()
    File "tiny", line 2, in do_something
        a = 6 / 0
ZeroDivisionError: integer division or modulo by zero

The best way to read your traceback is bottom to top.

• Identify the exception raised (e.g. ZeroDivisionError)
• Make note of the line number, and navigate there in your program.
• Try to understand why the error occurred.

To read more about exceptions and errors, please refer to the PyDis Wiki or the official Python tutorial.

steel root
#

async def cycRecommend():
    while True:
        asyncio.sleep(10)
        recommend("link")


#
  cycRecommend()
RuntimeWarning: Enable tracemalloc to get the object allocation traceback
bot has logged in
#
                       ^
SyntaxError: 'await' outside function
>>> ```
#

async cycRecommend()

#

?

mild flume
steel root
#
#
async def on_ready():
    print("bot has logged in")
    await cycRecommend()```
#
    channel = client.get_channel(channelID)
    await ctx.send("@everyone" + str(link))```
sage shuttle
mild flume
#

@steel root Would you mind turning on Krisp/Noise Suppression if it's not already on

steel root
#

client = discord.Client()

sage shuttle
#

client does not have commands

mild flume
sage shuttle
#

Client is the bare minimum Discord API wrapping

#

commands.Bot has some extra spice 👌

steel root
#

lol ok

#

client = discord.Bot()

#

???

sage shuttle
mild flume
#
from discord.ext import commands

bot = commands.Bot(command_prefix="!")
steel root
#

call back must be a coroutine

#

?

#
    while True:
        await asyncio.sleep(10)
        recommend("link")
#
async def recommend(ctx: commands.Context,link):
    channel = client.get_channel(channelID)
    await ctx.send("@everyone" + str(link))```
#
@bot.command
async def recommend(ctx: commands.Context,link):
    channel = client.get_channel(channelID)
    await ctx.send("@everyone" + str(link))```\
#
from discord.ext import commands

client = discord.Client()
bot = commands.Bot(command_prefix="!")

@client.event
async def on_ready():
    print("logged in")

@bot.command(name="test")
async def recommend(ctx = commands.Context):
    await ctx.send("test")


client.run(token)```
#

@runic knoll

runic knoll
#

what's the error?

devout nimbus
#

app = Flask(__name__)

@app.route('/')
def index():
    return render_template('index.html')

if __name__ == '__main__':
    app.run(debug=True)```
#

<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Resu-Me</title>
  <link rel="stylesheet" href="../static/style.css">
</head>

<body background>
  <h1>A new way to get Volunteer Oppurtunities to your prefrences!</h1>
  <div class="backgroundImg">
    <img src = "../static/assets/volunteering_icon.png" alt = "Img" width = "300" id="backgroundImg"/>
  </div>
  <ul style="list-style-type:none;" id="nav">
    <li><a href="#"> <img src = "../static/assets/logo.png" alt = "Logo" height = "50"/></a></li>
    <li><a href="#">HOME</a></li>
    <li><a href="#">ABOUT</a></li>
    <li><a href="#">SEARCH</a></li>
    <li><a href="#">CONTACT US</a></li>
  </ul>
</body>
</html>```
violet venture
knotty solar
#

look, it's from my old project

mild flume
#

Huh, neat

#

Do you need the type or is that implied

devout nimbus
knotty solar
#

<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles.css') }}">

crude spruce
#

What

wary tree
misty sinew
#

hello

#

were are you

#

umm wait

#

can you see voice logo infront of voice chat?

#

this one

#

ok on mineat

#

what is meneat?

#

mineat*

#

leave it

#

i am going to play minecraft

#

i am here

#

how old are you

solid mortar
#

hey

#

guys

#

how's

#

it going?

half valve
#

For your comfort

#

I hv 4 best rated projects in tht website

#

with SOURCE CODE

#

For freshi only

wary fable
raven saddle
#

hey i am trying to speak

#

but don't have the permission

#

what should i do

wary fable
#

This is the other software I like to use, unfortunately it is windows-only

raven saddle
#

ok

#

so what are u talking about guys

wary fable
raven orbit
#

they would be infieriated

wary fable
#

yup, that's the path alright

peak frigate
misty sinew
#

@raw wren
do u hate nosql databases or just json?

#

its just cause its easy and peeps dont have cs degrees

#

not saying u do

#

But id say most programmers have a very surface level understand of the technology involved

#

and learn just enough to get what they need done

#

Cause of looking at peoples code on github.

#

I will admit

#

its probs based on conjecture

#

well defs

#

My point is people only take the time to learn the minimum amount to get what they need done.

#

If ur learning JS ur going to learn about JSON before ur learn about ORM or general dbs

#

anybody else hate ux/ui design as much as me?

visual totem
#

beat me

#

yup

#

reason you need to make sure all your cabnleswork

warm tendon
golden marsh
mild flume
#

Legit thought you said butter count

golden marsh
void plover
#

XD

peak frigate
#

.catify

golden marsh
#

False equivalence is a logical fallacy in which an equivalence is drawn between two subjects based on flawed or false reasoning. This fallacy is categorized as a fallacy of inconsistency. Colloquially, a false equivalence is often called "comparing apples and oranges."

peak frigate
small zenith
#

razer

#

Cr is like the 1

peak frigate
#

ᓚla ᘏ yo ᗢ ttu

golden marsh
#

la yo ttu

peak frigate
#

ᘌ mi ᘇ na

#

ᘌᘇ

small zenith
#

cool

golden marsh
meager oyster
golden marsh
#

Hanunó'o

warm tendon
#

!charinfo ᓚᘏᗢ

coarse hearthBOT
#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

golden marsh
#

!charinfo ᓚᘏᗢ

coarse hearthBOT
golden marsh
#

python3.7
python2.7
python3.9

royal shore
#

4.0

small zenith
#

ford

#

almost

royal shore
#

[ print('f life') for f in life]

meager oyster
golden marsh
#
class sliceabledict(dict):
    def __getitem__(self, val):
        if isinstance(val, slice):
            return slice(self[val.start], self[val.stop])
        return super().__getitem__(val)
#

l[1:3]

#

slice(1, 3, None)

#
span = (1, 5)
l[span[0]:span[1]]
l[slice(*span)]
mild flume
#

!server

coarse hearthBOT
#
Server Information

Created: <t:1483877013:R>
Voice region: europe
Roles: 88
Member status: status_online 52109 status_offline 183751

Members: 235860

Helpers: 122
Moderation Team: 32
Admins: 15
Owners: 3
Contributors: 39

Channels: 294

Category: 32
News: 9
Staff: 68
Stage_Voice: 1
Text: 176
Voice: 8

oblique bridge
#

oops code help voice 1

mild flume
#

@oblique bridge I mean it's fine, it's a personal beef I have with them

#

Most of the time they're the awful like.... Microsoft Sam level

oblique bridge
#

i see yea

#

sadly real-time pleasant voice generation isn't a thing

mild flume
#

True dat

oblique bridge
#

non-real time human-level voicegen just became a thing

#

but not real time

golden marsh
#
def replace_char(s: str, c: str, i: int, l: int) -> str:
    s = s.split()
    s[l] = s[l][:i] + c + s[l][i+len(c):]
    return s

credit chrisj

#
"abcdef"[2:4] = "yoo" # "abyooef"`
mild flume
#

Wait no

#

What

#

What

golden marsh
mild flume
golden marsh
leaden lark
#

steno keyboard

peak frigate
#

^??

leaden lark
#

you can use this keyboard with plover

peak frigate
halcyon notch
#

restarting pc brb

golden marsh
mild flume
#

I can't brain that way

leaden lark
#

actual demo here

peak frigate
#

oooooooooooooooooooooooooooooooooooooo

mild flume
leaden lark
smoky lark
mild flume
leaden lark
mild flume
#

Today I learned

golden marsh
smoky lark
leaden lark
peak frigate
#

@leaden larkso when do we make this acct into the real one? :P

leaden lark
#

never

mild flume
#

Have they given you any kind of timeline?

leaden lark
#

I haven't heard a peep

#

at this point I don't think I'll ever even get an answer

golden marsh
mild flume
#

Joe able to pull any strings

leaden lark
#

doesn't seem like it

peak frigate
#

i guess spot for owner is open spaced_out_thinking

mild flume
#

Not it

#

I just don't have the time to dedicate. As much as I really really really really wish I did

mild flume
#

Also not really owner material

peak frigate
#

ᓚᘏᗢ we'll let the cat govern

mild flume
#

I'm flaky

mild flume
#

!stream 307534762724032512

coarse hearthBOT
#

✅ @flat torrent can now stream until <t:1628102000:f>.

smoky lark
true valley
mild flume
#

!stream 307534762724032512 1h

coarse hearthBOT
#

❌ @flat torrent can already stream.

golden marsh
#
'use strict';
const _0x1d68 = ["553179Mkbfao", "258715dCIwlT", "10636colWQO", "1dvEjbj", "973519syoGeA", "<img src='moon.png' />", "innerHTML", "3aULsEb", "getElementById", "parse", "classList", "Someone heard you...", "1888769WikiVq", "heard", "672535xgoiZK", "44kkiVRI", "1600957FenaCg", "add", "1MiYFBJ", "message"];
/**
 * @param {number} url
 * @param {?} whensCollection
 * @return {?}
 */
function _0x213b(url, whensCollection) {
  /** @type {number} */
  url = url - 493;
  let _0x1d687e = _0x1d68[url];
  return _0x1d687e;
}
const _0x28a2b0 = _0x213b;
(function(data, oldPassword) {
  const toMonths = _0x213b;
  for (; !![];) {
    try {
      const userPsd = parseInt(toMonths(494)) * parseInt(toMonths(501)) + -parseInt(toMonths(493)) + -parseInt(toMonths(500)) * parseInt(toMonths(506)) + -parseInt(toMonths(499)) + parseInt(toMonths(495)) + parseInt(toMonths(511)) * parseInt(toMonths(497)) + parseInt(toMonths(502)) * -parseInt(toMonths(503));
      if (userPsd === oldPassword) {
        break;
      } else {
        data["push"](data["shift"]());
      }
    } catch (_0x23416f) {
      data["push"](data["shift"]());
    }
  }
})(_0x1d68, 982332);
const rep = document[_0x28a2b0(507)](_0x28a2b0(498));
const generateKey = () => {
  const complete = _0x28a2b0;
  return btoa(String(Date[complete(508)](new Date))["substr"](0, 7) + "ligma");
};
rep[_0x28a2b0(509)][_0x28a2b0(496)](_0x28a2b0(512)), rep[_0x28a2b0(505)] = _0x28a2b0(504), alert(_0x28a2b0(510));
mild flume
#

@silver linden https://paste.pythondiscord.com/diwawahaga.py So what I did was loaded from a file called config.json, which if it doesn't exist will be created. Every time you do the update, it'll save whatever configuration things you have into that file. If there is no data in the file or the file previously didn't exist, it won't update the rich presence the first time.

#

Make sense?

silver linden
#

nice

mild flume
#

I mean the most important thing is making sure you understand what I'm doing with it

silver linden
#

i understand

#

u put it to json

#

and check json

#

for load next time

#

its right ?

mild flume
#

Yeppers

#

@flat torrent

mild flume
#

Will be back on in the van. Got a pickup to do

halcyon notch
#

MTYyODEwNGxpZ21h

tranquil quest
#

what are you trying to make any ways

visual totem
#





halcyon notch
# golden marsh ```js 'use strict'; const _0x1d68 = ["553179Mkbfao", "258715dCIwlT", "10636colWQ...
'use strict';
let obfuscationArray = ["672535xgoiZK", "44kkiVRI", "1600957FenaCg", "add", "1MiYFBJ", "message", "553179Mkbfao", "258715dCIwlT", "10636colWQO", "1dvEjbj", "973519syoGeA", "<img src='moon.png' />", "innerHTML", "3aULsEb", "getElementById", "parse", "classList", "Someone heard you...", "1888769WikiVq", "heard"];

function wf(url) {
  url = url - 493;
  let result = obfuscationArray[url];
  return result;
}

console.log(obfuscationArray)

const rep = "sugma";

const generateKey = () => {
  return btoa(String(Date[wf(508)](new Date))["substr"](0, 7) + "ligma");
};

rep[wf(509)][wf(496)](wf(512)), rep[wf(505)] = wf(504), alert(wf(510));
silver linden
unborn violet
devout nimbus
#

x=6 ,perpendicular line that passes through 4,2

#

y=4

coarse hearthBOT
#

@lusty jungle Please don't try to ping @everyone or @here. Your message has been removed. If you believe this was a mistake, please let staff know!

scenic mason
#

lmao the filter

#

I find it funny

shut sedge
#

hi humans

sleek parrot
tranquil quest
#

pity error

gritty palm
#

pity error

sacred charm
#

!verifyvoice

devout frost
#

!verifyvoice

plain obsidian
#

@misty sinew hi

misty sinew
#

how long would it take for python to loop 63508377600 times

autumn raft
#

MORDHAU is a medieval first & third person multiplayer slasher. Enter a hectic battlefield of up to 80 players as a mercenary in a fictional, but realistic world, where you will get to experience the brutal and satisfying melee combat that will have you always coming back for more.Features: Massive battles: From small-scale engagements to 80-pla...

Price

$29.99

Recommendations

76539

Metacritic

81

▶ Play video
whole finch
#

@raw wren you said it's made your day but it's still like 11 for you

mild flume
#

We're done now if you guys want to come back up

autumn raft
#

haha

#

!ban rabbit Better Discord is against ToS

elder wraith
autumn raft
#

haha, I know

autumn raft
elder wraith
unborn plume
#

@wintry sinew I'm following your tutorials, they are an absolute gem. Thanks for making these ! lemon_hyperpleased

peak frigate
#

@wintry sinewi started them too:)

unborn plume
#

The one @peak frigate posted

wintry sinew
#

@autumn raft you're cool

true valley
#

35,786 km (22,236 mi) above mean sea leve

autumn raft
#

LOLOL, ty. You are cool as well. I mean it angy

wintry sinew
golden marsh
wintry sinew
#

25

elder wraith
#

Google Meet is free now if you need more

wintry sinew
#

live share supports 10 viewers, but no channel limit

true valley
#

Exosphere
This is the upper limit of our atmosphere. It extends from the top of the thermosphere up to 10,000 km (6,200 mi).

wintry sinew
true valley
#

@golden marsh it appears that the geosynchronous satellites will be in the "vacuum of space". Though apparently there is a traces amount of hydrogen between us and the moon. So not "absolutely" a vacuum, devoid of any interference, but the light should be able to travel above 10km.

wintry sinew
#
ajsnigrutin

So if I understand correctly, they want to scan all your photos, stored on your private phone, that you paid for, and they want to check if any of the hashes are the same as hashes of child porn?So... all your hashes will be uploaded to the cloud? How do you prevent them from scanning other stuff (memes, leaked documents, trump-fights-cnn-gif,.....

true valley
#

import hashlib

string = "hello world."
print(string)

hashed_string = hashlib.sha256(string.encode()).hexdigest()
print(hashed_string)

elder wraith
golden marsh
halcyon notch
raven orbit
#

it's ghashtly

mild flume
#

fashtly

#

Because English

golden marsh
wintry sinew
true valley
#

here is apples technical description of what they are doing.

mild flume
#

Damn it, I'm the only mod+ here

#

Hnnnggggg it's only at 64% installed

#

This is very frustrating

true valley
#

Apple says they use the NeuralHash algorithm

golden marsh
#

doubt it

true valley
#

This is the one that they specified in their paper.

golden marsh
#

are you sure?

halcyon notch
golden marsh
#

thats not the same

peak frigate
#

LOL

mild flume
#

Now he just needs two phones so he can play some incremental games

halcyon notch
elder wraith
mild flume
#

@ember jolt I think you're getting echo

true valley
mild flume
#

Cheers

#

They're really good

elder wraith
raven orbit
#

slightly odd review

mild flume
#

Well that's a thing

unborn plume
#

Wait which should be GOTY ?

golden marsh
elder wraith
unborn plume
#

@raven orbit madlad

elder wraith
bright steeple
#

rabbit, what is your title?

#

Infra Engineer?

true valley
# golden marsh nope, but it seems to be part of applse vision framework

I think this it is the same algorithm they are using. From Apple statement: "The hashing technology, called NeuralHash, analyzes an image and converts it to a unique number specific
to that image. Only another image that appears nearly identical can produce the same number; for
example, images that differ in size or transcoded quality will still have the same NeuralHash value.
Before an image is stored in iCloud Photos, an on-device matching process is performed for that image
against the database of known CSAM hashes"

raven orbit
#

Dr. Carrot

unborn plume
golden marsh
# true valley I think this it is the same algorithm they are using. From Apple statement: "The...

Given an image (like Scream), Neuralhash makes small perturbations to visually encode a unique signature of the author. Which is able to be decoded even after extreme transformations (like a cellphone photo of the encoded image). Our secure watermarking scheme represents significant advances in protecting content ownership and piracy prevention on the Internet.
that
is
not
any
hashing
technology

bright steeple
#

Yo Rabbit do you talk to your data people a lot?

#

How do they version their cleaning\ETL\EDA projects along with the code that corresponds to that?

mild flume
#

God that's going to fuck with me

#

Since you have to click the mines instead of not

raven orbit
#

this is the minefield for reference

mild flume
halcyon notch
stuck bluff
#

Next up: "I broke my phone trying to fix my phone. "

halcyon notch
elder wraith
#

Non-citizens or Aliens (Latvian: nepilsoņi) in Latvian law are individuals who are not citizens of Latvia or any other country, but who, in accordance with the Latvian law "Regarding the status of citizens of the former USSR who possess neither Latvian nor other citizenship", have the right to a non-citizen passport issued by the Latvian governm...

true valley
mild flume
elder wraith
halcyon notch
warm tendon
#

call the judge and get some fudge

mild flume
#

pip install git+https://github.com/yfujieda/techcookbook.git

misty sinew
#

@mild flume you're the best ❤️

true valley
hearty heath
true valley
elder wraith
#

We back on Apple or neuralhash

true valley
elder wraith
true valley
#

Ah

#

Both of the Macbook air and the Macbook Pro use M1 8-core

halcyon notch
raven orbit
#

@halcyon notch new pfp, huh

mild flume
#

@tardy knot You still only have a very small amount of messages. You have to meet the criteria listed in #voice-verification

slate stag
#

termios

mild flume
elder wraith
slate stag
halcyon notch
#
go mod init example
misty sinew
#

@mild flumehi]

halcyon notch
thorny pendant
#

when i copy some stuff from one document to another it is pasting it into one line

#

what should i do to copy it into the same format

#
import re
f = open("train.txt", "r")
a = open('trainArabic.txt', 'w')

x = f.read()

# simple example
pattern = "<dialogue>(.*?)</dialogue>"
string = x
substring = re.findall(pattern, string, flags=0)

final = ' '.join([str(item) for item in substring])
a.write(final)
a.close()
print(final)
#

this is the copy code

gray seal
#

i accidentally deleted my scene i have re created it and don't know what the components were that i used this has messed up the physics of my game can someone please check my unity project and tell me what im missing

#

I think i speak for everyone in this and that most of us cant be bothered to help on a whole project no matter how big or small

halcyon notch
#

people asked to get the m$ c/c++ lsp server running on vim/emacs
this was the response

halcyon notch
#

@elder wraith

#

It's MIT licensed

#

xd

elder wraith
#

Sure, but I love seeing MS employees trolled emac users. It’s troll

hearty heath
#

Hello

elder wraith
halcyon notch
#
Know Your Meme

Programming Socks is a term given to specific types of knee socks and thigh highs which became notable for often being worn by femine looking and crossdressing men who do computer programming for a hobby or profession. Most commonly, the socks are horizontally striped in pastel colors or colors associated with the LGBTQ. The trope led to the ris...

mild flume
#

@hidden cliff It's not pulling a Rabbit if you bother to tell us you're doing it

raven orbit
#

Selective laser melting (SLM), also known as direct metal laser melting (DMLM) or laser powder bed fusion (LPBF), is a rapid prototyping, 3D printing, or additive manufacturing (AM) technique designed to use a high power-density laser to melt and fuse metallic powders together. To many, SLM is considered to be a subcategory of selective laser si...

#

@halcyon notch

true valley
peak frigate
#

and just melt it all lol

mild flume
#

I lack a furnace

raven orbit
violet venture
#

"Change nickname" on the web client

unique raptor
peak frigate
#

hallo

#

i can't believe it's past 5 already..

#

holyshit

#

busy

halcyon notch
unique raptor
#

sudo apt install your mom

#

warning your mom is a big pakege

unique raptor
#

yes

halcyon notch
#
Ubuntu
Kubuntu
Xubuntu
Ubuntu MATE
Ubuntu Budgie```
#

Openbox and i3

unique raptor
#
if your good in c++, your good at c++
mild flume
#

Okay seriously, can we just fucking stop making fun of other users?

#

I'm like this close to handing out mutes

robust yarrow
#

Is there any chance any of you are decent with C#?

mild flume
#

Possibly, but it still might be better to ask in a C# specific server. I have a list of some if you want me to pass it your way

robust yarrow
#

That would be amazing, I haven't found a single one, only general coding servers

#

thank you so much!

mild flume
#

I hope it helps

raven orbit
#

@halcyon notch

robust yarrow
#

I've found very little help in the server, but it's a new resource for me to use. Thank you so much <3

#

Ah yes, Judaism = Christianity
best hot-take I've heard all day, and my granddad's a Rabbi.

#

"press ctrl+alt+f7, or f6 I forget which" but if you get it wrong it deletes your entire OS

#

oh cool I technically qualify as a prophet

#

wait do messages here count towards the 50 necessary to speak in vc?

#

awesome, thank you

#

we'll get there eventually

#

*she

#

all good lmao

peak frigate
robust yarrow
#

your discord follows ToS and is therefore boring

#

lmao

#

that is also fair

#

yeah I definitely qualify as a Prophet, then :)

peak frigate
peak frigate
robust yarrow
#

no homo yet

mild flume
robust yarrow
#

oop my bad

mild flume
#

Just letting you know

peak frigate
#

so this documentary is about a guy from ohio who was accused of being ivan the terrible, a nazi death camp leader in treblinka

#

he gets extradited to Israel and goes on trial for war crimes

#

don't spoil it for me bc i haven't finished the documentary

raven orbit
#

Balaam (; Hebrew: בִּלְעָם‎, Standard Bīlʻam Tiberian Bīlʻām) is a diviner in the Torah (Pentateuch) whose story begins in Chapter 22 of the Book of Numbers (Numbers 22). Every ancient reference to Balaam considers him a non-Israelite, a prophet, and the son of Beor. King Balak of Moab offered him money to curse Israel (Numbers 22–24), but Bala...

robust yarrow
#

what in the seven layers of the Fold ;w;

peak frigate
#

even tho it's all already happened and i could look it up

mild flume
#

Yeah not exactly breaking news

#

The fold?

peak frigate
#

lolol but the documentary has me in suspense!!

robust yarrow
#

long story short, I have an entire religion given to me directly by one of its pantheon's goddesses, and their equivalent to "Hell" is called "The Fold"

peak frigate
#

is he this terrible nazi? or is he an innocent victim of mistaken identity and kgb conspiracy?

mild flume
#

Fair enough

peak frigate
#

do you already know the answer?

unborn prairie
#

I WANNA KILL MYSELF

robust yarrow
#

so yeah. Since it has Seven Levels, I say "By the Fold," or, "What in the Seven Levels of the Fold"

mild flume
#

Makes sense

robust yarrow
#

in the corresponding language, "Vaj et'Folu" and "Ko'e en'et'Lejra'ok setek ko et'Folu" respectively

halcyon notch
raven orbit
misty sinew
#

@raven orbit ar u from brazil?

raven orbit
#

lol no

#

other side of the world

#

the Netherlands

misty sinew
#

your accent is similar to that of Brazil

raven orbit
#

k

uneven ridge
#

"cuz English"

#

very fun

#

download more internet

mild flume
#

Always a good policy

unique raptor
uneven ridge
#

I've got 1.3 TB of stuff not including games 😔

#

mostly screen recordings

#

yes i want tiny numbers

#

isnt military time like a whole different thing?

#

like 1400

#

not 14

uneven ridge
#

Akshully

#

not okay 😠

#

always be coding

#

never sleep

unique raptor
unique raptor
uneven ridge
#

lol

raven orbit
unique raptor
raven orbit
#

a🍐

mild flume
#

Just keep it tasteful

#

But please don't make it the entire chat.

#

I feel like that's a reasonable request

misty sinew
#

🤠

raven orbit
raven orbit
#

koffiezetapparaat

halcyon notch
raven orbit
#
Changes with nginx 0.8.0                                         02 Jun 2009

    *) Feature: the "keepalive_requests" directive.

    *) Feature: the "limit_rate_after" directive.
       Thanks to Ivan Debnar.

    *) Bugfix: XLST filter did not work in subrequests.

    *) Bugfix: in relative paths handling in nginx/Windows.

    *) Bugfix: in proxy_store, fastcgi_store, proxy_cache, and fastcgi_cache
       in nginx/Windows.

    *) Bugfix: in memory allocation error handling.
       Thanks to Maxim Dounin and Kirill A. Korinskiy.


Changes with nginx 0.7.59                                        25 May 2009

    *) Feature: the "proxy_cache_methods" and "fastcgi_cache_methods"
       directives.

    *) Bugfix: socket leak; the bug had appeared in 0.7.25.
       Thanks to Maxim Dounin.

    *) Bugfix: a segmentation fault occurred in worker process, if a request
       had no body and the $request_body variable was used;
       the bug had appeared in 0.7.58.

    *) Bugfix: the SSL modules might not built on Solaris and Linux;
       the bug had appeared in 0.7.56.

    *) Bugfix: ngx_http_xslt_filter_module responses were not handled by
       SSI, charset, and gzip filters.

    *) Bugfix: a "charset" directive did not set a charset to
       ngx_http_gzip_static_module responses.
halcyon notch
raven orbit
#

@halcyon notch

#

starting at 03:30

halcyon notch
#

Fractal broccoli isn't real, it cannot hurt you.

#

Fractal broccoli -

boreal sinew
#

wow

true valley
#

??

raven orbit
true valley
#

why is there so much cosmetic surgury?

raven orbit
#

god knows

halcyon notch
#

bimbofication

raven orbit
#

@gray seal help

#

how do I use unity

#

pls tell me

#

am stuck

#

pc says unity and discord are incompatible

gray seal
#

Your mums incompatible @raven orbit

raven orbit
#

with you? that's a good thing

gray seal
hearty heath
#

Is anyone speaking? 👀

halcyon notch
#

yea

hearty heath
gray seal
hearty heath
#

Ah, I was deafened 😄

#

I keep doing that Facepalm

#

What unholy creation

halcyon notch
#

lemon_blush
👗
programmingsocks

#

UwUmon

hearty heath
#

Needs hat 👒

#

👀

halcyon notch
#

🕍 SleepingNade

hearty heath
#

Can be a little bit arbitrary yeah.

halcyon notch
#

devhtml > python

#

emacs > logo_pycharm

#

The holy scriptures

raven orbit
hearty heath
#

You know you can make pad Thai using Woostershire sauce 🤔

raven orbit
#

Worcestershire sauce

hearty heath
#

It's basically fish sauce and tamarind.

#

Which are the ingredients of pad Thai.

#

Wait, isn't that how it's spelled? 😄

halcyon notch
#

Padthaistershire sauce

#

Thaistershire

hearty heath
#

Ohh, "Worcestershire". I was just spelling it how I pronounce it.

halcyon notch
#

llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch

#

grzegorz brzęczyszczykiewicz

raven orbit
#

bowls

halcyon notch
#

*hugs @raven orbit *

hearty heath
#

I use Kakoune

#

As of like 2 weeks ago.

#

Used to use Vim 👀

#

Rollercoaster Tycoon was written in assembly apparently 😄

#

You would be reported to Discord Trust & Safety.

#

Yep. We have to.

#

I don't actually know what Discord does in those circumstances. But can we change the subject please.

#

Rapture, can you not?

halcyon notch
hearty heath
#

Guys, can we not tell each other to stfu please.

raven orbit
#

penetration tester?

hearty heath
#

No we do not! 😄

raven orbit
gray seal
raven orbit
#

ofc

#

unconditionally

hearty heath
#

You might not want to have this conversation in front of me 😄

#

I do not condone this resistance movement 😄

#

I have been meaning to try Julia.

#

Looks interesting.

#

Go, apparently ¯_(ツ)_/¯

#

But they're "switching to Rust"

halcyon notch
#

go > python

hearty heath
#

Er, sorry, not appropriate.

#

Brb.

raven orbit
#

no

robust yarrow
#

I have decided that "fuck programming"

#

I can't get my Android Emulator to boot
someone suggested "delete all the .img files in its directory" or something similar, so I did that
but when I booted, it said the save data was corrupted
Well I factory-reset the emulator
and this time it just outright crashed
I would like to screm pls

raven orbit
#

feel free

robust yarrow
#

RAAAAAAAA

raven orbit
#

congrats

robust yarrow
#

thancc

#

I hav screm

raven orbit
#

welcc

robust yarrow
#

le happi

raven orbit
#

I'm cold as fuck

robust yarrow
#

I offer you blankie

raven orbit
#

it's 14 degrees in my room

robust yarrow
#

jesus
Fahrenheit or Celsius

raven orbit
#

celsius

robust yarrow
#

I forget which of those is worse so idk why I asked

raven orbit
#

lol

robust yarrow
#

oh yeah @halcyon notch I ended up trying to make the app in C#

#

several times

halcyon notch
#

Oof

robust yarrow
#

not that I'm any better at C#

#

but it did go better than js

#

"newfound"

#

"I'm not a pro gamer, I'm mentally ill" is going in my quotes channel

#

I agree, but still

#

after all, I'm both (kind of)

#

shush

raven orbit
#

k

robust yarrow
#

the world needn't know

#

comes back tomorrow to my discord having been deleted

#

wait did you say "Can you update it by injecting Worcestershire Sauce"

raven orbit
#

yes

robust yarrow
#

I respect you

raven orbit
#

pump up the version by hydraulic force

robust yarrow
#

dude I can't wait until I'm not suppressed

#

I think I have a lot to add to these conversations :)

raven orbit
#

lol

#

@robust yarrow go verify

hearty heath
#

Yeah, you should be able to verify @robust yarrow

coarse hearthBOT
#

Voice verification

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

robust yarrow
#

I did just now ;w;

raven orbit
#

excellent

hearty heath
#

I hope so 👀