This file contains 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 | |
# NOTE this works only with bash, not dash | |
# Based on: | |
# https://gist.github.com/dislick/914e67444f8f71df3900bd77ccec6091 | |
# NOTE: first digit is MSB contrary to the Javascript version linked above. | |
# This does not work for non-numerical strings but this should be easy to remedy | |
# https://semver.org/#semantic-versioning-specification-semver | |
# Semantic Version string to numerical version | |
semver2num() { |
This file contains 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
""" App administration """ | |
from django import forms | |
from django.contrib import admin | |
from django.contrib.auth.admin import UserAdmin as BaseUserAdmin | |
from django.contrib.auth.models import User | |
from django.contrib.auth.forms import UserCreationForm, UserChangeForm | |
from django.contrib.auth.decorators import login_required | |
from django.utils.translation import gettext_lazy as _ | |
from allauth.account.models import EmailAddress |
This file contains 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
using System; | |
using System.IO; | |
using UnityEditor; | |
using UnityEditor.Build; | |
using UnityEditor.Build.Reporting; | |
using UnityEngine; | |
#if UNITY_EDITOR_OSX | |
/// <summary> |
This file contains 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
Verifying my Blockstack ID is secured with the address 14TZvonGz7CqKcFn7Az4vFovmfEZPoGBy9 https://explorer.blockstack.org/address/14TZvonGz7CqKcFn7Az4vFovmfEZPoGBy9 | |
NOTE: no endorsement! |
This file contains 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/sh | |
### default length | |
LENGTH=20 | |
### command line | |
let L="$1"+0 | |
if [ $L -gt 2 ]; then | |
LENGTH=$L | |
fi |
This file contains 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 python | |
#-*- coding: utf-8 -*- | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains 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
property device : "Nokia 515" | |
tell application "Finder" to set myPath to selection | |
on sendFile(f) | |
-- tell application "Finder" to set fileAlias to selection as alias | |
set fileAlias to f as alias | |
set fileToSend to fileAlias | |
tell application "Finder" to open fileToSend using application file id "com.apple.BluetoothFileExchange" | |
activate application "Bluetooth File Exchange" | |
tell application "System Events" |
This file contains 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
/* vim: ts=2 noet ai : | |
$Id: exifthumbnailfetcher.user.js $ | |
LICENSE | |
======= | |
This program is free software; you can redistribute it and/or modify it | |
under the terms of the GNU General Public License as published by the |
This file contains 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
Add permission to config | |
'modules' => [ | |
'user' => [ | |
'class' => 'dektrium\user\Module', | |
'adminPermission' => 'user_admin', // RBAC permission for administration | |
... | |
Add RBAC auth_item | |
name: 'user_admin' | |
type: 2 |
This file contains 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
<?php | |
use MongoDB\BSON\ObjectID; | |
/** | |
* Legacy MongoId implementation for backward compatibility with php < 7.0 | |
* Usage: add this to entry script | |
* if (version_compare(phpversion(), '7.0.0', '>')) { | |
* // php v7 uses different MongoDB classes | |
* Yii::$classMap['MongoId'] = '@app/components/MongoId.php'; | |
* } |