Vorlesung „Programmieren in Rust“ an der Universität Osnabrück im Wintersemester 2016/17. Slides und weitere Informationen: https://github.com/LukasKalbertodt/programmieren-in-rust
Which is exactly what we've been doing. Like Scala, Vue works really, really well, when used properly. It turns out Vue isn't a buzzword, Vue is a workhorse. A lot of our problems have been solved, by us and others. We still have problems but, we now have a reproducible "way to write Vue." We don't adopt every new idea out there, but we have changed a few things since we last spoke.
vavr - turns java™ upside down
In functional-style programming, functions may both receive and return other functions. Instead of a function being simply a factory or producer of an object, as in traditional object-oriented programming, it is also able to create and return another function. Functions returning functions can result in cascading lambdas, especially in highly concise code. While this syntax may look quite strange at first, it has its uses. This article will help you recognize cascading lambdas and understand their nature and purpose in code.
Angular Style Guide: A starting point for Angular development teams to provide consistency through good practices.
This second part of the Stateless Spring Security series is about exploring means of authentication in a stateless way. If you missed the first part about CSRF you can find it here.
So when talking about Authentication, its all about having the client identify itself to the server in a verifiable manner. Typically this start with the server providing the client with a challenge, like a request to fill in a username / password. Today I want to focus on what happens after passing such initial (manual) challenge and how to deal with automatic re-authentication of futher HTTP requests.
Gladys is an open-source program which runs on your Raspberry Pi.
It communicates with all your devices and checks your calendar to help you in your everyday life.
A brief introduction to common Git workflows including the Centralized Workflow, Feature Branch Workflow, Gitflow Workflow, and Forking Workflow.
his script will convert notes from Synology Note Station to plain-text markdown notes. The script is written in Python and should work on any desktop platform. It's tested on Linux and Windows 7.
Awesome List of resources on agile software development.
The WebLogic team is certifying WebLogic domains being orchestrated in Kubernetes. As part of this work, we have created a sample which deploys a WebLogic domain/cluster in a Kubernetes environment and scales/shrinks the cluster through both Kubernetes and WebLogic.
WebLogic Server offers a rich feature set to monitor and diagnose servers, applications and resources. In this sample, we expose those metrics through Prometheus and display them in Grafana. We have written a WebLogic Exporter, exposes the WebLogic metrics in a format that can be understood by Prometheus.
modest collection of cheatsheets
Hier wird ein Photometer beschrieben, dass für geringe Kosten auch von Personen mit wenigen Vorkenntnissen in Elektronik-, Computer und Softwarebereich selbst herstellbar ist.
SDKMAN! is a tool for managing parallel versions of multiple Software Development Kits on most Unix based systems. It provides a convenient Command Line Interface (CLI) and API for installing, switching, removing and listing Candidates. Formerly known as GVM the Groovy enVironment Manager, it was inspired by the very useful RVM and rbenv tools, used at large by the Ruby community.
Handling checked exceptions in lambda expressions can often be frustrating. Luckily, there is a type inference rule that we can exploit.
An open source Operating System for the Internet of Things. Supported microcontrollers: ESP32, ESP8266, STM32, TI CC3200, TI CC3220. Amazon AWS IoT integrated. Code in C or JavaScript.
modern-js-cheatsheet - Cheatsheet for the JavaScript knowledge you will frequently encounter in modern projects.
Node.js developers are embracing Docker for repeatable builds, and WebStorm supports Docker-oriented workflows: Quickly bootstrap your Node.js app with a Dockerfile, then run and debug your app in Docker, from the WebStorm IDE.
junit-quickcheck is a library that supports writing and running property-based tests in JUnit, inspired by QuickCheck for Haskell.
Property-based tests capture characteristics, or "properties", of the output of code that should be true given arbitrary inputs that meet certain criteria. For example, imagine a function that produces a list of the prime factors of a positive integer n greater than 1. Regardless of the specific value of n, the function must give a list whose members are all primes, must equal n when all multiplied together, and must be different from the factorization of a positive integer m greater than 1 and not equal to n.
Rather than testing such properties for all possible inputs, junit-quickcheck and other QuickCheck kin generate some number of random inputs, and verify that the properties hold at least for the generated inputs. This gives us some reasonable assurance over time that the properties hold true for any valid inputs.