Hopp til hovedinnhold

3. desember

Totalt 12 innlegg

Hva skjedde på fagdagen?

Innovasjon
Podkast (13 min)
Fra Stian Surén, Valentina Sørlie, Ola Claussen

Det var en mystisk stand på sommer-fagdagen som tilsynelatende ønsket å A/B-teste en ny ansattliste-app... Men hva var det egentlig som ble testet? Vi snakker litt om hypotesetesting, design av eksperimenter og er så vidt innom signifikans.

Get started with animations in React

React
Artikkel (5 min)
Fra Bendik Bjørndal Iversen

Have you never been able to make that menu appear in the awesome way you've always wanted? Perhaps you've got lots of experience making things move with CSS animations, but you want to learn how (or if) a modern animations library could make your life easier? Or perhaps you just want to have fun and see how easy it is to animate elements in React using Framer Motion? Then read on! This article won't give you all the answers, but hopefully it will help you getting started.

Stroke it and Dash it – A stroke-dasharray Christmas Tale

CSS
Artikkel (5 min)
Fra Halldis Søhoel

If Not Now, When?

Kotlin
Artikkel (2 min)
Fra Øyvind Midtbø

This article will give you a brief introduction to the Kotlin when expression and how to use it.

Bug Bounty - The modern treasure hunt

Sikkerhet
Artikkel (6 min)
Fra Hans Kristian Henriksen

So, you would like to be one of the cool security researchers that find vulnerabilities in the most used websites in the world, saving millions from the bad guys, and maybe make some cash along the way? Well, this is your lucky day! It's time to learn about bug bounties!

Tips and tools for running Java apps in a container

Java
Artikkel (4 min)
Fra Even Holthe

These days everything can run in a container. It may be databases, continuous integration systems, esoteric hobby projects and even Windows. In this article I’ll shine a light on various tips and tools that might be helpful when packaging Java based applications for running in containers.

Automatic deploy (chatops) with @Rultor

Open source
Artikkel (2 min)
Fra Eivind Bergstøl

The discussion of an automatic release was started many years ago, and there are several options for how to do this (none mentioned, none forgotten). Then I came across @Rultor by accident on Twitter.

Why development teams should talk about identity.

UX
Artikkel (4 min)
Fra Arne Magnus Mykkelbost

A brand, or identity, is all about the feeling you get when you encounter a product. Identity designers work with logos, packaging, advertisements and more to form a desired feeling in the hearts of a brand's customers. So then why am I, a UX-designer working on IT projects, writing an article about identity design? Aren't these two separate fields?

Linear Models

Maskinlæring
Artikkel (5 min)
Fra Audun Eltvik, Michael Nordmo

There are many different types of machine learning models. Linear models are some of the simplest, but also some of the most widely used. In this post we’ll explain what a linear model is and why linear models are so popular.

Need to handle NEARLY static content? Lambda@Edge to the rescue

Sky
Artikkel (8 min)
Fra Jørn Ola Birkeland

The Problem You’ve got your SPA, consisting of static CSS, HTML and JS, and high-performing microservices to provide the dynamic behavior of your app. The only thing remaining is hosting the static content somewhere, point a DNS to it, and call it a day. However, it turns out that your app needs a top menu, which is shared between all the apps in the organization, to provide a common look-and-feel and navigation. All of a sudden you’re pushed into the world of content transclusion, now loosely referred to as micro frontends

Immutable by default

Funksjonell
Artikkel (6 min)
Fra Bendik Solheim

You should always strive to make, and make use of, immutable data structures. Even if your domain is inherently mutable (like most domains, really), there are quite a few pitfalls that can give you headaches later on if you also use mutable data structures. Many of them are avoidable simply by making it harder to accidentally modify data.

Removing duplicates from an array

JavaScript
Artikkel (3 min)
Fra Svein Petter Gjøby

Knowing more than one way to solve a given problem can help you write more readable code. Let's look at three different ways to remove duplicates elements from an array.