Open Side Menu Go to the Top
Register
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** ** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD **

12-01-2018 , 01:09 PM
Quote:
Originally Posted by RustyBrooks
Fedora was Redhat's linux distribution. The usenet client I used was "tin" but that was a unix thing. I have no idea what people used on windows.
I think it was Forte Agent. Btw apparently usenet still exists. I wonder what people use it for?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-01-2018 , 01:36 PM
Quote:
Originally Posted by suzzer99
I think it was Forte Agent. Btw apparently usenet 2p2 still exists. I wonder what people use it for?
?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-01-2018 , 02:04 PM
Quote:
Originally Posted by suzzer99
I think it was Forte Agent. Btw apparently usenet still exists. I wonder what people use it for?

I download all my totally legal "Linux distros" using Usenet.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-01-2018 , 04:22 PM
Quote:
Originally Posted by Wolfram
It still is redhat's linux distro, right? Is something changing with the sale?
They have a bunch now, RHEL, Fedora Core, CentOS, maybe there's more?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-02-2018 , 05:20 PM
i have a simple bash script that allows me to open the url

https://forumserver.twoplustwo.com/1...index9999.html
in chrome

how do i get it to scroll to the bottom of the page ?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-03-2018 , 03:08 AM
bash is not a browser. What are you trying to do exactly?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-03-2018 , 03:59 AM
Quote:
Originally Posted by OmgGlutten!
i have a simple bash script that allows me to open the url

https://forumserver.twoplustwo.com/1...index9999.html
in chrome

how do i get it to scroll to the bottom of the page ?
How about an alias or key binding? I open 2p2 in chromium via CTRL+ALT+SHIFT+2
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-03-2018 , 05:16 AM
Yeah I’m using an alias. I just want it to scroll to the bottom when it opens the link
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-03-2018 , 05:21 AM
Oh nm - I missed the "in chrome" part.

If it's the same url every time - you can try a grease monkey script in chrome. I use one to scroll the 2p2 page back to it's correct spot after the embedded tweets load and screw up the scroll position.

Code:
// ==UserScript==
// @name         2p2-Scrollback-after-tweets
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Scroll back to the correct anchor tag after tweets load and screw up the scroll position
// @author       suzzer99
// @match        https://forumserver.twoplustwo.com/*
// @grant        none
// ==/UserScript==

(function() {

    setTimeout(() => {
        $('html, body').animate({
            scrollTop: $(window.location.hash).offset().top + 'px'
        }, 100, 'swing');
    }, 3000);

})();
(Note: the comments at the top are important)
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-03-2018 , 07:04 PM
Quote:
Originally Posted by OmgGlutten!
Yeah I’m using an alias. I just want it to scroll to the bottom when it opens the link
Don't know off the top of my head. I use chrome/chromium extension called vimium which allows me to use vim shortcuts. So to scroll to the bottom I just type G, and I'm there.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-03-2018 , 10:14 PM
Thx
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-03-2018 , 11:58 PM
Apparently I'm too dumb for oauth2 as this whole thing seems like a ****ing nightmare. Associating an existing local account with an oauth account sucks but no where near as much as what happens when a new oauth account username attempts to make an account where there's an existing local account username.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 10:54 AM
Quote:
Originally Posted by Grue
Apparently I'm too dumb for oauth2 as this whole thing seems like a ****ing nightmare. Associating an existing local account with an oauth account sucks but no where near as much as what happens when a new oauth account username attempts to make an account where there's an existing local account username.
The process is both overly complicated and not really covering all the necessary cases. At least it's better than oauth1 I guess.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 11:00 AM
#1 rule of oauth imo - don't write any of it yourself. If you can't use an off the shelf client and/or server, use something else.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 11:14 AM
I started writing it myself and was having all kinds of weird problems then stumbled on discord-passport which uh works but like OK so many use cases I have to handle and maybe I'm not getting it but what's the point other than passwordless auth? What can I actually do to people's discord accounts? It doesn't look like anything as all those integrations are for actual games/process only, not web apps.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 12:29 PM
Not sure about discord - but with auth0 and cognito - oauth is literally just to authenticate. You still have to maintain your own user account DB to store anything useful.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 12:35 PM
Yeah I'm getting that as well. I mean its better than nothing. I'll see what percent of people actually use it. Speaking of which out of sheer boredom I'm also putting in a counter (mongo collection) that gets added when someone hits my
Code:
if (/88$/i.test(username))
while signing up yeah.. sorry becky.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 05:39 PM
Whats standard for dealing with linkedin recruiters, is it ever worth it to reply to what I'm assuming is the mass spam they send out to everyone who has the correct keywords in their profile? Especially if you are likely way under qualified for what they are spamming you with?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 05:40 PM
Quote:
Originally Posted by Alobar
Whats standard for dealing with linkedin recruiters, is it ever worth it to reply to what I'm assuming is the mass spam they send out to everyone who has the correct keywords in their profile? Especially if you are likely way under qualified for what they are spamming you with?
Go for it imho. Is there something specific you are worried about losing going for something challenging?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 05:43 PM
no, guess just wanted to not waste my time, but now that I think about it that's obviously silly.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 05:45 PM
Can't hurt to talk to them if they're local. Don't waste your time on non-local recruiter messages on linkedin though.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 05:57 PM
Quote:
Originally Posted by Alobar
Whats standard for dealing with linkedin recruiters, is it ever worth it to reply to what I'm assuming is the mass spam they send out to everyone who has the correct keywords in their profile? Especially if you are likely way under qualified for what they are spamming you with?
The one I replied to turned out to be a scam offer with a realistic looking web page and everything... At least I hope the 5k a month to handle local billing for their multi-national company offer made to me by the VP was a scam...
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 07:17 PM
Based on Amazon and github I've decided that folderless is the new serverless. All filesystems should be at most one level deep. Make users search, filter and use naming conventions to organize things. My new operating system will be awesome!
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 08:54 PM
Quote:
Originally Posted by suzzer99
Based on Amazon and github I've decided that folderless is the new serverless. All filesystems should be at most one level deep. Make users search, filter and use naming conventions to organize things. My new operating system will be awesome!
To help things along make sure that the filtering conventions vary all over the place. Some need prefixes, some don't. Some update as you type, some don't.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
12-04-2018 , 09:07 PM
Right. Also it will be very inconsistent about whether partial matches count.

And no tags. Why would you want tags? https://github.com/isaacs/github/issues/302
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote

      
m