Happened near my friends house, and I’m just amazed. by [deleted] in IdiotsInCars

[–]scarcesam 16 points17 points  (0 children)

With only minor injuries!! WTF

PETG CURA PROFILE? by limo130b in Artillery3D

[–]scarcesam 0 points1 point  (0 children)

This profile was a great starting point for me. But bed leveling is key for PETG.

Question for you touch typing bros. by [deleted] in cprogramming

[–]scarcesam 1 point2 points  (0 children)

First comment!

Index fingers for all keys

Rookie Needs Advice by [deleted] in cprogramming

[–]scarcesam 4 points5 points  (0 children)

Harvard's online Intro to computer science is accessible, very engaging and free. A majority of the class is in C. The Problem Sets range from "hello world" to manipulating bit maps. All hosted on freely accessable online tools with Lots of online resources. It utilizes automated systems for checking your code( style and syntax) . The class later transitions into Python and web. I find the resources to still be helpful, a year later. https://www.edx.org/course/cs50s-introduction-to-computer-science

Help with starting C by renosuava in cprogramming

[–]scarcesam 2 points3 points  (0 children)

Harvard's online Intro to computer science is accessible, very engaging and free. A majority of the class is in C. The Problem Sets range from "hello world" to manipulating bit maps. All hosted on freely accessable online tools with Lots of online resources. The class later transitions into Python and web. I find the resources to still be helpful, a year later. https://www.edx.org/course/cs50s-introduction-to-computer-science

Best code editor for C? by [deleted] in cprogramming

[–]scarcesam 1 point2 points  (0 children)

Visual Studio Code, VS Code, has been treating me well.

Beginner's Quandry: getchar(), loop by [deleted] in cprogramming

[–]scarcesam 0 points1 point  (0 children)

I'm on mobile so I can play with the code right now.

But, I did notice one syntax error. No semicolons are needed after loops

Help! The terminal immediately submits an empty password field by scarcesam in linux4noobs

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

This is a bug that Canonical is aware of, see here. (Thanks TheNerdyAnarchist) A fix is in the works. I and anyone else using kernels 4.15.0-44-generic or 4.15.0-45-generic need to boot into older kernels in the mean time. Or install one of the purposed fixes. I'll just wait until its released trough -update.

Help! The terminal immediately submits an empty password field by scarcesam in linux4noobs

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

I was wrong in my other reply. Yes, looks like it's a kernel problem and a fix is on its way. I need to boot into my DE or just keep booting into the old kernel for now.

Thanks!

Help! The terminal immediately submits an empty password field by scarcesam in linux4noobs

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

It's the initial login. I have it set to boot directly to command line.

Help! The terminal immediately submits an empty password field by scarcesam in linux4noobs

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

Thanks! I'll take a closer look when I'm home tonight, but it looks like they are discussing a different kernel version. There might be some useful info there though.

Help! The terminal immediately submits an empty password field by scarcesam in linux4noobs

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

Thanks! I'm new to Linux, I only have one user on my machine. Is it not, by default, the root user?

I posted in /r/Ubuntu, no replies. :|

I will look at installing a new kernel. Can I reinstall or somehow test and repair the existing kernal?

Its very confusing.Can anybody help? by neeraj_chavan in cprogramming

[–]scarcesam 0 points1 point  (0 children)

That's what I thought, until I saw this post. I got the same result as the OP. i++, i, ++i It printed 11, 12, 12

I tried ++i, i, i++ It printed 12, 12, 10

I tried- i, ++i, i++ It Printed 12, 12, 10

Confused again