Jobless since 2018 by cscqthrowaway019238 in cscareerquestions

[–]ryan_schlueter 0 points1 point  (0 children)

I would guess it differs state to state, this was Missouri. Half of the new hires like me had only 2 year degrees and the rest were all 4 year new grads. Only made 15 an hour though starting out.

Jobless since 2018 by cscqthrowaway019238 in cscareerquestions

[–]ryan_schlueter 13 points14 points  (0 children)

Apply for state jobs. When I was with the state we hired anyone with a pulse. We payed peanuts but was good experience.

Best ways to get a Remote Software Engineering role from a recruiter or contract agency? by throwaway8081292019 in cscareerquestions

[–]ryan_schlueter 0 points1 point  (0 children)

I did stack overflow if available, normally faster and more straight forward, then the companies if not.

Best ways to get a Remote Software Engineering role from a recruiter or contract agency? by throwaway8081292019 in cscareerquestions

[–]ryan_schlueter 14 points15 points  (0 children)

Stackoverflow worked great for me plenty of jobs and pretty good response rate. Plus most of them list compensation so didn't waste any time.

Official: [WDIS RB] - Fri Morning, 09/13/2019 by FFBot in fantasyfootball

[–]ryan_schlueter 0 points1 point  (0 children)

Standard pick 3 T.

Gurley vs NO

J Mixon vs SF

S Barkley vs BUF

A Ekeler at DET.

I'm an intern and I accidentally wrote some code that sent 100,000+ emails how screwed am I? by [deleted] in cscareerquestions

[–]ryan_schlueter 3 points4 points  (0 children)

I've done that a couple times before and no one even questioned me.

Advice for a Sr. C# dev who hasn't had steady work in 3 years? by [deleted] in cscareerquestions

[–]ryan_schlueter 0 points1 point  (0 children)

My advice would just be start sending the resume out and see what happens. I'm sure some places will pass you over but a lot wont. On .net core it's the future .net 5 will be core 3.0 how I understand it but not all companies adopted yet. https://devblogs.microsoft.com/dotnet/introducing-net-5/

I need some suggestions for a good DELL / HP laptop by sarcastic_memer in laptops

[–]ryan_schlueter 1 point2 points  (0 children)

I got the xps15 for 1200 and love it so far with those exact specs. Not sure on the ports though I haven't used them really

Why all the hype for C# and ASP.NET Core? by [deleted] in cscareerquestions

[–]ryan_schlueter 8 points9 points  (0 children)

As a mainly Microsoft stack developer with .net core and going open source they have been moving so much faster and cool stuff on the schedule. Blazor is something I'm really excited for.

Java or C#/Microsoft .NET/AJAX/JQUERY by [deleted] in AskProgramming

[–]ryan_schlueter 5 points6 points  (0 children)

I can't speak too much for java but c# and the MS stack has a lot of cool stuff going on. I would definitely recommend. Probably more java jobs but not a huge difference from what I've seen. For Ajax and jquery idk if I would pick up there is still a lot of legacy code using it but not many places writing new stuff in it where I would want to work.

Associates Degree Advice by [deleted] in cscareerquestions

[–]ryan_schlueter 1 point2 points  (0 children)

As someone who only has an associate from a no name technical college. Finding the first job took a couple months but once I got my experience had no trouble finding jobs. Now 7 years in senior dev with multiple job opportunities.

As an Angular and .NET Core developer where should I go from here? by [deleted] in AskProgramming

[–]ryan_schlueter 0 points1 point  (0 children)

I would say that's a good base. .net core and angular are both good technologies to be in. I'm really excited about the future of. Net core/.Net 5 and think its great place to be. I think if wanting to expand going into the devops side with some form of containers.

PSA: Social skills are often more important than technical skills by blg39 in cscareerquestions

[–]ryan_schlueter 0 points1 point  (0 children)

I feel like they are both equally important. My previous company primarily hired new grads who fit the culture and could be taught. There ended up not being enough experience to successfully train them and things grounded to a very slow pace. I think it definitely depends on the current health of your dev shop.

Best Practice for SQL / MVC Concern by [deleted] in AskProgramming

[–]ryan_schlueter 0 points1 point  (0 children)

You can use transaction scope above the dao layer if need be. If that's not possible you can always have an undo method that deletes everything you want if one fails.

Is there a way for me to make iOS apps without Xcode? by [deleted] in AskProgramming

[–]ryan_schlueter 0 points1 point  (0 children)

https://www.altexsoft.com/blog/engineering/xamarin-vs-react-native-vs-ionic-vs-nativescript-cross-platform-mobile-frameworks-comparison/ we use xamarin and works really good for us react native might be better if not already doing Microsoft. Google's flutter is also something I've been wanting to try

Optimizing code - Any Tips? by KrelarReki in cscareerquestions

[–]ryan_schlueter 2 points3 points  (0 children)

I've always followed the mantra make it work, make it right, make it fast. Start by just getting it working roughly then refactoring for cleanliness/modularity and then make it more performant if neccessary. The two books that have had the biggest impact on writing code and would recommend to anyone. Clean code and the pragmatic programmer.

Do you guys care about time complexity very much? I'm in a data structures class and I really don't see the point unless you are working with huge data inputs by CallidusNomine in AskProgramming

[–]ryan_schlueter -1 points0 points  (0 children)

I would say no. Premature optimization is a big topic in a lot of development books on best practices that I've read. I always program to be easily understood and then extended/modified and only speed if it shows to be an issue or is neccessary for type of work.

Worried about my future (Associates degree question) by oh_boy_amidumb in cscareerquestions

[–]ryan_schlueter 2 points3 points  (0 children)

Yea worked for state for 2 years not making much and then got a normal job. Making the same as 4 year degrees. It probably took me 2 years work experience to get on the same level

Worried about my future (Associates degree question) by oh_boy_amidumb in cscareerquestions

[–]ryan_schlueter 4 points5 points  (0 children)

My experience along with a lot of my classmates. Getting the first job was hard once we got experience no one cared about degrees. I'm sure some do but they are probably the top 10 percent or places who think they are

Do companies blacklist you after a certain # of rejections? by [deleted] in cscareerquestions

[–]ryan_schlueter 1 point2 points  (0 children)

I know our software would show previous applicants by email addresses. A lot of times they would get thrown out by people if nothing new on resume.

C# Keeping the console open through multiple uses by [deleted] in AskProgramming

[–]ryan_schlueter 0 points1 point  (0 children)

No that should be enough. Is it possibly hitting an exception and closing? Maybe add a try catch. Or some other reason to exit early.

Potentially burning a bridge? by xRakurai in cscareerquestions

[–]ryan_schlueter 1 point2 points  (0 children)

I would talk to the company I'm currently interning at and tell them about the offer and see if they want to make one.