You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
3.6 KiB
58 lines
3.6 KiB
3 months ago
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>My Learning Website</title>
|
||
|
<link href="/styles/styles.css" rel="stylesheet" type="text/css">
|
||
|
<link href="/programming/styles/styles.css" rel="stylesheet" type="text/css">
|
||
|
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
||
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||
|
<!--[if lt IE 9]>
|
||
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
||
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||
|
<![endif]-->
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div class="banner">
|
||
|
<h1 class="courselink">JAVA Links</h1>
|
||
|
<h2 class="lecturer">Links to LinkedIn Courses, online documentation, tutorials and so on.</h2>
|
||
|
</div>
|
||
|
|
||
|
<article>
|
||
|
<h2 class="sectiontitle">LinkedIn Courses</h2>
|
||
|
<p>LEARNING PATH: <a href="https://www.linkedin.com/learning/paths/become-a-java-programmer">Become a Java Programmer</a>. 9 courses with 21 hours of video starting from basic Java programming, it covers some more advanced topics such as Memory Management, the JDBC, Data Persistence, Cloud-Native Development and even how to do well in a Java interview. Probably a good all round path if you want to get in to programming.</p>
|
||
|
<p>COURSE: <a href="https://www.linkedin.com/learning/learning-java-4">Learning Java</a>. There are dozens of Java courses on LinkedIn Learning, some general and some covering much more specific topics. This is probably a good starting point, released in March 2020 so it is reasonably up to date.</p>
|
||
|
<p>COURSE: <a href="https://www.linkedin.com/learning/advanced-java-programming-2">Advanced Java Programming</a>. Lke Learning Java, this is a good general course, it's also reasonably up to date (May 2019)and gives an introoduction to some more advanced topics such as Advanced Data Structures and Multithreading.</p>
|
||
|
<p>Because of the number of Java Courses available on LinkedIn Learning, it may be difficult to decide which are the best to study unless you have specific interests so a Learning Path like the one shown above or more specific such as <a href="https://www.linkedin.com/learning/paths/become-a-spring-developer">Become a Spring Developer</a> or <a href="https://www.linkedin.com/learning/paths/become-an-android-mobile-app-developer">Become an Android Mobile App Developer</a> might provide a good and cohesive set of courses.</p>
|
||
|
<h2 class="sectiontitle">Documentation</h2>
|
||
|
<p>The latest online documentation at <a href="https://docs.oracle.com/javase/8/docs/">oracle.com</a>.</p>
|
||
|
<h2 class="sectiontitle">Fun Stuff</h2>
|
||
|
<p>The Java Life Rap Music Video, looks a lot like the Office (US)!</p>
|
||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/b-Cr0EWwaTk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||
|
</article>
|
||
|
|
||
|
<div class="btngroup">
|
||
|
<button class="button" onclick="window.location.href='pythonlinks.html';">
|
||
|
PYTHON
|
||
|
</button>
|
||
|
<button class="button" onclick="window.location.href='perllinks.html';">
|
||
|
PERL
|
||
|
</button>
|
||
|
<button class="button" onclick="window.location.href='javalinks.html'">
|
||
|
JAVA
|
||
|
</button>
|
||
|
<button class="button" onclick="window.location.href='clinks.html'">
|
||
|
C / C++
|
||
|
</button>
|
||
|
<button class="button" onclick="window.location.href='/programming/programming.html'">
|
||
|
Programming Page
|
||
|
</button>
|
||
|
<button class="button" onclick="window.location.href='/index.html'">
|
||
|
Home
|
||
|
</button>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|