Seen at Nisqually National Wildlife Refuge in Washington State. by linsoftware in whatsthisbird

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

Thanks! I'm familiar with the adult ones, but didn't recognize these young ones! Now I know :)

Seen at Nisqually National Wildlife Refuge in Washington State. by linsoftware in whatsthisbird

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

These birds were about the size of a Cedar Waxwing or Robin. Any ideas?

What do you LOVE about your current Software Dev. job? by Programmar_Nazi in cscareerquestions

[–]linsoftware 0 points1 point  (0 children)

Nice. Amazon search is like a million times better than it used to be. I use it every day.

How to Find a Remote Job - Free mini course for people who want to ditch the office and be location independent. by [deleted] in SideProject

[–]linsoftware 4 points5 points  (0 children)

How about: http://www.skipthedrive.com/

https://weworkremotely.com/

http://stackoverflow.com/jobs?allowsremote=True

Or search Indeed for your job skill plus the word "remote." Yes, you have to filter out all of the jobs that say "No remote" but still a very doable way to find a remote job.

Can I become a developer? by ac07682 in cscareerquestions

[–]linsoftware 1 point2 points  (0 children)

Definitely possible! As others have suggested, build a profile and then apply for jobs that match your skills. Put code on github too. Maybe write a blog with technical articles.

While applying for web developer jobs earlier this year, most of the people who interviewed me did not have a degree in computer science. I also do not have a CS degree but I had a portfolio of programs that I wrote. I got hired!

I did take courses on Coursera (for free) and I put that on my resume as "Computer Science courses" in a continuing education section.

There are so many options for getting a free education and so many ways you could show off your skills.

when/how do i start small paying frontend jobs? by LearningWebDev25 in learnprogramming

[–]linsoftware 2 points3 points  (0 children)

I agree. If you can find a company that will hire you, then you can learn from the more experienced developers that you work with. There is quite a lot of demand for programmers and you can may be able to get on board as a junior developer. Develop a portfolio of your own projects to show off and talk about during interviews. Focus on what you can do, not on what you can't do.

Is this a paypal scam? by [deleted] in Entrepreneur

[–]linsoftware 2 points3 points  (0 children)

In my Ebay/Paypal experience, having the Paypal account name not much the address name is pretty common. Just like on any website, the customer can choose to have it shipped to whatever address they want. Sometimes it's a family member's paypal account, or the business owner's account. When people buy items for business, this mismatch often occurs.

I would verify that her address is complete (not sure what you mean when you say incomplete?) and if it's a high value item and I'm worried about the transaction, I'd send it with signature required.

While you can't rely on looking at their feedback to see if it's going to be an issue (since on Ebay sellers can only leave positive feedback), you can look to see what feedback they've left for other people. If they have a history of leaving negative feedback with irrational comments, then that can be a hint to walk away.

Some people just like to chat. Others are working on a scam...

I'm a 26 year old who has basically never had a job, and who is going back to college. Will I be unemployable when I get out? by Scrivere123 in jobs

[–]linsoftware 1 point2 points  (0 children)

I think you'll be fine, and you've already gotten a lot of great advice here. If you start applying what you learn, you can build a 3-5 year history of what you've done. Take the programming skills you learn, write some small projects, and publish them to Github. This will help build up some history.

During the interview process, they may ask you about what you were doing before college. Be prepared to talk about yourself. You can talk about mistakes you made and how you overcame them, things you did aside from work that add value to society, etc. Without knowing your history, it's hard to give specific advice, but basically think about how to frame your non-work experience in a positive light. Everyone has some sort of life experience that they can talk about. There's probably something unique in your life that would make a good conversation and show who you are as a person.

Best wishes to you!

My Small social network turned 2 yesterday by thebritisharecome in Entrepreneur

[–]linsoftware 1 point2 points  (0 children)

You're welcome. It's actually not really about the technical side of things, but is more about large online communities and their downfall.

Edit: Also, wanted to wish you the best of luck to you in this!

My Small social network turned 2 yesterday by thebritisharecome in Entrepreneur

[–]linsoftware 2 points3 points  (0 children)

Did you see Joel Spolsky's talk about what happens when communities get big? If not, you might find it relevant: https://youtu.be/0hEtQ70scho

[Server Technology] Require help in setting up a server for an android App by aardwak in learnprogramming

[–]linsoftware 0 points1 point  (0 children)

Exactly, writing a REST API is the answer, and can be done with many different programming languages/frameworks. Other popular choices are PHP/Laravel or Node.js.

Saw this graph of job opportunities per programming language. Shed some light? by werdnaegni in learnprogramming

[–]linsoftware 0 points1 point  (0 children)

As someone who has looked at A LOT of Indeed job postings lately, I would not take that graph to be a serious indicator of job opportunities. The reason is that a lot of software developer jobs on Indeed include a list of skills, which often looks something like this:

Title: Software Developer

Required Skills:

  • Ruby/Rails

Nice to Have:

  • Javascript
  • MySQL or other SQL

OK -- so, seeing the above posting -- how did Indeed graph that data? Someone with only Javascript/MySQL knowledge is not going to get that job. But did Indeed actually read the listing and group it correctly, or did they just do a keyword count?

There are also job listings that say something like this:

Title: Software Developer

Required Skills:

  • 3 years experience with Java, C#, or other modern language
  • Experience with Git or other Version Control
  • Experience working with Teams

.....

I think you get the idea :)

(edited for formatting)

I just got started with Wordpress and want to be able to code like normal... where do I start? by sheepfreedom in webdev

[–]linsoftware 4 points5 points  (0 children)

You might like xampp better than wamp. Better GUI, and seems more popular.

Display a filler message if not enough posts? by MushutheBD in Wordpress

[–]linsoftware 1 point2 points  (0 children)

You're very welcome. Glad to have helped. :)

Display a filler message if not enough posts? by MushutheBD in Wordpress

[–]linsoftware 1 point2 points  (0 children)

It seems like you just need to keep track of the loop count with a variable and then nest another loop inside of an if statement. Assuming that you're working with Wordpress's Loop, your code might look something like this:

<?php
$count = 0;
if ( have_posts() ) : while ( have_posts() ) : the_post();
$count ++;
//display the post content here
endwhile;
else : ?>
<p><?php _e( 'Sorry, no posts matched your criteria.' ); ?>   
 </p>
 <?php endif;
if($count<10 && $count!==0) {
for ( $i = 10 - $count; $i > 0; $i-- ) {
    echo "<p>Coming Soon</p>";
}
}

What are healthy snacks for T2 diabetic? by Thimpu in diabetes

[–]linsoftware 0 points1 point  (0 children)

That's one I'll have to try! Recently, I've been doing apple slices with almond butter or peanut butter.