I hereby claim:
- I am kakra on github.
- I am hurikhan77 (https://keybase.io/hurikhan77) on keybase.
- I have a public key ASBMoPfqYDyZpMPKglwE58l8Wa8ocmIXOD9WwLfpHaGmFQo
To claim this, I am signing this object:
| #!/bin/bash | |
| # --- Configuration --- | |
| BTRFS_MOUNT_POINT="/mnt/btrfs-pool/benchmark" # Your Btrfs mount point | |
| BTRFS_UUID="7fb2b91c-c484-4d82-86af-fb91239b89e4" # Your Btrfs FSID | |
| SYSFS_POLICY_PATH="/sys/fs/btrfs/${BTRFS_UUID}/read_policy" | |
| SYSFS_DEVINFO_PATH="/sys/fs/btrfs/${BTRFS_UUID}/devinfo" | |
| # Fio Test File Configuration | |
| FIO_TEST_FILE="${BTRFS_MOUNT_POINT}/fiotest.tmp" |
| # /etc/systemd/user/game.slice.d/99-resources.conf | |
| [Unit] | |
| Description=Game Slice | |
| [Slice] | |
| CPUWeight=2000 | |
| IOWeight=400 | |
| #MemoryLow=16G |
| #!/usr/bin/perl | |
| # Scan unstaged changes in git tracked files, identify which commits they could | |
| # be applied to as fixups, and automatically produce the appropriate "fixup!" | |
| # commits for use with "git rebase -i --autosquash". | |
| # | |
| # Copyright (C) 2016, 2017 by Mat Sutcliffe | |
| # This program is free software; you can redistribute it and/or modify it under | |
| # the GNU General Public License as published by the Free Software Foundation; | |
| # either version 2 of the License, or (at your option) any later version. |
| From 767943964b2e71c29db86dd6c6fd2863d1a05866 Mon Sep 17 00:00:00 2001 | |
| From: Con Kolivas <[email protected]> | |
| Date: Tue, 13 Nov 2018 17:18:04 +1100 | |
| Subject: [PATCH 01/16] MultiQueue Skiplist Scheduler version v0.180.1. | |
| --- | |
| .../admin-guide/kernel-parameters.txt | 8 + | |
| Documentation/scheduler/sched-BFS.txt | 351 + | |
| Documentation/scheduler/sched-MuQSS.txt | 373 + | |
| Documentation/sysctl/kernel.txt | 37 + |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| /usr/bin/kernel-install remove $1 $2 | |
| /usr/bin/kernel-install add $1 $2 |
| #!/bin/bash -e | |
| COMMIT=${1:-HEAD} | |
| VERSIONS=$(git tag --list --sort -v:refname --no-contains ${COMMIT}) | |
| SINCE=$(head -1 <<<${VERSIONS}) | |
| SINCE=${SINCE:-$(git rev-list --max-parents=0 HEAD)} | |
| cat <<-SUBJECT | |
| Changes since ${SINCE} up to ${COMMIT} |
| Section "InputClass" | |
| Identifier "Enable natural scrolling by default" | |
| MatchIsPointer "on" | |
| MatchDevicePath "/dev/input/event*" | |
| MatchDriver "libinput" | |
| Option "NaturalScrolling" "on" | |
| EndSection |
| @-moz-document domain("autotask.net") { | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| height: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| visibility: hidden; | |
| } |
| # use helpers from models or any part of your app (you shouldn't do that, however...) | |
| # ... put in config/initializers | |
| # | |
| # class MyModel < ActiveRecord::Base | |
| # def some_attribute | |
| # HelperProxy.instance.number_format some_value, precision: 4 | |
| # end | |
| # end | |
| class HelperProxy |