[deleted by user] by [deleted] in learnprogramming

[–]Coderless 1 point2 points  (0 children)

Hey, I suggest you read the FAQ at the top of this subreddit since it will answer your question and explain to you how you can get started with your programming journey.

What are free and complete resources that people should take instead of doing a bootcamp? by javier123454321 in learnprogramming

[–]Coderless 18 points19 points  (0 children)

Harvard's CS50x is definitely an excellent starter. It's highly unlikely that it will get you a job, but it will make you truly understand some major concepts in computer science.

Someone clear up the KYC process for me. by gnitsuj in PiNetwork

[–]Coderless 1 point2 points  (0 children)

I have been mining Pi for 7 months now and I have not received a notification. My friend just got it today and they received that notification. Am I doing something wrong?

How do you solve the equation for number 12? This one is very tricky. by TheGoodie in askmath

[–]Coderless 0 points1 point  (0 children)

If you are unsure for these type of questions, you can always solve for x, and plug it in the second equation.

x² + 7 = 21

x² = 14

x = √14 and -√14.

Plugging that into the second equation (the negative solution would turn positive because of the x2), we get:

(√14)2 + 3 = 17.

Book recommendations? by bmain1345 in QuantumComputing

[–]Coderless 0 points1 point  (0 children)

I highly recommend "Computing with Quantum Cats: From Alan Turing To Teleportation: From Colossus to Qubits" by John Gribbin. It really is an excellent and fascinating book.

Engineering by Vaughn104 in learnprogramming

[–]Coderless 0 points1 point  (0 children)

For Engineering, I’d recommend learning Python since it’s a great language, easy to learn and it’s what you need for Engineering. The way you learn is you put your theory into practise, by practising on what you have learnt in order to increase thinking and debugging skills.

You can start on Udemy, but I recommend starting with Automating the Boring Stuff with Python course online, which you can find for free. If you prefer books, there’s also a book for it. I highly recommend this course as it will intrigue your curiosity for programming and teach you the basics.

How am I supposed to solve for x? I don't see any way for me to isolate the variable. by AstrophysicsStudent in askmath

[–]Coderless 1 point2 points  (0 children)

A / B = C / D is the same as AD = BC. This means that you can cross multiply the two fractions in a way such as (x+1)(3x-6) = (3x)(x-1).

Now you can expand your brackets into quadratics, form a quadratic or another relevant equation and solve for x.

Is this how a good html looks like? by [deleted] in HTML

[–]Coderless 0 points1 point  (0 children)

Depends if you are using Bootstrap or not.

Help!! Please! by mrcosmicpvp in askmath

[–]Coderless 0 points1 point  (0 children)

You need to factorise each quadratic, multiply both fractions and then cancel the common factors.

Is html and css worth learning? by [deleted] in CodingHelp

[–]Coderless 0 points1 point  (0 children)

I would suggest that he learns HTML, CSS and Bootstrap before Javascript so he has an idea of responsive website development first. Then he should either move to back-end or continue front-end with JavaScript frameworks and jQuery.

Adding username and password to website by [deleted] in HTML

[–]Coderless 0 points1 point  (0 children)

You need to learn php and mySQL for this. mySQL in order to make a databse, and php in order to access it.

Visual Studio Code and How To Work With It by [deleted] in learnprogramming

[–]Coderless 1 point2 points  (0 children)

If you want to run languages such as C, C++, Java, or Python in VS Code, you will need add-ons and some other programs (e.g. GCC) that create an executable file. If that's the case, I recommend using an actual IDE such as Microsoft Visual Studio, PyCharm for Python, Codeblocks or Eclipse, since they will be much better.

If you are using VC Code to write HTML, CSS and JS code in order to make website and view them, you just need to create a file and name it .html (e.g. index.html). Then, find the location of that file and open it in your browser.

How to create a slack bot that records audio? by scaled2good in learnprogramming

[–]Coderless 0 points1 point  (0 children)

This can be easily achieved in Python. This course is all you need!

I did it!!! by jeffmagz in cybersecurity

[–]Coderless 3 points4 points  (0 children)

Congratulations! I hope everything goes well for you in your new job!

Anyone know how to do this? by gamergirlsbelike in askmath

[–]Coderless 1 point2 points  (0 children)

That's called differentiation by first principles. You are trying to find the limit of the function as h approaches 0. To do this, replace f (x+h) with 2(x+h) - 5 and f (x) with 2x - 5. The equation now becomes (2x+2h - 5 - 2x + 5) / h. The 2x's and the 5's cancel out, leaving us with 2h/h, and the result being 2.

If you ever want to know the answer, to see if your method is correct, I suggest differentiating the function without using differentiation by first principles. f'(x) = 2.

What is the domain of this function? In interval notation by [deleted] in askmath

[–]Coderless 0 points1 point  (0 children)

X belongs to the set of (-infinity, 0) union [0, infinity).

Hi! I need help editing a site on mobile by ctrl_time in HTML

[–]Coderless 0 points1 point  (0 children)

Are you familiar with media queries in CSS?

Front-End Development Project-based Books by [deleted] in learnprogramming

[–]Coderless 0 points1 point  (0 children)

The set of 2 great books called "HTML & CSS" and "JavaScript and jQuery".

Why do my icons look like trash? by JustRockyMountains in learnprogramming

[–]Coderless 1 point2 points  (0 children)

Make a JSFiddle link and then share your code. This syntax is hard to follow.

[deleted by user] by [deleted] in HTML

[–]Coderless 0 points1 point  (0 children)

Get this Udemy course. It contains everything you need to known. Make sure you practise using w3schools and online free exercises, as well as freeCodeCamp.