a. Tell me about your background.
a. Where would you say your technical strength lie? in what areas are you hoping to grow?
b. Are there any projects or experiences your are proud of, from a technical standpoint?
def alphabetize(arr, rev=false) | |
if rev | |
arr.sort { |item1, item2| item2 <=> item1 } | |
else | |
arr.sort { |item1, item2| item1 <=> item2 } | |
end | |
end | |
books = ["Heart of Darkness", "Code Complete", "The Lorax", "The Prophet", "Absalom, Absalom!"] |
Dan, the narrative is fine as is, unless artur has any technical changes.
The two style things I would suggest for a biggest impact is - a code block. The concepts may be easier to grasp and remember if users have the output of the command printed.
For this article, the output can be:
git reset sha
git log
(optional)git revert sha
Bash scripting;
if statement:
if statement [ expression ]; then echo "True"
Java is a programming language used to build a variety of applications, such as web servers, mobile applications, desktop applications, and more.
Java operates on the WORA (Write Once, Run Anywhere) principle, which means that Java programs can be created once and then run on nearly any platform, including Mac OS X, Microsoft Windows, and Linux.
The fundamentals you will learn in this Java course are also shared by many other programming languages; you may see concepts that you've learned from other courses, or be able to apply your knowledge from this course to other courses.
Java is a general purpose, object-oriented computer programming language. It is used for a wide variety of applications, including web servers, consumer electronics, mobile platforms, and more.
As of 2015, Java is one of the most popular programming languages in the world! Learning Java will help you become a versatile programmer and build strong computer programming fundamentals.
principles of java
java is interpreted. it compiled to bytecode, instead of machine language the compiled application is portable between platforms without recompiling
architectural high-performance
## principles of java | |
java is interpreted. | |
it compiled to bytecode, instead of machine language | |
the compiled application is portable between platforms without recompiling | |
architectural | |
high-performance |