#ot1-perplexing-regexing
1 messages · Page 206 of 1
@lilac glade I’ve heard the netgear nighthawk is like the best gigabit router
Looks terrible though
Word
I don't need a Netgear Nighthawk when I already have enough equipment to outscale it in 5 years.
Tru
As long as it’s got the hardware to keep up. Googling around says quad core @ 3ghz is your target processor speed for gigabit
Yeah I haven't looked at how well PFsense handles throughout in a long while
😎
Most likely, this wouldn't need to host a complete gigabit throughput, but it would be nice having the speed to do whatever I want.
Yeah
Honestly even at 100mb I don’t feel limited
Like 100gig games are done in an hour
Sometimes even faster
Also, running things alongside it like Squid, Snort, and PFBlocker would take up a bit of processor speed as well.
Would also probably do ad-blocking on the router-level, just because fuck ads.
Also, when these are the plans I get, I kinda just want the gigabit plan because it's the least money/Mbps that I'm paying for.
It's also not like it would go to waste, because I'm a big-ticket internet user, my brother is constantly online doing things web-browsingy, and my sister only uses the internet for Youtube.
In the end, it makes sense not to.
Not to mention my 2nd sister, who - actually, I don't know what her bandwidth usage is like.
But, that's what we'll have Squid for.
Better to cache data than to keep downloading it every time.
on that m19 draft hype now
https://secure.milb.com/tickets/form.jsp?formid=madison_team_name_vote&formcode=form§ion=team3 these team names wtf. Zip is 35758 if it’s behind a wall for you
made a minecraft server
configured plugns and stuff
too lazy to actually go onto the server and build things
instead I'm playing with cowsay
Anyone ever made their own fish tank?
No
fish tanks don't really seem like a diy kind of thing - small ones are easy to buy, and large ones require serious engineering
since it holds easily hundreds and potentially thousands of pounds of water, depending on size
true, but since when did easiness become a requirement of DIY projects
a very large aquarium may require reinforcement of the floor below it
Thank you again for your patience. I will be with you as soon as possible.
This is a really stupid question.
I'm trying to put my discord bot up on discordbots.org, but I have no idea how to describe it
My bot doesn't do anything
Why do you want to put it up then
For some ideas, mine does
- self-role assignment of select roles configured by staff
- automatic moderation through configurable rules, for example "allow n messages in m seconds, when violated apply role x for y seconds"
- a clean command with argparse support:
uhhh what else does it do
basic mod commands, but every bot has those nowadays
temporary roles are a nice thing
Cause your bot is actually useful
i'd argue otherwise 😛
@client.command()
async def quiet(ctx, child: MemberConvert):
await ctx.send("Keep it down, {0.mention}, my love.".format(child))
# await ctx.send("Keep it down, " + message.mentions[0].mention + ", my love.")
@client.command()
async def scold(ctx, child: MemberConvert):
await ctx.send("Listen to {0.mention}, {1.mention}".format(ctx.author, child))
@client.command()
async def cookies(ctx):
await ctx.send("If you kids be nice, I'll make you some cookies!")
I just saw my friends making bots and I wanted to do that too
The idea that I came up with was Your loving, caring mother.
haha
Hey, you could try to make custom commands
So users can, for example, run ```py
!addcmd cookies "If you kids be nice, I'll make you some cookies!"
idk where else to ask, but just one small thing, if i am writing bot for Discord, which stores info of others (even if only in RAM), do i have to write privacy policy for it?
If you collect information with your bot, and somehow, someway, your bot makes it into EU netspace, then yes.
Discord's ToS actually does require that as well
Oh, does it now?
yeah
Just to cover for GDPR?
It's been there since way before GDPR
they're not enforcing it because half of the staff thinks it's a dumb idea
but they might
They probably should, tbh.
True @sinful copper but I was thinking of like a 400gallon tank or so. Big enough to be expensive that DIY becomes worth but not quite like massive scale
ok but
that is 3000 pounds of water
which is well into the zone where you'd want to reinforce your floor, too.
Also true
I mean I'm not here to tell you how to live your life, but like there's a reason they're expensive
insurance also might not like a DIY aquarium that size
Yeah for sure. Just seemed at least a little doable on the surface
i mean, people do build them
but this isn't like a coffee table. you need to know that the glass, and the frame, and your floor, can support the pressure/weight
Guess first step is checking with landlord about the floor before either buying or making one
....lol, you rent?
definitely coordinate all this stuff with your landlord and insurance (and if you don't already have renter's insurance, you will need it, and it'll probably go over better with your landlord if you assure them that you will get the necessary insurance coverage)
My lease actually has a clause saying you need a specific insurance rider for a waterbed - and i'd say a fishtank is at least comparable to a water bed in terms of the potential damage it can do if it goes wrong.
Yeah. I looked at the lease when I first started wanting one about s year ago and it’s not mentioned at all either way. But I do have a fatty policy
I'd guess that a big fish tank is the kind of thing that insurance would want to know you have, and premium goes up
For sure could be
(and if it's DIY they might want it professionally inspected)
Insurance predators lol
eh
I had to fight Liberty Mutual in court for a year, so I am biased
400 gallons (3338 lbs) is a lot of water
that's, like, four or five whole bathtubs
imagine all of that on your floor
But think of all the cool fish
them too
on your floor, that is
just saying, it is a risk, so having insurance specifically for it is sensible
Yeah for sure
In my experiences it's a ton of work to maintain and fish are boring AF
Especially salt water
theyre so pretty tho
oh it says names
i cant read
also
realizes you're the owner
WELL I'LL BE ON MY WAY
formats hard drive
joseph where's your crown btw
Yeah, we're not Teensies
we're Troika
tfw your position as owner causes a member to format their hard disk
this is what I want this community to be like

Also I hear thunder and see lightning so I'm going to close my windows before it reaches in and tickles me
good idea
I didn't vote for him
no the owners are just never not summoned
it's not like we never show our faces in chat, we talk here like regular users do lol
"Some positive integers are arranged in an equilateral
triangle with n numbers in its base like the one shown in the figure below for
n = 4. The problem is to find the smallest sum in a descent from the triangle
apex to its base through a sequence of adjacent numbers (shown in the figure
by the circles). Design a dynamic programming algorithm for this problem
and indicate its time efficiency" can anyone help with this? its a tree in the form of
2
5 4
1 4 7
8 6 9 6
i know
theres a project euler problem for this lol
ok so the idea is
to start at the the top
lets say its (0, 0)
er that didnt make sense
im not sure how to explain it
basically you can think of this as min_triangle(triangle[0][0] + min(min_triangle(0, 1), min_triangle(1, 1))
Yeah I understand the algorithm just wasn't sure how to write it in a DP table
I think I got it though
hold up ill show you my solution maybe
with open('p067_triangle.txt', 'r') as f:
triangle = [list(map(int, i.split())) for i in f.readlines()]
def max_triangle(a, b, cache={}):
if (a, b) not in cache:
cache[a, b] = (triangle[a][b] + max(max_triangle(a + 1, b), max_triangle(a + 1, b + 1))
if len(triangle) > a else 0)
return cache[a, b]
print(max_triangle(0, 0))```
(spacing wise)
this class is hard
why did you make a gif of a gif?
no the question is
why did he make a gif of my gif
you didn't even gif correctly
you missed out half the gif
New selena album 
https://sharpweb.me.uk/i/tli8u.png @lone otter rate outta 10 this time ;0
Because
Why not!?!?!?!
also
What to do with your USB flash drive: Run Linux
bad idea?
Or worth it for fun?
Anyone wanna give me the I’m a python developer so I don’t understand big words explanation of Prims algorithm
if you are referring to the graph traversing algorithm
no not touching fkin graphs again
Yes that
Finds the shortest way to the next point?
Sorta a cheap version of the quickest way to go through 20 points
Most algorithm stuff is kinda bad
can you disable spacebar scrolling in a pdf in chrome?
can use rainmeter
@lone otter It's Docky
I've tried a few and only Cairo does what I want
But it is a little brittle
🤔 found a good interview question
I'll just ask the problem.
So let's say I have a 100*100 grid. You can move across these points on the grid, one position at a time.
If 20 people move randomly along the grid, they leave black squares where they have been
My question: what is the most efficient way for the 21st person to move to a non-black square in the least number of moves?
Lmao
@rough sapphire I'm thinking you move in a snake pattern
Like a swirl
Not sure that's the most effective tho
If you don’t know the starting positions it’s not possible I don’t think. You can only give a %
Even then I think your best bet is to run simulations because it’s non deterministic because of random moves
@steel fox a better way to describe it is imagine there is 100 by 100 white squares
At random, 50 are filled in
From any point on the grid, what's the best way to avoid landing on the filled in squares.
E.g just moving left
Moving in a circle,
Etc
That's what I was looking got
For*
Let's see if it is.
No not exactly
When I get on my PC I'll be able to make diagrams the explain it
i 100% agree with this channel's name
@vivid junco You need a new playing status, friend
Thanks. :P
Sorry completely forgot about that
so any of u good with statistics get how sutff like MSE, NRMSE, PSNR and SSIM work? (or at least the first 2) so i can ask some questions on them , cuz im using them, and theyre working for me, but idk how to choose which is best 😂
its nice that you guys have left this question open for me, but you can still talk.... been up for like 2h and no one has answered, and i gtg sleep soon
if this question is stil here when i wake up, ill be very happy and very sad 😂
that's a bunch of acronyms alright
the functions towards the bottom of the table
but i figured anyone who was good enough at stats to understand them would recognize them from their acronyms
probably, but stats experts don't usually prowl off topic
why aren't you asking in #data-science-and-ml?
do it do it!
Not Travelling
I have this question (think of the numbered sets more like a dictionary of sets) - anyway is there a better channel to ask this? Not sure it’s data science...
Didn’t we have a really good algorithm guy?
this is for bisk's disk shop only
Ooh k - i’ll show it to him tomorrow, he’s asleep now (or should be)
yo howdy welcome to bisks disk shop the shop with the most of bisk disks
available online as biskettes diskettes
What sort of disks can I buy here @gentle moss
Large disks, small disks, red disks, blue disks, round disks, square disks, floppy disks, hard disks
disks that are solid, disks that are not
disks that go round, and disks that do not
Can I buy disks with a solid state?
You can buy disks so don't be late!
we don't take money as payment
precious metal disks
I will take all the disks.
including the high risk disks?
you know your laptop is designed well when you get two cuts trying to open the back cover
that's called tamper-proof
nah it's just shitty plastic pins that won't pop
@gentle moss u on?
damnit bisk its normal uk time, u should be on :/
bisk has more than us in life
ok fuck youtube - i get youtube premium, then go to holiday in greece and it revokes my premium cuz its not a avilable in this country :/
at least it didnt delete my downloads
but now i cant continue playing when i close the app :/
f u :/
11:12] undy: oh boy they did the screws-under-rubber-feet shit
[11:12] undy: I hate that garbage
that shit
hiding screws
is fucking evil
the worst ones are when they hide it under the stickers
and you gotta put a hole in it
which makes tampering obvious
no
cleaning my house
so can u help in a bit?
damn ok :/
@sullen thorn have you heard of a vpn
yes... but i dont wanna have to use a vpn just to use youtube premium :/
@sullen thorn algorithms? Bisk isnt into algorithms at all as far as i know
bisk can tell you stuff about real life things like networking linux etc but no algoritthms
Hi guys quick question, trying to install antergos, the docs say to use the windows boot\efi but I guess that I don't have it on my partitions, do I just make it?
is this an efi machine? @rough sapphire
the partition schema doesnt look like one
just making sure
Could be dev/sda1
Make sure you're booted in UEFI mode
sda1 is ~100mb and in FAT so it seems likely
Yeah, that could be it
is the boot flag set on UEFI partitions?
¯_(ツ)_/¯
An EFI System Partition (ESP) is simply a FAT32 partition with a GUID type code of C12A7328-F81F-11D2-BA4B-00A0C93EC93B (or 0xEF on an MBR disk).
check the guid i guess
No GRUB2 is just the bootloader it's gonna install
I'd just mount it and poke around
no dont poke it
Yeah but you'd use systemd-boot on an efi system, wouldn't you?
Yeah you can't select it from the installer lol
Ah ok
It's legacy
they're tasty
i bin talken in tha wrong boof
Green eggs and ham are better
monty python reference
The origin of SPAM. If you like this video, support Monthy Python buying their DVD.
anyone have a good example of how to submit a bug report to a bug bounty program?
y'never read dr seuss?
Dr. Seuss is amazing
everyone was a toddler when they read Dr. Seuss that's not an excuse of any kind
potat
agreed
lel
Lol
lul
@lilac glade Thanks again! I figured best not to clutter the help thing. Spent easily an hour searching for a fix to that damn mistake of mine. I really appreciate the extra guidance too. Kinda excited to get started. \o/
Not a problem.
There are a lot of us here that are willing to help.
I look forward to getting to know everyone better.
what's up
hyelo
what are you up to
can't speak for everyone else but I'm running around in help channels
it is a Fun Thing To Do
late meeting
Can't take these mosquitoes
This discord is a lot more lively at all different hours then these others I've seen
the Europeans start waking up in 3 or 4 hours, but we are actually entering quiet time now

the last trickle of sunlight drains over the Pacific, and Normal Humans on the North American continent begin to go to sleep
Btw Lucy. You go college ? Just curious
I wish I was normal, I always tell myself im gunna start a real sleep schedule and that never happens
Lol
I am not currently in schooling
Agh
I'm an undergrad
I would be entering my junior year of my CE undergrad if I were returning to school this fall
Computer engineering?
indeed indeed
Mine major is Physics, I'm picking up CS since there's probably not a lot of job prospects for me outside of academia
only need a few classes to pick up a minor
I'm in my junior year
Academia is a trap
ooh, nice
Physics is very hard to stay in
@dusty marsh u play fortnite?
it is skepticlemon come to educate
@reef orchid That's why I was thinking it would be a good idea to pick up code now.
So I play fortnite
I hear that Thanos guy from Fortnite got his own movie
@dusty marsh That's a very good idea. The farther you go in academia the more you move the job qualification floor.
next thing you know they'll give John Wick a movie
Lol
@reef orchid Did you ever attend grad school?
Yes
I was going to start studying for the GRE and code on the side
The GRE is dumb but worth studying for if you're going to take it
I don't have much research experience, so I'm hoping my GPA and a good gre score will off set that.
Do you have good recommendation letter writers?
Yeah there okay ones from a TA and the others are alright
Ehhhhhh a TA is far from optimal.
But...
Ultimately it all depends on what kind of school you want to go to. Everyone wants to go to a top 10, but you could be a concrete block and get into a school
I live 5 minutes from Lockheed martin, I want to apply for an intern or fellowship or anything really to put on my resume but I swear all these places want coders. I love math and science but I just wish I had started coding years ago.
I'm to poor for ivy leagues or tier 1 schools haha
Don't we all. But it's not too late to start.
Well you have to pay for a STEM MS, but not a PhD.
He's an old bat, and he's doing wonders in Python.
Right, @torn ridge ?
(he's respond in about 4 hours or so)
I think even the MS gets free tuition and a stipend no?
No.
@lilac glade lol
Matter of fact, https://www.twitch.tv/videos/278156439
And I know that I can link it because he's endorsed by the server.
Entering a coursework-based MS is just like undergrad, but harder.
I could be wrong, but that's how I understand it
If you want to go code for Lockheed Martin, you might be better off with a MS.
@reef orchid Yeah, I know i'm ultimately going to grad school. I never though I'd get sick of school but I want a break.
Then take a break. There's nothing wrong with a gap year, but try and be productive at something during that year.
Physics curriculum taught me some problem solving skills but not really workforce stuff
Sounds about right
too true
feelz bad
@slate quail maybe one day also they’ll put Zelda and his cool sword in a movie too
The one that changes into objects when you throw it on things?
yeah so you can collect all the chaos emeralds
Brilliant. I always loved that damn Daxter fellow he hung out with
Daxter from Daxter's Lab?
Oh hey @steel fox
@dusty shadow tell him that programming is the future and the reason why we have AI's and smartphones with great features
He knows, he's just lazy
Not everyone likes vr and them stuff
Is there an interesting course or product to teach programming
He's too old for Scratch now, but he still knows next to nothing
Um
Image classification
Telling the difference between Mario and Wario
Check medium
Have you heard of https://codecombat.com?
No
its supposed to be a game that kids play that teaches them python
idk if its any good
or like khan academy js tutorials
just give him http://automatetheboringstuff.com
pythons a good language for beginners
and that book is good for beginners to python
thanks
tell him he can use it to impress all his friends
I told him. He asked me if that's what those strangers on Discord said. 😃
I just spontaneously followed like 10 sushi blogs
Lol
envy!!!
Especially with good quality sake
I'm making myself a consolation hot dog
Last week had all you eat sushi...that was good but ugg
Wrap it in
Um
Cheese
Then it's American sushidog
that sounds terrifying
I never understood the appeal of sushi
Why can't mods ban owners?
cooked fish > raw fish
same as gdude. never been into sushi. i don't really like fish in general anyway
I guess it's more of an american thing
Because the US and Japan are obsessed with each other
any will do but the salmon looks the best
ooh I tried some eel for the first time a few months ago
o7
o6 
lol

Yeah I don't like fish either
But not all sushi is fish
And not all sushi is raw either
oooooooooooooooooooooo
sushi
not all sushi is fish
not all sushi is raw
sashimi is raw
sashimi is delicious
Sashimi is fish unfortunately
if you have a deep fried pork maki crunchy roll or whatever I would argue that you're on the very outskirts of what can still be considered sushi¨
for the record, sushi is super popular in norway
It's super popular in Ireland too
so whoever said "I guess it's an american thing" is probably not right
You can go to M&S now and they just have ready-made sushi for your lunch
well sushi by definition is not an american thing lol
hey lemon can you get me a job
probably not.
yeah, I think so too
I have a mixed relationship to sushi
super fresh sushi made from the freshest fish is amazing
mediocre sushi is disgusting
there's an incredibly non-linear scale there
like, bad sushi can ruin my day. but if I have a bad hamburger or whatever then it's like meh whatever.
and I wouldn't touch that mark and spencer sushi off the shelf if I had a gun to my head
i will never be japanese
uh huh
and yeah, i'm in agreement with the bad sushi thing
i can't get how people buy pre-packaged sushi at the super market
@languid kelp please don't ping me again to tell me how japanese you are
noted
am at work :)
M&S is very good quality for pretty much all of their stuff, so it's probably okay
but yeah it won't be all that fresh
did you purchase a mattress
M&S quality is only good because you're comparing it with stuff like lidl and tesco, which are atrocious
M&S is still kinda shit compared with even a mediocre supermarket in norway. 
Lidl is kinda okay, no?
no.
although I will say I've only ever been to irish lidl
maybe it's not representative
In germany it's okay IMHO
But they also come from here originally IIRC, so that might make the difference...
lidl is okay here (france) but definitely not the best
same here with england, but that's cause my standards are super low :D
Lidl in Spain is like third or fourth best
Mercadona or Carrefour are considered the best
M&S is generally the best in quality here
Lidl is pretty okay
Aldi is better
But they're both small-budget stores, so they are what you'd expect them to be
Do you guys have Spars up there?
although lidl's bakery is fucking awesome
we do have spars
they're all small, though
Yeah same here
Carrefour is one of the best, I agree. Good quality, not too expensive
We cook a lot of stuff ourselves though
so like, fresh produce and stuff over ready made in many cases
I don't even know M&S
it only really exists in the UK and Ireland
the closest thing to it is costco or whole foods in the US I think
No
edeka 
i just found a new key on my laptop keyboard that i didn't even know i had
doesn't seem like a normal plus
oh shit it's just part of a god damn numpad
why is there an FN controlled numpad on my laptop keyboard
haha my netbook from 10 years ago had that
#ot1-bisks-numpad-discoveries
an overlaid numpad with Fn+letter keys?
That's still pretty common on smaller models like 15" and below
yeah, i just never noticed the symbols were on it too
Logging into a computer to print. 10¢ a page. Using the wireless printing app at my college - 20¢ for a convenience page. Wtf is that
That's so stupid. At my library you can print from anywhere and pay the same price at the station.
It’s literally d o u b l e
You want the perfect license? https://github.com/mattdiamond/fuckitjs#license
LICENSE
Copyright (C) 2012, Matt Diamond
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, pulverize, distribute, synergize, compost, defenestrate, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
If the Author of the Software (the "Author") needs a place to crash and you have a sofa available, you should maybe give the Author a break and let him sleep on your couch.
If you are caught in a dire situation wherein you only have enough time to save one person out of a group, and the Author is a member of that group, you must save the Author.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO BLAH BLAH BLAH ISN'T IT FUNNY HOW UPPER-CASE MAKES IT SOUND LIKE THE LICENSE IS ANGRY AND SHOUTING AT YOU.
I feel like this wouldn't hold up in court
I get the explicit permission to compost the software though. What could top that?
Defenestrating?
I wanna look that up on google images but a small voice in the back of my mind is telling me not to...
Oh nvm was confusing it with degloving
I love that license
same
defenestrating is the act of throwing someone or something out a window, right?
yeah
degloving refers to injuries in which the outer layer of skin is stripped off, in case anyone is tempted to google it
Yeah I mean technically a bowling ball is a glove
"my conversion tables" lol
Lmaoooo
that pseudo code meme is not tru
python is not really pseudo code
there is a language like:
while i < 5 do write i then write double i;
the meme is not true?
My life is a lie.
No wonder my code never runs....
Fuuuuuu
@lilac glade why would github be blocked
In our district, we have Github blocked on the ISP level (we are our own ISP) in order to prevent the children (and adults who think they know better) from downloading potentially dangerous content that could break systems.
What kind of business are you in ?
We're in the business of IT, servicing mainly school districts.
There.... feels like a bit of a disconnect there
Our district has been dedicating a bit of time to CS, so we locked it down.
Is this just for the school locations themselves or is this even in the IT department?
Even in our office.
That seems dumb
Sheesh
That honestly seems like paranoia
With no real benefit
If people want to damage computers, they don't need some random GitHub hack to do it
If you blocked some porn site it would make sense, but blocking something that literally shows you source code to what you're downloading
I get the general gist as to why, but honestly...
GitHub isn't a repository of malware, though
They have rules and policies about that
"people could download dangerous content, block github, don't worry about the fact that dangerous content will be much likely to appear in other places"
yeah, github is probably one of the safest places
Yes
tell that to the leads
Or, just don't tell them about GitLab.
Grant me a tiny bit of sanity lol
Are the leads actually IT folk or are they just management?
They're IT folk.
Old school, though.
Huh
Yeah, it's definitely weird.
My condolences
sounds like somebody has to die...
Ehhh, I've learned to use mobile data, but Github doesn't do mobile scaling well.
vpn somehwere?
Can't say I've ever been desperate enough to visit GitHub to use mobile data
-scratching at arm- "No man, you don't understand, I NEED some open source right now!"
Nah, it's good when you're looking at something again after not understanding it the night before.
I understand that for sure
Okay regarding the same topic. Is it against GitHub policies to post malware codes? Because I have seen plenty stuff already there
@wheat crescent second from the bottom.
There are several repos already. There was a ransomware written in python..lol
Oh okay I just remembered they (author) make the code useless a bit by removing some parts out
To prevent malicious usage by malicious people
well, if I remember, there is a malware library on GitHub
What I the district though @lilac glade who is actually affected by the block
it is for analysis but the malware is live
I also saw some malware where the C2 was actually on GitHub, I can't remember how it interacted with it though, might've been through GitHub issues
Isn't it better for learners to learn from these codes? I think it is good for genuine learners.
at least they're probably not lying for once
I remember my high school IT called github a scam site, python 3 a virus, and visual studio code ransomware
It was wild
I have seen scam sites hosted on github before - same issue as with any free host really
okay, we never had something like that
but our whole network of Windows XP desktops back then was infected with some Conficker virus for years
The thing that would automatically copy itself as autostart on every plugged in USB
VS Code is ransomware 
I'd be surprised if my hight school IT knew what was github, python and visual studio back then
One time a student found out that you could send emails to the entire school email database because they had it set up so a specific address would relay it to everyone.
So they sent porn to everyone through the school email.
my class discovered winpopup and accidentally started sending chat messages to the whole network (we thought "workgroup" meant, like, just the one lab - or only computers that had winpopup open, except that wasn't needed on district staff's Windows 2000 machines)
on our computers, cmd.exe was blocked, but we needed a terminal for the IT class, so our teacher showed us how to unlock it 😛
or actually bypass, by using the old command.exe instead
just had to create a link to that file on the desktop which we could run, nothing fancy
why not just write your own little cmd script?
Was blocked on ours too, so you made a batch script and it opened
agh
yeah, would probably have worked too
I remember I made some batch scripts to wipe the Conficker virus of my USB sticks after plugging them in there
😮
all you gotta do is rename whatever exe file you want to run to notepad.exe
weirdest school IT decision that I've still got no idea why
they uninstalled charmap.exe
I assume they just saw it in the recent used programs and assumed people were using it for something nefarious
hmm.... all those evil letters.... not in my christian classroom!
I was taking a programming class in C++ and we were doing a game of life program, and i was looking up the character codes for top and bottom half blocks to fit twice as many cells on the screen
and then the next day it had vanished

After you turn 21, get a second fake ID that says you're younger than 21 so you can still get kicked out of bars.
- My friend on Twitter.
Good advice
Getting carded requires going outside. That’s a no from me dog
No My beard is longer...
lies
lol
this Djikstra algorithm is so frustrating
Nah i mean
i get the algorithm
I just cant piece it together to product the shortest tree and weights
in python
wait wtf
why are rx 560s now 150
Hey guys
what code editor should I use?
sublime seems nice
vs code is so slow
OS is ubuntu
The general recommendations by this sub are here: https://pythondiscord.com/info/resources#editors
pycharm 👌🏾
Many people recommend PyCharm for a full featured IDE
If you don't want something as heavy, look for at the Editors header on that site
Clion 👌🏾
Clay is recommending full featured IDEs
^
If you don't want that, a generic code editor like Atom or Sublime will work
I don't seem to be using the entire feature set of an ide
I just seem to be editing code and building stuff...
in command line
with make
IDEs provide code completion, linting, hints, and all the bells and whistles
I personally don't like heavy IDEs
I just use a simple code editor with syntax highlighting
When I used Ubuntu, I used Geany for the longest time
It's not popular
I didn't like VSCode, and I never tried Atom or Sublime
Maybe one of those will work for you ;)
I tried Sublime... got confused big time...
VSCode was too slow...
gedit seems to be the best for me so far...
though I think I'll give Geany a shot simply because I want fast and furious editors...
I was attracted to Geany because it looks like Notepad++
Nice
Then when I was on Windows for a bit, I couldn't get used to Notepad++, so I installed Geany
Which requires the GTK libraries for Windows
literally no other app uses that
using wsl 👌🏾
lol that was before wsl
I've been trying my hand at vim...
now my primary laptop broke so I got a cheap used chromebook
that's not working out well either
I use Caret on it
chromebooks are nice LOL
You could also just use nano
And Gallium is full Xubuntu for chromebooks
The latest gen are pretty expensive
got a $300 macbook air 👌🏾
I could only justify spending $100 for a used 13"
I don't know why a sane person would buy a $1000 pixelbook
dunno what I should get for college LOL
I love my air
its 2014 and runs stuff well
yeah
and light af
You need a laptop for college?
yeah
What's your budget?
I have a laptop that I only carry to class and stuff and a desktop at home
same
yeah
same\
Oh LOL
no worries
anyway
I'll probably be stuck with this Yoga for at least 2 more years in college
The biggest problem with my previous laptop was its weight
With this chromebook I'm able to bring it to school everyday
Really?
Honestly... I thought Chromebooks with xubuntu should run pretty well
My current editor is gedit LOL
so anything should work for me...
Hated the experience more than the O S.
I'm at UAH Diwang
I read online that chromebooks have better screens and keyboards than windows laptops at the same price
My Toshiba 2 2015 has a great IPS
Better than my previous laptop's TN panel
nice clay
I'm at UM A2
Chromebooks have better screens and keyboards?
Honestly
my yoga is pretty good
michigan?
Yeah
neat
It's okay
thanks
Anyway
I'm still confused with getting a new laptop or not LOL
Cause you have a desktop
I don't have that kind of dough
its just more convenient and take notes by hand
take a look at the link I posted
I always tried to be lazy and take notes on evernote or w/e
and i just didn't remember the material as well or anything
They suffered from 1 of a few problems, such as having a really low end CPU, only 2GB of RAM, no SSD, poor displays, poor touchpads and so on.
Also for the most part, Chromebooks in the $300ish range had much better keyboards, touchpads and displays found on similarly priced laptops.
My model has upgradable ssd slot
Noice
But I took the ghetto approach of inserting a 32GB sd card and making it permanent with tape
haha
its in #help-kiwi
@lunar jetty
Is it actually practical or nah?
but as you correctly identified, in no way shape or form practical
ok
the only reason I can imagine you'd need that skill is analyzing something that can't be analyzed by other means
It’s also not really a useful skill to have. At least with ASM it has some merit. Machine code doesn’t really at all
or if you're a hardware developer working in very small cases
but no one "writes in machine code"
not anymore
@lunar jetty Converting assembly to machine code is an exercise often given to undergrad CS
Its just an exercise and doesnt have much use because asm is more than good enough usually
There's pretty much 0 benefit to writing straight up machine code
hey @wraith umbra i've got guacamole, can i join now? :D



