Skip to content

Instantly share code, notes, and snippets.

View marteinn's full-sized avatar
✖️
🥕

Martin Sandström marteinn

✖️
🥕
View GitHub Profile

How to use AnyConnect with the keychain on MacOS

1. Store VPN details in keychain

  • Open Keychain Access
  • Navigate to "Login" in the left menu
  • Cmd+N (New Password item)
  • Fill in these details:
    • Keychain Item Name: anyconnect
    • Account name: Your username (firstname.lastname)
    • Password
@marteinn
marteinn / solution-asdf-unrecognized-format.md
Created May 28, 2021 07:29
Solution for Unrecognized archive format in asdf

Are you getting the error "Unrecognized archive format" while trying to install php on asdf?

asdf install php 7.4                                                                                                                      develop ⬆ ✖ ✱ ◼
Determining configuration options...
Downloading source code...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   120  100   120    0     0    272      0 --:--:-- --:--:-- --:--:--   272
100    14  100    14    0     0     18      0 --:--:-- --:--:-- --:--:--    18
@marteinn
marteinn / _app.js
Created March 5, 2021 06:18
How to add IE11 css variables polyfill in Next.js
// Polyfills
if (typeof window !== 'undefined') {
require("ie11-custom-properties");
}
function MyApp({ Component, pageProps, err }) {
return <Component {...pageProps} err={err} />;
}
export default MyApp;
@marteinn
marteinn / _document.js
Created September 26, 2020 06:27
Next.js: How to capture and use page props in next/document
import Document, { Html, Head, Main, NextScript } from 'next/document';
class CustomDocument extends Document {
static async getInitialProps(ctx) {
let pageProps = null;
const originalRenderPage = ctx.renderPage;
ctx.renderPage = () =>
originalRenderPage({
enhanceApp: (App) => (props) => {
@marteinn
marteinn / info.md
Last active September 16, 2020 19:07
Integrating a DAM solution in Wagtail

Integrating a DAM solution in Wagtail

Key arguments for using a DAM

First, what is the primary purpose with using a DAM (Digital Asset Management) solution? There are several, but these are the features:

  • Having a centralized digital asset management (keep your pictures in one place)
  • Keeping your assets in sync and making sure licenses are up to date (when does image X expire, are author information correct?)
  • Keep track on where your digital assets usage (my bird image are used on site X, Y and Z)

So, how would we go about integrating a DAM in Wagtail? These are the steps me (me and others) took in a real-world project.

@marteinn
marteinn / admin.py
Created August 11, 2020 09:39
How to set manual permissions in Wagtail ModelAdmin, by overriding the PermissionHelper
from wagtail.contrib.modeladmin.helpers.permission import PermissionHelper
from wagtail.contrib.modeladmin.options import (
ModelAdmin,
modeladmin_register
)
class MyModelPermissionHelper(PermissionHelper):
def user_can_create(self, _user):
return False
@marteinn
marteinn / all_user_report.html
Last active August 10, 2020 13:46
How to generate a report with all users in Wagtail
{% extends 'wagtailadmin/reports/base_report.html' %}
{% load i18n wagtailadmin_tags %}
{% block results %}
{% if object_list %}
<table class="listing">
<thead>
<tr>
<th class="title">
{% trans 'Name' %}
@marteinn
marteinn / edit_handlers.py
Last active August 2, 2022 20:17
How to create a native color panel for Wagtail (WIP)
from django.forms import widgets
from wagtail.admin.edit_handlers import FieldPanel
class ColorInputWidget(widgets.Input):
input_type = 'color'
class ColorPanel(FieldPanel):
def widget_overrides(self):

How to disable SSL verification for django-revproxy

You do this by supplying your own pool manager that disables any cert verification.

from revproxy.views import ProxyView
from urllib3 import PoolManager

class NoSSLVerifyProxyView(ProxyView):
 def __init__(self, *args, **kwargs):
@marteinn
marteinn / apikey_authentication.py
Created March 8, 2020 09:53
This is a Django Rest Framework authenticator to tastypie ApiKey
from django.utils.translation import ugettext_lazy as _
from rest_framework import exceptions
from rest_framework.authentication import TokenAuthentication
from tastypie.models import ApiKey
class ApiKeyAuthentication(TokenAuthentication):
model = ApiKey
keyword = 'ApiKey'