Få insikter i hur vi arbetar och bli inspirerad!

Vill du lära dig om det senaste inom Javascript, Python, Django, React, React Native? Här hittar du artiklar om vår erfarenhet av att utveckla moderna digitala lösningar.

Läs alla våra nyheter nedan

Här hittar du det senaste från oss.

 
Fire up
2020-03-24

Deleting your git commit history without removing repo on Github/Bitbucket

When you have just found out that you or a fellow team mate has committed sensitive data into your Github repo. What do you do?
Toy
2020-03-17

Custom Code Snippets in VS Code for your Django Project

Ever misspelled something whilst spinning up a Django template? Do you ever struggle to remember the syntax of that template tag you rarely use? Custom VS Code snippets to the rescue!
Supreme image
2020-03-03

How to cache API Endpoints

When developing advanced web software you don't want the user to hit the database if it's not necessary.
Splash
2020-02-18

Install direnv on Ubuntu 18.04 in 1 min

At Will & Skill we care deeply about using the right tools to optimize our workflow. If we can shave off a few seconds here and there we can save a lot of time in the long run.
Post it
2020-02-25

I updated our website to use React with Next.js and DatoCMS... here is what I learned!

I was tasked with updating our website from the static HTML-pages we've had to something that would be easier to maintain and update. I was asked to re-do the entire site using DatoCMS and the React framework "Next.js".
Green fruit
2020-02-11

Celery 4 with Django on Ubuntu 18.04

There are many things that we want to do asynchronously without unnecessarily blocking our code. Celery is a library that does exactly that. Celery is a task queue that plays well with Django and we have had a great ton of fun using for the past few years!
nice pic
2020-02-04

Custom Django admin actions with an intermediate page

To create a custom action in django admin is pretty straight forward. You must define a function which is then referenced from the models admin definition. This function will accept three arguments:
Coffee in the making
2020-01-21

Using CORS with Nginx

We have had the opportunity to work on a lot of frontend projects over the years at Will & Skill and one of the things that often come around in every project is how You handle CORS requests.
Watch
2020-01-07

How to Install PostgreSQL 9.6 on Ubuntu 18.04 LTS within 3 minutes

At Will & Skill we are avid users of Postgres due to its simplicity and deep integration with the Django ORM. If You have not used Postgres before, You should definitely give it a try.
Keyboard
2019-12-31

How to fix EACCES errors with NPM on MacOS

An EACCES error from npm on macOS usually means a permissions issue with npm's directories. To fix this, change ownership of the directories with sudo chown -R \whoami` ~/.npmandsudo chown -R `whoami` /usr/local/lib/node_modules. After updating permissions, rerun the npm commands without sudo` to resolve the error.
Mobile on purple background
2019-12-17

Build a great login experience with React Native, Axios and JSONWebToken

Most apps need some kind of login in order to serve data that is related the to the authorized User. In this short tutorial we are going to build a good looking login form in React Native.
Mobile on desk
2019-12-03

Setup a Next.js project with PM2, Nginx and Yarn on Ubuntu 18.04

We tend to deploy our projects on Now since it is super convenient but there might be instances where You need to deploy things to Your own servers. This is a short tutorial on how You can easily setup a working environment in no time.