This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From c2a287eb97a4e3ea2694d38fa650117199775c92 Mon Sep 17 00:00:00 2001 | |
From: Fredrik Strandin <[email protected]> | |
Date: Tue, 4 Oct 2016 20:36:36 +0200 | |
Subject: [PATCH] Adhere to new upstream packaging | |
Also updated to use sha512 instead of sha256, because why not. | |
--- | |
PKGBUILD | 9 ++++----- | |
1 file changed, 4 insertions(+), 5 deletions(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From a13417d296f78623675b7d2e40e46e48601a5cbc Mon Sep 17 00:00:00 2001 | |
From: Fredrik Strandin <[email protected]> | |
Date: Sun, 22 May 2016 12:23:49 +0200 | |
Subject: [PATCH] Add a man page | |
--- | |
.SRCINFO | 6 ++++-- | |
PKGBUILD | 10 +++++++--- | |
pkgcacheclean.8 | 40 ++++++++++++++++++++++++++++++++++++++++ | |
3 files changed, 51 insertions(+), 5 deletions(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# by http://github.com/jehiah | |
# this prints out some branch status (similar to the '... ahead' info you get from git status) | |
# example: | |
# $ git branch-status | |
# dns_check (ahead 1) | (behind 112) origin/master | |
# master (ahead 2) | (behind 0) origin/master | |
tot_diff=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
# Version 2, December 2004 | |
# | |
# Copyright (C) 2013 Fredrik Strandin | |
# | |
# Everyone is permitted to copy and distribute verbatim or modified | |
# copies of this license document, and changing it is allowed as long |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
E1103: 76,11:MyClass.my_func: Instance of 'Request' has no 'json' member (but some types could not be inferred) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#-------------------------------------------------------------------- | |
# Authur: Fredrik "kd35a" Strandin <fredrik [at] strandin (dot) name> | |
# License: WTFPL (Do What The Fuck You Want To Public License) | |
# --- | |
# Disable or enables a specific input device. | |
# Use 'xinput --list' to see which device you want to enable/disable. | |
#-------------------------------------------------------------------- |