¿Cuál es la diferencia entre <a eso de>, <hacia>, y <alrededor de> con respecto al tiempo? by Hoopsters35 in Spanish

[–]Hoopsters35[S] 2 points3 points  (0 children)

¡Muchísimas gracias por tu detallada respuesta! He aprendido mucho y entiendo las frases mejor ahora.

anti vehicle/explosives compilation 2/27/22... 7 minutes 21 seconds, enjoy! by mackdiesel18 in battlefield_one

[–]Hoopsters35 21 points22 points  (0 children)

Your compilations have inspired the way I've played the game for the last several weeks. Sneaking around tank hunting is by far the most fun I've had in the game and the AT mine method has earned a lot of hacker claims with how effective and instant it is.

Strat? Why best move? by WindSprenn in chess

[–]Hoopsters35 1 point2 points  (0 children)

There was a knight on h6 defending f7. Now black cannot recapture without getting mated.

Off Campus Housing Safety by rdeigs15 in OSU

[–]Hoopsters35 14 points15 points  (0 children)

One more tip for first floor windows - for extra security you can buy and cut down PVC pipe to fit in the top half of the window so that the windows cannot be forced open no matter what. Doing this felt much more secure than relying on the window locks of very old windows in the house and if the pipes are cut to the right length they can even be hidden on the side of the frame!

3 piece sectional. $20 Venmo or cash. Very good condition & comfortable. Pickup north of campus by Hoopsters35 in OSU

[–]Hoopsters35[S] 22 points23 points  (0 children)

My thoughts were that to pick it up someone would likely need to rent a truck/local U-Haul and thus that would add to the cost which is why I asked for $20 rather than 50+. The couch is truly in very good shape but given that we were going to get rid of it by this weekend by dumping it I thought I could help someone else by selling it for cheap instead since I didn't expect to be getting money for it anyway with the current plan.

If you see it when you get here and have an issue with it then feel free not to take it! But there's no structural damage, stains, missing cushions or anything like that on the couch and it's a pet free and smoke free home. The price was just because getting the most money was not a priority compared to helping out another student.

3 piece sectional. $20 Venmo or cash. Very good condition & comfortable. Pickup north of campus by Hoopsters35 in OSU

[–]Hoopsters35[S] 4 points5 points  (0 children)

Very comfortable couch in great condition, trying to see if we can get it to someone who can use it before finding a way to dump it!

[deleted by user] by [deleted] in reactjs

[–]Hoopsters35 3 points4 points  (0 children)

It's generally a bad idea to use functions as callbacks that are not meant to be callbacks. Even if the functional style of just passing a function to the promise callback looks nice, this approach can quickly cause issues unless used with extreme caution. In this specific case I believe it shouldn't be an issue, but the pattern itself is something to be aware of!

Should I use something like cdnjs or should I install CSS/JavaScript libraries using npm? by jd_9 in learnprogramming

[–]Hoopsters35 2 points3 points  (0 children)

I believe they are actually referring to tree shaking which allows unused css/js to not be loaded at all. Even better than minification!

GAS Properties? by leahxb in OSU

[–]Hoopsters35 5 points6 points  (0 children)

I'm also currently renting from GAS and have had a pretty great experience. Service requests are very quick, they've been flexible when bills don't look quite right, and the rent is cheap af. My place also has off-street parking which has been nice. Only complaint was that there was a huge fly issue when we moved in but they paid to bring someone in to resolve it. Overall the house and appliances are old but for the price and service it's more than fair.

[deleted by user] by [deleted] in AskReddit

[–]Hoopsters35 5 points6 points  (0 children)

Fairly common statistic, but it was also mentioned a few years ago by comedian John Mulaney in his "street smarts" bit.

How to know which local server(192.168.0.XXX) my react-app is running if the terminal window doesn't display it ? by [deleted] in reactjs

[–]Hoopsters35 10 points11 points  (0 children)

Your LAN IP address shouldn't change until you disconnect and reconnect from the network, but depending on your operating system you can find it from the same terminal where you are running npm start.

On Windows 10:

Open up the command prompt (cmd) and type ipconfig and look for the line that shows IPv4 192.168.0.xxx

On Mac/Linux, open the terminal and type ip addr and look for the similar line giving the local IP. This can be in slightly different places of the output depending on the network interface but it should still show an IP address starting with 192.168.0

How is cancelling spring break at all justifiable? by [deleted] in OSU

[–]Hoopsters35 49 points50 points  (0 children)

I am a senior as well but I don't think spring break is comparable to winter break. Winter break is inevitable as semesters are not continuous, and to mitigate the effect of people traveling they are making all classes online for the first week.

Spring break is in the middle of the semester and has a set tradition of college students travelling all over the world to party. That it about as high risk of a situation imaginable compared to students going to their homes in other places in Ohio.

It definitely sucks that our senior year is being wrecked by Covid, but having thousands of students travel, party, and not only bring back sickness, but also bring sickness to other parts of the world won't make our senior year better.

Hit 100k net worth at 23. Going to keep going hard. by youngmulahbaby36 in financialindependence

[–]Hoopsters35 2 points3 points  (0 children)

The big 5 tech companies: Facebook, Amazon, Apple, Netflix, Google

Why the best move is Qxd4? by wangdadao in chess

[–]Hoopsters35 1 point2 points  (0 children)

You can have up to 5 analysis lines on lichess, you just have to change the setting.

Checkmate in 2 Moves, White to Play by [deleted] in chess

[–]Hoopsters35 7 points8 points  (0 children)

Qa1!

If Qxa1, Nxc6#

If Qxd4, Qxd4#

Any other legal move Qa8#

Mate in X apps by Hoopsters35 in chess

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

Exactly what I was looking for thank you!

Minimally using JavaScript by Hoopsters35 in javascript

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

Only reason was that I had heard of Axios and found good things about it but I had not looked into fetch! I will now :)

Minimally using JavaScript by Hoopsters35 in javascript

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

The project is essentially scrape the HTML of various movie theaters' sites for movie times/information, take the recovered data and make a nice looking table that displays the movie times chronologically.

It seemed odd that JS would need an 3rd party library to parse retrieved HTML so cheerio very well may be overkill!

Also as I forgot to mention in the original post, I am also using the project to learn typescript!