#ot1-perplexing-regexing
1 messages · Page 397 of 1
@stuck meteor
i am searching
and can u provide me the guy detail who did the same job
PM me/DM me
have you read their Terms of Service / Use?
yes i did lmao
I wrote a post on my devblog but I don't know if its stupid or not. Thats how I always feel every time I write one.
i know this game since 2014
You agree not to use any hardware or software, including but not limited to third party tools, or any other method
of support which may in any way influence or give you an advantage in the use of the Services which is not
authorized by Atelier 801 SARL, including but not limited to the use of �bots� and/or any other method by which the
Service may be played automatically without human input.
because that's in there
Hm?
If you use their api then you can lol
they have an api endpoint
also a library
called aiotfm
ok
are the API and library supported / recognised by the developer?
because Transformice itself doesn't seem to provide access to any API
Transformice does not want bots, yeah
I used to play that
it's been a big issue for some time
they provide a module API for creating idk
custom modes or whatever
but it seems they're very much against botting
precisely, yeah
yeah, and one player is the shaman and may place blocks and stuff
wah. dropped my phone on its face on the floor
the screen didn't shatter but it went blank :<
now i have to leave the thing in a charger for the rest of eternity until i can get a new phone
huh. phone prices have come down.
a new phone with better specs costs less than what i paid for mine a year ago or so
with that there shouldnt be much damage
i drop lot of times from table
still it works
that's what I was hoping for too
Otter Boxes can suppress very high shock damage/impacts.
Hi. the ByteArray module is a Python implementation of the AS3 ByteArray
Does someone know anything about it?
I cant find the module download page
What is an otterbox. A phone case.
the logo has an otter on it. cool
Oh my god
I see
I bet this was only entertaining a few times if you're seeing them everywhere
They've been slowly increasing in numbers for 20 years
The first time I saw one I thought it was an escaped pet
Which, to be fair, is likely the source
an increase in renditions of the parrot sketch
installed a postgresql database on my brandnew linux server. what do?
want to do something cool
just create a database with all your credentials in it, like this ```
name email password Google Generator Key // (THESE ARE COLUMNS, add more column if u want)
backup the .sql file, encrypt it, if u ever forget your password use that .sql file @rough sapphire
i do same because i have different pass for different websites , and i signed up in lot of site so i do the same method instead of remembering all
not a horrible idea to build that system yourself honestly
also i havent deleted my database in mySQL so if someone has access i am ruined
but i've been using lastpass since it automatically syncs to your phone too
ok
the languages that come with databases are full-fledged programming languages
MySQL like language+Python like language are full fledged programming language?
when they are mixed
both python and sql stuff
well python in itself is
but you could do most of the stuff without python completely if you really wanted to too
ok
but that leads to weird situations
🤷
I am feeling to explore the world
go around the world in 80 days
the movie and novel both are awesome
Well, the more people are either out and about or otherwise cross mingling the longer it's going to go on. It's a pretty simple equation.
and since enough people are being freedom warriors about it all, we all have to live and die with the consequences
We're over a year away from any kind of proper return to normalcy.
That's being generous.
We may never get a viable vaccine. We may only ever get a treatment and drug protocol.
the return to normalcy should happen if the virus doesn't mutate and most of the people on this ball we call earth have gone through the disease so we basically have group immunity
even without vaccines
Immunity isn't a given.
it's not but i think they've established it
I read a case where someone caught it three times.
i think those are false positives.
Viruses can be tricky. They get up to all sorts of tricks.
or maybe in some rare cases the immunity doesn't kick in but
in general we can hope for it i think
Hope's fine. It's just not a good idea to rely on things as givens.
but things will return to normal. eventually.
Consider measles, I think it is. Detrains your immune system.
Shingles. Stays dormant for years then comes and says hello.
can anyone tell the difference between casting to integer (int) something vs using atoi() in C?
atoi means ascii to integer
I'm not panicking. I'm frustrated at people. It's a lack of preparedness, plain and simple. We could have all had this solved months ago. But no. Say if everyone just stayed home. If everyone had the support and reserves to do so. Limited essential movement outside of that. Done. Dusted.
@soft violet this has more to do with china. they let this thing get out of hand. they hid information and misled people.
A whole bunch of us let it get out of hand. But yes. That, too.
what would be output
@low shadow atoi tries to parse integers from chars yes. it doesn't do any conversions between data types strictly speaking.
can u tell me what will be the output when 1, 11, and 111 is given
so i can understand
@low shadow atoi is for "strings" to ints, (int) is for float, double, ints of different sizes and such
if(argc<2){
printf("pass argv[1] a number\n");
return 0;
is there in code too
@graceful basin
@soft violet if china had done their job properly, the problem would have been contained in wuhan and probably stayed there.
coded by someone else
argv is the command line args passed to the program
argc is the number of these args
have you tried...?
@low shadow you can do it on windows too. install a compiler.
thats again a long story, see its one liner, it would take lot of time to compile install and the other stuf
int fd = atoi( argv[1] )
./compiledthing 2
``` would make fd the integer `2`
so whatever number i pass i get same
not sure what it does with non-integers
ok
or how it behaves with non-number characters
so whatever number i pass i get same
@low shadow is it true with signed integer
I think it returns -1 and maybe sets ERRNO
no how can it return random numbers when file descriptors are 0 , 1 and 2
On success, the function returns the converted integral number as an int value.
If the converted value would be out of the range of representable values by an int, it causes undefined behavior. See strtol for a more robust cross-platform alternative when this is a possibility.
returns0if invalid conversion
@soft violet no.
If the first sequence of non-whitespace characters in str is not a valid integral number, or if no such sequence exists because either str is empty or it contains only whitespace characters, no conversion is performed and zero is returned.
it returns any integer even if it's "123456789"
can i share the link
<@&267629731250176001>
its related to exploitation
!rule 5 (for some people it may break , for some it maynt)
I'm confused.
What's up?
This seems to be actual educational material
but file descriptor are 0 , 1 and 2 right, so how can it return 1232341 or any other number
So I'm not sure why it'd be problematic
So I'm not sure why it'd be problematic
@sand goblet related to pwning
Such a technical term.
I was just thinking that, such a useless term haha
well. there are 3 default fds, stdout, stdin, stderr
yes
atoi: Parses the C-string str interpreting its content as an integral number, which is returned as a value of type int.
but you can create more
but the code says give number as an arugment
if(argc<2){ printf("pass argv[1] a number\n"); return 0;
i was talking about atoi in general
ok
and I think you can give your fds to other processes
Atoi sounds like the name of some secretive mystic warriors in a fantasy setting. The Atoi. Has a ring to it.
The program fd would compute 4663-0x1234 = 3 , read 32 bytes from the file associated with file descriptor 3 (that’s read from here.txt ), see that it is the correct value LETMEWIN and print the flag. There are two prob...
how does fd 3 work when there are 0,1 and 2
so if 0,1,2 are used 3,4,5 work as 0,1,2 ?
then 3 = stdin, 4= stdout and 5 = stderr
?
no, a file descriptor can be anything you can read/write from
well, it is always a number
but what it is reading/writing from is not described
then if it can be anything how can i recognize something is meant for input while other for error and output
well, you are told what 0, 1, 2 mean. You cannot have a function that determines whether a given fd is stdin or something else for example
ok
ok
if i supply int fd = atoi( argv[1] ) - 0x1234; argv as 4669 then will 9 becomes stdin????????? since 0x1234 is 4660 , so 4669 - 4660 = 9 and fd becomes 9 when read is called int len = read(fd, buf, 32);
no, you are just reading from a nonexistent fd. I am not sure what happens then
in this pdf, the author uses 3 as file descriptor so maybe i can use 9 too since any number can be used as file descriptor
when he talks about supplying 4663
he talks about the 3 as a theoretical situation if that program were different
If at first you don't succeed, try try try again.
thats why this song is awesome
Song?
the link has song
I haven't been looking.
i found a cat video on the internet! it has cats! https://www.youtube.com/watch?v=hckJOIPG1tE
what the fuck are those cats
@undone berry they are p. cool
who uses windows am i right?
make a site
comedian
well
What you think you can do with html, css and js?
Etherpad is written in Node, so JS-wise, probably a lot.
He wants a web project
Etherpad is a web project.
well, it's a site isn't it?
What's the difference between web project and a website?
I don't know
He asked for a project
I said him to make a site
wires crossed lol
guysssss
why 10 in base2 is 1010
10%2 = 0
5%2 = 1
2%2 = 0
1%2 = 1
shouldnt it be 0101 (101) ?
when you use iterated division like that, the last result is the most significant digit
(1*8)+(0*4)+(1*2)+(0*1)
so its little endian?
0, 1, 10, 11, 100, 101, 110, 111, 1000, 1001, 1010
big endian is MSB first right?
Endianness generally refers to the order of bytes, not bits
hi just came here to say I use windows btw
windows + wsl is the move
windows - wsl is the move
WSL is nice for emacs
my attempts at getting emacs to work on windows were env variable hell
can't relate
use win 7
emacs works OK on windows, but it's even slower than it is on windows
@tacit flint Why would you use an OS that's EOL?
because I use hardware that is EOL
That doesn't make sense. Linux runs on a lot of old hardware.
a computer that runs Win7, depending on spec, should be able to run Win10
i liek windsows
well theoretically my laptop can run windows 10
at any rate you should stop using Win7
13gb is absolutly massive, most consumers don't have that much.
All i have open is Discord, the Epic Games Launcher, and Origin lol
i'm usually sat around 14gb when i've got all my shit running
but that includes a VM with 4gb of ram
Lowest I've been able to get it without putting in any real effort is 40mb
I mean hey, if we're posting linux shots
... 40MB RAM usage?
Yes.
VPS or something?
It was
lowest I've been able to get is 200mb
20% on a 1 gb win7 machine
yeah, 40MiB is about the lowest I've seen as well
using a minimal ubuntu server install on a VPS
I have some 128mb lying around bisk, but it doesn't fit my current pc 😦
this is the point where i expect xx to have some root'd iot device with like 16mb of ram
lol
then this is the point where i expect a microcontroller with like 4kb of ram
for some reason it's not respecting -m flag with free though
i like being predictable
why is my gdb showing <func> instead of gets and puts
when i examine manually by x/1i $eip
i get gets and puts
we've had honey leak out of outlets before
Poison sockets are full of poison
switch them off
clearly there's a lot of current in those sockets
watter terrible situation to be in
Hello
Hello, @fossil sonnet
How are you?
Im good
Nice.
how do i dump memory into file
well the dump command in man page is for dumping file system
dump - ext2/3/4 filesystem backup
and the guy dumped
from memory using dump memory dump1 0x400000 0x6ea000 //dump memory range from 0x400000 to 0x6ea000
which doesnt work in my computer because my dump command is for filesystem not memory , so how can i dump, is there some other tool, i tried rmt-dump and failed
Why are you trying to dump memory?
to get the flag
Oh you're doing a CTF thing?
the flag is in memory and the binary is obsfucated
Neat
why not attach to the binary via gdb and set a breakpoint to wherever the flag is in a deobfuscated state
gdb can dump memory fine
ok
i m thinking of setting breakpoint, attach gdb to process pid and dumping lets see if that works
hmm
if i got it
got that flag
oh man, this thing is amazing https://realfavicongenerator.net/
generate a favicon, apple touch icon, safari touch bar icon, android icon and chrome PWA settings, metro/Edge pinned site icon and settings..
and the HTML that goes with it
A bit more than a favicon haha
ooo ASM
where
In kali I guess
Does someone know how to decipher XXTea?
DELTA = 0x9e3779b9
def xxtea_encode(v, n, key):
"""https://en.wikipedia.org/wiki/XXTEA"""
cycles = 6 + 52 // n
sum_ = 0
z = v[-1]
for _ in range(cycles):
sum_ = (sum_ + DELTA) & 0xffffffff
e = sum_ >> 2 & 3
for p in range(n):
y = v[(p + 1) % n]
z = v[p] = (v[p] + (
((z >> 5 ^ y << 2) + (y >> 3 ^ z << 4)) ^ ((sum_ ^ y) + (key[(p & 3) ^ e] ^ z))
)) & 0xffffff
Lmao that's impossible
@rough sapphire very nice! 👏
thanks
and i just tested, it works beautifully
now i literally just need 8 m2 screws to attach the bottom plate
Yup, that's looking pretty good
Were the resistors soldered by you as well or were those already on the board?
i got the pcb manufactured and sent separately
everything on it is soldered by me
shit job
but i guess not too awful for a first ever soldering job
I mean the only one that looks liffy is the top row, second from the right
The others look great
i'm just happy i didn't burn anything out
Yeah it's not an easy thing, that's for sure
I almost made a watch battery explode in my hands when I was repairing a SNES cart
also just so you know, those are diodes
I setup django website into digitalocean and I made ip tracker there. Now I started seeing some weird stuff happing in there like they tried to go to this location: http://www.mysite.com/?a=fetch&content=<php>die(@md5(HelloThinkCMF))%3C/php%3E
For affordable website hosting packages, go to MySite.com. You'll find complete and reliable website hosting with a range of prices and options.
is this some type of vunerablity test?
@polar vigil automated bots trying to scan your site for vulns
every site gets these
set up fail2ban
Are there any good iOS dev servers?
yeah I don't like getting microsoft either
Deleted for the reason stated
Probably didn't want to have your product key just out willy nilly
Says you
But yeah, fair point
Not like I infracted you for it, just trying to cover your butt
oh man, kinda glad the state of emergency ended today
finally, the horrible 2m distance rule is over, and us estonians can go back to the usual 5m distance
hi there
Can someone tell me why the login key should be 0x00121d15?
And also the handshake
login key seems to start at offset 0x15 and the handshake num from 0x19
endianess is swapped
hmm , where is 0x19?
at... 0x19...
there are guides on the left side of the dump
so 9th byte in the second row
still didnt figure out where he took 121d15
sorry, 0x14 and 0x18
can't count today
@stuck meteor second row, fifth byte
it goes 15 1d 12 00
swap the endianess and you get 0x00121d15
oh got it
is anyone familiar with the acsm format
I bought this ebook online and it downloads as an ascm format, but can't seem to use any of the links within the book
really simple potato system
rather see proper salamis
running slow, peeling slow
ridiculously speedy penguin slide
raunchy spandex pleases santa
RSPS @cursive cedar?
the title
oh, the channel name?
All the off-topic channel names are insider jokes, there's no actual RS private server
how to run a javascript code in the browser console with python?
idk if its even possible
how to pass nullbyte in program as arugment
you can't pass nullbytes as arguments as those are used as terminators within exec()
you can pipe them, though
the CTF demands nullbyte
there must be some way
// argv if(argc != 100) return 0; if(strcmp(argv['A'],"\x00")) return 0; if(strcmp(argv['B'],"\x20\x0a\x0d")) return 0; printf("Stage 1 clear!\n");
$() removes the nullbyte
ha... trick ctf challenge
i use python to gen
hint: you don't need to pass nullbytes manually :)
even this doesnt work
@rough sapphire
Traceback (most recent call last): File "py.py", line 9, in <module> subprocess.run(cmd,shell=True) File "/usr/lib/python3.5/subprocess.py", line 693, in run with Popen(*popenargs, **kwargs) as process: File "/usr/lib/python3.5/subprocess.py", line 947, in __init__ restore_signals, start_new_session) File "/usr/lib/python3.5/subprocess.py", line 1490, in _execute_child restore_signals, start_new_session, preexec_fn) ValueError: embedded null byte
@low shadow that won't work anyways
argv is null-terminated
ok
which means that \0 at index 64 will make argc 64 bytes long
which fails the first check
ok i m still trying
ok
so you can actually have null chars in the middle of argv
your code should, in theory, work. Try using exec() calls directly via libc instead of subprocess
ok
O dang, trump has been self medicating against corona....
@rough sapphire exec() of bash or C or which lang
so he's in the vulnerable group for taking hydroxychloroquine
since it can cause heart problems
python exec() is useless
in your opinion.
he's the President of the US.. I'm sure he's already got the best drugs
yes i got the best drugs
the drugs given to people with heart disease interact with hydroxychloroquine.
how do I type.. the best and imply it's how he says it
"If it doesn't cure me it doesn't hurt me." Or however that saying translates to english.
anyone who eats mcD often and guzzles down coke every day is sure to be already at risk for heart ailments
What doesn't kill me makes me stronger I guess.
yeah
i mean, to be fair to him, he's actually in the average for white american men of his age
so he's not abnormal.
in terms of his heart disease, that is.
hmm I don't know.. they don't have that long of a life expectancy
@rough sapphire exec() of bash or C or which lang
@low shadow libc's exec
you can acccess it via ctypes
from ctypes import libc
from libc import ctypes ?
you got it right, hax
from ctypes import libc
although what libc means depends on your OS
I think you could only import it like that in python 2
hmmm
so it's like ```py
Windows
from ctypes import cdll
libc = cdll.msvcrt
py
Linux
from ctypes import cdll
libc = cdll.LoadLibrary("libc.so.6")
my code generator does this
import ctypes
c = ctypes.CDLL(None)
call = c.memfd_create
fd = call('', 1)
``` yada yada
you can adapt this to exec
you can use CDLL too yeah
ok
and i saw that quotes are different,
do somekeyboard support first quote while other keyboard support second?
wait i will try backtick too
!charinfo "'`
\u0022 : QUOTATION MARK - "
\u0027 : APOSTROPHE - '
\u0060 : GRAVE ACCENT - `
\u0022\u0027\u0060
grave, i always forget
most keybords do have backtick, but some of them use it as an accent key
well forgetting is a grave mistake, bisk
forgetting that is the final nail in your coffin, mate
I've been on windows machines where I had to follow up a ` with a space in order to actually write it out.
yeah, that's what I mean by an accent key
yep
I use UK standard qwerty layout so mine doesn't do that
estonian keyboard needs you to press it twice
if you use UK extended then it's an accent key
On other notes, I recently had a new latpop and windows didnt' default it to the dutch keyboard. That's a win.
I'm convinced that they don't exist, never seen one.
But everyone seems to have problems with their pc sometimes switching to that layout.
first is weird quote second is normal quote third is backtick
Do a charinfo on the first one.
!charinfo ’'`
You are not allowed to use that command here. Please use the #bot-commands channel instead.
looks like a fronttick
!charinfo ’'`
\u2019 : RIGHT SINGLE QUOTATION MARK - ’
\u0027 : APOSTROPHE - '
\u0060 : GRAVE ACCENT - `
\u2019\u0027\u0060
looks like escaping is weird
right single quotation mark.
oh, it's a unicode quote
They are quotations marks, it is what you have on mobile keyboard most of the time
Nope they aren’t
Did you guys see that android 10 policy updates will break termux 😦
!e
print("\u2019\u0027")
!e
print("\u2019\u0027")
@stark prawn :white_check_mark: Your eval job has completed with return code 0.
’'
!charinfo \’
You are not allowed to use that command here. Please use the #bot-commands channel instead.
Definetly quite different
oh thats what i m talking
Did you guys see that quallcomm are dumbass and don’t want to release drivers for android 10 :/
so the weird quote is /u2019
No quallcomm drivers for android 10? huh.
and normal apostrophe and double quote from same key are 0027
Only ' is used for string litterals too in python
Yup, they wont release any :/
At least for my cpu
Oh, how old is yours?
Dang that's not old at all.
Although updates on android rarely go farther than 3 years sadly.
The ohone was released in May 3, 2018
I'm confused, so you're looking for a CPU driver for your Android os?
I guess for custom roms.
i can't imagine it'd be a problem for stock devices
Why did I think that CPUs didn't have drivers....
you got a link to anything on this?
!charinfo /x00
You are not allowed to use that command here. Please use the #bot-commands channel instead.
Oh well, they released them, the update is being beta tested since April 29
Nevermind then I guess
OMG nullbyte is represented as ^@
was going to say, it's not like qualcomm to drop support for such new tech
Welp, they just came to pickup my laptop. Hopefully they'll repair it without hassle.
They took their time though
@stark prawn What's going on with it?
Got it new 2 weeks ago aftger my old one broke.
Came with a faulty ssd.
"Sir, we can't fix this. Your laptop is filled with peanut butter."
Between 4 mins and 2 hours of use before it stops responding.
Very annoying to diagnose.
Since if the ssd isn't responding you don't get any logs written about that 😛
Ahhh gotcha
The smart doesn't no.
But in between it not responding anymore and the blue screen It stops showing up in file exporer etc.
i'd wager it's a chipset or connector issue
quick motherboard replacement should do the trick
Perhaps it's just not in 100%
But I wasn't going to open up a 1 week old laptop and risk losing warranty.
Leave it to them. If they fuck it up, it's still on them to fix it
That's why I have most of my car stuff done by the dealership
Costs a bit more, but if shit breaks, I know who to blame and who will fix it
I figured it out in the end by just puttin it off to the side and having dmesg logs output to the screen.
Also another fun bug I found.
BIOS doens't open up if refind was selected as the first boot device :/
But I can handle that.
Please note the advice I gave you afterwards though 😛
ok
why is friday the 13 so bad
is it because my lucky no is 13
thats a superstition
that isnt removed from society yet
also: is x64 same as x86_64
ok
like, if you're capturing some schema now and you fix the headers for it, can you expect the schema to change later?
vim is not a WYSIWYG right
definitely not
Why You Shouldn't Itch With Your Gun
..lol
👏
Quite proud of that one, actually
ok
i just see "what you see isn't what you get"
Guys guys guys
there is a similar
I just thought of an awesome name for an energy drink brand
YAFIYGI
"A Nap in a Can"
"Nap-alarm"
The problem is that nap sounds calm and peaceful
energy drink=headache inducing. nap=headache fixing
taurine is calming, however caffeine+sugar makes it stimulating (not liked by much)
taking taurine supplement is better than energy drink
Unless you like the taste
taurine can cause nausea, dizziness and headaches
Which honestly it's kind of grown on me
just to highlight its side-effects
taurine also has the complete opposite effect of energy drinks as a whole
either way
Yo gaba gaba?
this is a shitty conversation - no one cares about taurine as a drug
this is a shitty conversation - no one cares about taurine as a drug
@undone berry it isnt a drug
yes it is.
Well that went 0 to 60 in no time flat
because it is.
its a protein
don't take the bait
found in differnt food
this is going to end in a stupid conversation
semi-essential amino acid
and animal meat too
You really should find something else to be interested in than drugs https://www.reddit.com/user/machinexa/submitted/
i told u it not drug
Dude
how can you spend so much time
Therapeutic agent; any substance, other than food, used in the prevention, diagnosis, alleviation, treatment, or cure of disease.
you have no authority to say what is or isn't.
Another definition is anything that causes a physiological or pshychological change in the body
He is Carlos Tello PhD (Molecular Biology) Carlos received his PhD and MS from the Universidad de Sevilla.
oh god
its written by him https://selfhacked.com/blog/taurine-benefits/
Yeah that's the one I was trying to find, bisk
I regret starting this conversation
Carlos Tello lotto lies
I feel like I've made the world a worse place. I'm just going to close Discord
@wheat lynx HOW did I miss that one!
I couldn't not say that 😄
why isnt shellshock ssh server printing its vulnerable(doing CTF)
Will the net ever fully adopt (and I mean across the board and make it the primary) IPv6?
Because god I wish it would
I suspect it'll have no choice
Sure but when
It's been around for 25 years at this point
my network is ready for it, but not all networks are
my work network for example is basically unmanageable with ipv6, even though our isp supports it
their shitty router makes it impossible to address anything locally
Is it rented from the ISP?
it's an ISP router, I'm not sure who owns it
our work's internal network is IPv6 only, and so is my local network (for the most part)
it's made by this company I'd never heard of called Sagemcom
Man
PS4 doesn't have ipv6 support
Why is it that when there's a no brainer standard to go to, everyone seems to drag their heels?
it doesn't? that's crazy
ah, no
the PS4 does support IPV6
but a lot of apps and games don't
Ah, I misread then
(including the built in web browser)
The reddit link I read was 3 years old as well
So duuuuuuuumb
it's weird that they somehow managed to pass this buck
like does the network stack not have a unified interface?
Likely depends on the game servers themselves as well
If they don't support it, then there's no reason for the game to. And it might be detrimental if it did
I think
I never actually got a chance to study network stuff when I was in college
So much to learn, so little time....
hm, true
sure but there is much that flips out with IPv6 so I could see Playstation 4 making sure it's disabled at network layer
Is it not possible to have it run parallel? Or would that have too much overhead and collision
it's possible, yeah
you can run IPv4/IPv6 dual stack but if application makes a DNS request for ipv6.google.com and gets IPv6 back, their regex will flip out
as SRE, the number of times I've wanted to strangle a developer over network comms is pretty high
and in game dev, I could see it being much higher
since they trying to get speed
Nothing in computers can be simple, huh
Isn't it unnecessary with v6?
yeees, but you might want to protect your network
because it means your devices are just out there
I always liked how my ISP give me an ipv4 and v6 haha
That's not how we are going to solve the IP issue haha
Why is it that when there's a no brainer standard to go to, everyone seems to drag their heels?
@plucky ridge
Primarily because of cost to business. Same as why companies drag their feet to upgrade anything. Significant costs.
NAT doesn't protect
it just adds default "Deny All" incoming rule
which any good firewall will have
Fair point, Wren
It does all boil down to money and "Why should we do this? What we have now works fine"
esp for network equipment which can run for years
at last job, we had customers just happy on Cisco ASA 5505 from 2008 in 2019
ahhhh
did they at least patch that massive vulnerability in it?
we retired a few ASA 55xx series because of that and a lack of willingness for customers to pay for a license to get the firmware patch
bisk, knowing them, probably not
What to do when your in a team and everyone is just slacking off
Except you of course
sounds classic @lofty dirge
does the cisco licensing model ever bother you?
@rough sapphire, keep a work log.
document the times you bring up stuff as a team, and who takes what, etc
They expect you to do all the work.
i had this problem when i was at college studying music. team task with a teammate who did nothing and was useless.
so i did all the work, kept a log of what i'd done, and handed it in
I have this problem right now. I am in a group with four the other three are just lazy.
the other guy wasn't able to speak to any of the body of work and there was a written record of him clearly not doing anything
I had this problem a few days ago..
worked with some guys from MIT Harvard.. bla bla.. they all 'brainstormed' and did squat
we ended up not being able to finish a public project.. and I just ghosted them
I am messaging the other one. Cuz i have to do a roleplay with him when school starts. But he just left me on read.
bash is shit, () { something } is a function but (){ something } isnt a function
So you handled it differently
I have this problem right now. I am in a group with four the other three are just lazy.
@Jonathan.K#3340 ROFL
yes.. I didn't feel right doing work they would also get credit for.. so I just left
Bisk just accepted it and you ghosted them
This is exactly why lazy people are not my friends.
I used to accept it back when I was in college, I ended up getting the highest grade for a final project while the rest of my group got the next highest grade.. but now I don't think I can put up with that
i m lazy
This better not be the case when i have a job as a programmer.
ok
it probably will be
im lazy too and that helps.. but if you commit to something you should aim to finish it
When i commit something i get MAD trying day and night until i get sick but i m too lazy to commit
extremely lazy to commit
Keeping your word is important.
yes
i didn't accept it btw
i was mad as hell, but i knew how to get him a worse mark because he didn't do the work
i ended up getting a distinction for the work and that dude failed.
Report him
despite being a team effort individual efforts are tracked
this was over a decade ago
:D
whats the use of thefuck there is no man page
and -h is useless
thefuck less
doesnt work
And i am going through this now.😩
this is not an uncommon event in life*
but i mean, as i said, if you keep a decent record of who said or said they'd do what
and didn't deliver
idk, that was my way of dealing with it
I like being a lonewolf but when i'm in a team everyone should do their best including me.
this is not an uncommon event in your life
Schools, colleges, and universities know this will happen with groupwork
they expect it. Sometimes they just also don't care, sometimes they'll have formal systems in place to check it, sometimes you just have to whine to teachers/lecturers
but i mean, as i said, if you keep a decent record of who said or said they'd do what
@gentle moss i did that in a recent project i did with the same group i am in now. One of them got mad at me🤣
well they should try harder
if they're moaning at you about them not doing work
they can get yote
yeeted
that's what the kids say these days isn't it
they expect it. Sometimes they just also don't care, sometimes they'll have formal systems in place to check it, sometimes you just have to whine to teachers/lecturers
@undone berry yeah the teachers tell you to report to them if someone is slacking off. But they ain't doing anything about it.
the point is their feelings aren't the important part here, right?
it's your grades and shit
then when you present the work you can also present "oh, btw, look at this"
"these chumps only did like 20% of the work and left me hanging. i did my best to try and get them to pick up the work and they didn't give a toss."
That's exactly my situation right now.
In times like these i remind myself : life is not fair, deal with it
When doing groupwork, the only thing I expect of people is that they try and do what is explicitly asked of them
last time I got annoyed at someone was because I asked him to go buy board pens, and he just sat there on his phone
and that's kind of what i mean about keeping track of what others are doing
did the person do what was either explicitly asked of them or they offered to do
Bisk, I’m no longer in that IT world
lucky for some ;)
And yea, wasn’t a fan of Cisco model but in 2008, there wasn’t a lot of good options
true enough.
That’s long since changed
Cisco or Juniper pretty much
we exclusively use netgate pfsense devices for big installs now
What language does Cisco write his programs in?
🎶 Pythong th-thong thong thong 🎶
He's a man of many talents
better than cisco
yeah, for sure
have you tried pfsense?
i feel i've asked this before
No we don't use that. Remember, data center, everything is Internet
Juniper's built-in firewall is enough to protect the routers
fair
and the hardware we have is performant enough to do it on their own 😄
netgate pfsense boxes are just little servers with BSD on tbh
cheaper and pretty damn good
I mean, it may be in use in the cloud or managed department, but I am network and we don't have it
For a moment I thought it was an audio mixing board for some reason
we've got 3 of these deployed at different locations
wanna know a simple and fun way to mitigate ddos?
cut the fibre
yeah
TCP resends lost packages if no tcp confirmation is sent
so don't send confirm, drop SYN, client resends [S] if it was serious about the connection
nice
draaahhhppp it
Can't do my job without it becoming a big deal
rubber neckers innit
Not exactly
@plucky ridge Can't you run the commands hidden and force them into a chat where they can see the ban message?
They get a DM
It makes more of a point to others to not do stupid shit if it's done in the channel where the incident happened
That's the intent, anyway
Then gotta live with the reactions tbf
would be nice if they'd wind their necks in though
To a point. It's why I'm not doing anything about it
I think I still get to feel irritated about it, though
never expected you say "wind their necks in" tbh g
it's good slang
God damn it. This probably explains why my mood is tumbling
That's a HUGE weather front for my head to deal with
Isn't that like every day in UK?
Sure but I'm not in the UK
Some random guy on Twitter to John Cleese: Do something about creaTION. I feel you and the @montypython lot never really touched on religion.
I lol'd
monty, python, life, brian, john, cleese, graham, chapman, funny, stoned
John Cleese said about the movie, that they have been writing around the idea of being 5 minutes too late to the miracle
which equals being 2000 years too late
after they released it there was a lot of clapback in the UK (and around the world)
but the pythons did a great debate on UK TV with the Church of England
Yeah, I've linked that debate as a response to the guy
it's quite something. i'm not sure the church expected them to be so erudite
they are, after all, makers of silly things
silly walks especially
big fan of that. when i was taking drama classes as a kid i idolised the pythons
speaking of which, a 70's comedy sketch show in the UK did some jokes about python worship
A sketch from the british series "Not the nine o'clock news" commenting on the controversy created by the Monty Python's film - Life of Brian.
I've founded a steam group called Ministry of Silly Walks
hah
not the nine o'clock news is excellent
it's very UK centric, but i'd highly recommend those that haven't watched it watching it.
if they like that sort of thing
whoever recognises this string gets $1B: CPKTNWT
I'm pretty sure that's murder
probably
negligent homicide
Either way they're a fucking dick
i also find it pretty a not-cool topic to post about
Yeah definitely not appropriate here
But of course, snof is no newcomer to getting in trouble for that
<@&267629731250176001>?
called @timid latch over in dms
didn't want to bring any more trouble than needed
better to ping the mods, for all you know I am bussy xD
oh dear.
oh deary me
!ban @gusty oar posting a meme that glorified intentionally letting a homeless drug addict die. you've had enough chances, get the fuck out forever.