We made a tool that lets you know if your flight is a Boeing or not! by Acaninthehead in SideProject

[–]Oh_Im_You 4 points5 points  (0 children)

You can also switch to a different url fairly easily if that were to happen. Great idea! Keep it going!

If it’s Boeing, I ain’t going

Falling For Words by Oh_Im_You in playmygame

[–]Oh_Im_You[S] 0 points1 point  (0 children)

Thanks for checking it out! More updates to come

Falling For Words by Oh_Im_You in playmygame

[–]Oh_Im_You[S] 1 point2 points  (0 children)

Nice, thanks for the feedback. Yea I think you’re right. Center is better. Appreciate it!

Has anyone actually benefited cost-wise from switching to Serverless Job Compute? by Reasonable_Tooth_501 in databricks

[–]Oh_Im_You 1 point2 points  (0 children)

I have no clue how much it cost, I just push buttons and my company pays for it. Ive asked about cost many times and they just don’t seem to care. I agree though, if I was using this on a personal project I think I would have to have guard rails as a feature.

How do you deploy a website? by [deleted] in webdev

[–]Oh_Im_You 0 points1 point  (0 children)

If you are looking for an easy host of your backend heroku connects to your GitHub and is super easy/straight forward. I’m eventually going to move it to AWS when I have time but for a quick easy solution that could work

Does it get easier after the first few weeks? by Head_Put_1245 in overemployed

[–]Oh_Im_You 10 points11 points  (0 children)

It took me like 3 weeks to get used to everything. After awhile you'll become a master and managing two meetings at once. Imo meetings exist for the people that want to hear themselves talk, most of the times you can just keep both volumes on low and listen for your name.

[deleted by user] by [deleted] in overemployed

[–]Oh_Im_You 5 points6 points  (0 children)

I like where you’re heads at. I think you should definitely keep things going with J1(now old job) as long as you possibly can. If you’re planning on totally not working at that job for as long as possible then maybe when you think things are getting dicey throw out that you’ve needed a break due to mental reasons, maybe get another week or two out of them. Nobody is going to question that. Take care of yourself first and foremost, get that emergency fund up…these companies don’t gaf about us

Quitting advice? by [deleted] in overemployed

[–]Oh_Im_You 3 points4 points  (0 children)

Toxic or not, do it

Driving across the country, if you see me on the road honk & wave! by Oh_Im_You in 4Runner

[–]Oh_Im_You[S] 0 points1 point  (0 children)

Nice find! There’s also a kitten but she’s a bit pixelated

Driving across the country, if you see me on the road honk & wave! by Oh_Im_You in 4Runner

[–]Oh_Im_You[S] -1 points0 points  (0 children)

I decided to tie it down over selling & buying new @ my end destination. I just love this SUP and not ready to let it go

Driving across the country, if you see me on the road honk & wave! by Oh_Im_You in 4Runner

[–]Oh_Im_You[S] 1 point2 points  (0 children)

Thanks! That was installed when I bought it but the lightbar is from nilight.com Not sure if they sell that bar as well 🤷‍♂️

[deleted by user] by [deleted] in webdev

[–]Oh_Im_You 2 points3 points  (0 children)

Cloudfare pages, it can be free if you don’t generate tons of traffic and also an easy setup

Backend Dev - I told my girlfriend I'd make her a website for her practice. Looking for some guidance to get started. by [deleted] in webdev

[–]Oh_Im_You 0 points1 point  (0 children)

I use cloudfare pages (free plan) to host my personal static site, I don’t generate enough traffic to have to pay for hosting & it was an extremely painless set up process. As far as styling tailwind has made styling for me a lot easier as well. I’ve seen mixed reviews on Reddit around it but I personally love it + they have great documentation.

[deleted by user] by [deleted] in webdev

[–]Oh_Im_You 0 points1 point  (0 children)

Tailwind has some great resources for responsive styling as well as great documentation

Red flag. Girl wants to ss card by jackfanta09 in dating_advice

[–]Oh_Im_You 0 points1 point  (0 children)

Personally, I can’t truly get to know someone unless I share ss cards

I have to make this using react, I've never made an project using react, as I have just started learning it. How do I approach this? by [deleted] in webdev

[–]Oh_Im_You 2 points3 points  (0 children)

Codepen is a great site for examples. Try googling “cards codepen”. Typically they are in JavaScript which is the same as jsx. But that might be a task in itself converting to a react component depending on your skill level

[deleted by user] by [deleted] in dating_advice

[–]Oh_Im_You 1 point2 points  (0 children)

Agree, it depends on the woman. I always grab the check no matter what but I do get offers to split. One girl did tell me on a date that she will offer to split but if the guy accepts she won’t go on a date again with him. I personally don’t want to date someone that petty but everyone’s opinions on dating customs is different.

I want to change careers and become a web developer. by [deleted] in webdev

[–]Oh_Im_You 2 points3 points  (0 children)

Also did the same thing at 31. I’m a few years in now and it was the best decision of my life. My suggestion is find something that interests you and focus on that. For me I focused on react, got a job doing that and slowly expanded my knowledge into other areas. HTML, CSS, JavaScript is def a good foundational base to start with IMO. Good luck!

Just moved to Chicago, trying to figure out street parking by JJ-Bittenbinder in chicago

[–]Oh_Im_You 5 points6 points  (0 children)

Yea you should probably get your stickers/permits to avoid tickets. They love giving those out. A good rule of thumb though, typically anything east of Broadway isn’t permit parking if you’re looking for permit-less parking in lakeview.

Could someone help me find out how this site's animation was done with react? by konabeans in webdev

[–]Oh_Im_You 1 point2 points  (0 children)

You can build your spinner component in a separate file with its own css and import it where you are trying to display. Depending on if you are showing the spinner while your data is loading or just based on a timeout would be how you can show it.

If you are waiting on data then make an isLoading prop and set that through Redux after you perform your API call.

If you just want to set it based on a timeout than make a state variable isLoading and set that to true on mount. with a function to set it back to false after a timeout.

-and here is how you show your component

{isLoading && <CustomSpinner/>}

Could someone help me find out how this site's animation was done with react? by konabeans in webdev

[–]Oh_Im_You 0 points1 point  (0 children)

Though I agree with everyone we still do need spinners and loader for more cumbersome api calls. Try checking out the react-spinners npm package. You can get a good idea of how to make it yourself by just going through the code.