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

05-28-2016 , 04:26 PM
The 2nd article had a lot of good stuff in it
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-28-2016 , 06:05 PM
Sure as hell made me want to apply wherever the hell he manages
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-28-2016 , 08:47 PM
Quote:
Originally Posted by daveT
Noodle, in my experience, imposter syndrome lasts about 5 minutes. Before you can dwell on it, you have a world of stuff to do. Focusing on the task sort of interrupts those feelings.
If you had impostor syndrome for 5 mins then you never really had impostor syndrome.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-28-2016 , 09:07 PM
fyi for someone with minimal linux skills and no sysadmin skills it took me like 10 minutes to set up https with lets encrypt through digitalocean so pretty amazing service there.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-29-2016 , 12:10 AM
Quote:
Originally Posted by Wolfram
If you had impostor syndrome for 5 mins then you never really had impostor syndrome.
This. Plus I feel like we've now had years on this forum where Dave talks about how he's not comfortable selling himself or can't explain why he's worth more than 14 bucks an hour.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-29-2016 , 12:28 AM
Quote:
Originally Posted by blackize5
This. Plus I feel like we've now had years on this forum where Dave talks about how he's not comfortable selling himself or can't explain why he's worth more than 14 bucks an hour.
That's what Dave does. He wouldn't be Dave anymore if he stopped doing that.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-29-2016 , 04:40 AM
Quote:
Originally Posted by blackize5
This. Plus I feel like we've now had years on this forum where Dave talks about how he's not comfortable selling himself or can't explain why he's worth more than 14 bucks an hour.
Idk, I was one of the few I worked with that didn't have at least 1 dual PhD, wasn't a college professor, didn't make his own programming language, wasn't a minor celebrity, or some other intimidating thing. I certainly was the only one with no college degree or useful work history. It would've taken about 3 seconds to get obliterated by anyone, but I was more excited about the possibilities of doing good work and learning new stuff. Just didn't bother me.

After working at companies where my responsibilities were beyond anyone else's capabilities, I'd take being the company dunce any day of the week, and it's not even close. Maybe I consider imposter syndrome, or some positive spin on it, a good thing.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-29-2016 , 04:53 AM
Quote:
Originally Posted by Grue
fyi for someone with minimal linux skills and no sysadmin skills it took me like 10 minutes to set up https with lets encrypt through digitalocean so pretty amazing service there.
This is excellent news. Loving DO so far
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-29-2016 , 08:31 AM
Hey guys, I hear Austin is in need of an über clone. No lyft or uber to compete with. They've kindly fleshed out the business model and decided not to pursue it there. Who's in?

This could literally be like Betamax saying they don't want to get into the business of SciFi movies right as Star Wars comes out. (No that never happened, just an analogy of better tech being given a wide open field to replace a worse product)
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-29-2016 , 08:54 AM
Regarding DHH's support of #WorkCanWait, what would the levels of unemployment be for tech workers if the employed were only expected to work forty hours a week, and any additional work employers needed done had to come from hiring more people?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-29-2016 , 09:43 AM
Quote:
Originally Posted by Noodle Wazlib
Hey guys, I hear Austin is in need of an über clone. No lyft or uber to compete with. They've kindly fleshed out the business model and decided not to pursue it there. Who's in?

This could literally be like Betamax saying they don't want to get into the business of SciFi movies right as Star Wars comes out. (No that never happened, just an analogy of better tech being given a wide open field to replace a worse product)
Heh, you are literally the first person to realize this! (Not really, there are already 3 or 4 alternatives in austin)
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-30-2016 , 04:17 PM
Does any one have any tips on how to do a bottom-up style of chat application? In other words the first chats are at the bottom of the pane not the top in the way it would normally work. My original thought is to have a "pusher" invisible element that takes up most of the pane and slowly gets smaller based on the number of chats until its gone and it scrolls normally. However this doesn't take into account chats that can take up multiple lines. It seems really crude to parse the length of the chat (and the length of the user's name) to do the math on this pusher element. What am I missing/what's a better way to do it?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-30-2016 , 04:53 PM
nevermind I just flipped the container vertically with css and flipped the chats again. le sigh
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-30-2016 , 07:24 PM
Quote:
Originally Posted by Grue
Does any one have any tips on how to do a bottom-up style of chat application? In other words the first chats are at the bottom of the pane not the top in the way it would normally work. My original thought is to have a "pusher" invisible element that takes up most of the pane and slowly gets smaller based on the number of chats until its gone and it scrolls normally. However this doesn't take into account chats that can take up multiple lines. It seems really crude to parse the length of the chat (and the length of the user's name) to do the math on this pusher element. What am I missing/what's a better way to do it?
use flexbox:

http://jsbin.com/konalu/edit?html,css,output
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-30-2016 , 09:05 PM
super cool but thats top down not bottom up. I'll play with it. Never got into flex cause IE etc.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-30-2016 , 09:18 PM
Quote:
Originally Posted by Grue
super cool but thats top down not bottom up. I'll play with it. Never got into flex cause IE etc.
i think that's just a matter of re-ordering the divs within the html, unless i'm still misunderstanding...

flex support is pretty decent now. unless you have to support ie9 and below, you should be ok with most of the features. and if you are unlucky enough to have to support those older browsers, you should be able to achieve the same thing i did with "display:table" and friends.

EDIT: also, try this instead, i think that other link got screwed up and was missing something: http://jsbin.com/hekozow/1/edit?html,css,output
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-30-2016 , 09:23 PM
wait nevermind, that's totally what I wanted. I'll throw that in. I'm using semantic ui (bootstrap knockoff) which already uses flex/is evergreen browser support only anyways so this will be perfect.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-31-2016 , 12:26 AM
Quote:
Originally Posted by gaming_mouse
i think that's just a matter of re-ordering the divs within the html, unless i'm still misunderstanding...

flex support is pretty decent now. unless you have to support ie9 and below, you should be ok with most of the features. and if you are unlucky enough to have to support those older browsers, you should be able to achieve the same thing i did with "display:table" and friends.

EDIT: also, try this instead, i think that other link got screwed up and was missing something: http://jsbin.com/hekozow/1/edit?html,css,output
In my nightmares, I'm chased by css monsters.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-31-2016 , 12:28 AM
Float left! Float left!
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-31-2016 , 01:16 AM
I still haven't used flex at all because everywhere I have worked has required IE8+
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-31-2016 , 01:23 AM
Oh man, dumping IE8 was the greatest day of our lives.

I still remember having to write a very complex JS-heavy web app that ran on IE 4, IE 5 IE 5.5, and Netscape Navigator 4.3. document.write() ftmfw.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-31-2016 , 02:57 AM
I never had to support anything lower than IE6, thankfully.

The annoying thing about supporting IE6 was that the border-box box model is the one that actually makes sense and is easy to use. Not only did we have to support Microsoft's non standard browsers, but they were actually in the right.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-31-2016 , 09:10 AM
Everyone's been using * box-sizing:border-box for years now anyways though.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-31-2016 , 09:21 PM
Quote:
Originally Posted by suzzer99
Float left !important; Float left !important;
fyp

When in doubt, important it out.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
05-31-2016 , 09:38 PM
You never have enough important!s.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote

      
m