most of these require logout/restart to take effect
# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
# Set a shorter Delay until key repeat| #!/bin/bash | |
| # -*- sh -*- | |
| : << =cut | |
| =head1 NAME | |
| zram - Plugin to monitor zram usage | |
| =head1 CONFIGURATION |
| #!/usr/bin/perl | |
| use warnings; | |
| use strict; | |
| use utf8; | |
| use File::Basename; | |
| #--------------------------------------------------------------------- |
| import boto3 | |
| import argparse | |
| def main(): | |
| argparser = argparse.ArgumentParser(description='Testing ARN stuff') | |
| argparser.add_argument("--role", help="If running with a role provide it here", required=True) | |
| argparser.add_argument("--profile", help="Credential profile", required=True) | |
| argparser.add_argument('--region', help='AWS Region to work within, defaults to eu-central-1', default='eu-central-1', required=False) | |
| args = argparser.parse_args() | |
| role = args.role |
| @interface NSString (KBAdditions) | |
| - (CGFloat)fontSizeWithFont:(UIFont *)font constrainedToSize:(CGSize)size minimumScaleFactor:(CGFloat)minimumScaleFactor; | |
| @end |
I hereby claim:
To claim this, I am signing this object:
| # Remove some Windows Store pakacges which are blocking Sysprep | |
| # Execution of scripts has to be neabled: Set-ExecutionPolicy RemoteSigned | |
| # https://forums.fogproject.org/topic/5873/windows-10-unattend-xml-sysprep-answer-file-challenge/16 | |
| $AppsList = "Microsoft.Bing" , "Microsoft.BingFinance" , "Microsoft.BingMaps" , "Microsoft.BingNews"` | |
| , "Microsoft.BingSports" , "Microsoft.BingTravel" , "Microsoft.BingWeather" , "Microsoft.Camera"` | |
| , "microsoft.microsoftskydrive" , "Microsoft.Reader" , "microsoft.windowscommunicationsapps"` | |
| , "microsoft.windowsphotos" , "Microsoft.XboxLIVEGames" , "Microsoft.ZuneMusic"` | |
| , "Microsoft.ZuneVideo" , "Microsoft.Media.PlayReadyClient" | |
| , "9E2F88E3.Twitter", "king.com.CandyCrushSaga" |
| from tastypie.exceptions import NotFound | |
| from tastypie.resources import ModelResource | |
| from tastypie.authentication import BasicAuthentication, ApiKeyAuthentication | |
| from tastypie.models import ApiKey | |
| from django.contrib.auth.models import User | |
| __author__ = 'martinsandstrom' | |
| class ApiTokenResource(ModelResource): |