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
declare module 'jspanel4' { | |
// Types. | |
export type IJSPanelAutoPosition = 'down' | 'left' | 'up' | 'right'; | |
export type JSPanelContent<T = string | HTMLElement> = T; | |
export type IJSPanelContentArray< | |
TContent = string | HTMLElement, | |
> = IJSPanelDynamicContent<TContent>[] | JSPanelContent<TContent>; | |
export type JSPanelControlStatus = 'disable' | 'enable' | 'hide' | 'remove' | 'show'; | |
export type IJSPanelDimension = number | string | IJSPanelCallback<number | string>; | |
export type IJSPanelDynamicContent< |
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
// Colors. | |
$color-map-variations: ( | |
alpha: .95, | |
dark: 10%, | |
darker: 15%, | |
darkest: 20%, | |
light: 5%, | |
lighter: 10%, | |
lightest: 15%, |
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 bash | |
[ ! -d .git ] && "This is not a git directory." && exit 1 | |
# Setup the gource info for the repo. | |
~/gource/setup | |
# Create the video. | |
gource --load-config ./.git/gource/config.ini | ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 8 -bf 0 ./gource.mp4 |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Patch Review</title> | |
<link type="text/css" rel="stylesheet" href="/sites/all/libraries/prism/prism.css" media="all"> | |
<link type="text/css" rel="stylesheet" href="/sites/all/libraries/dreditor/dist/css/dreditor.css" media="all"> | |
<link type="text/css" rel="stylesheet" href="/sites/all/libraries/dreditor-ui/dist/css/dreditor-ui.css" media="all"> | |
</head> | |
<body> |
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
<?php | |
namespace Drupal\bootstrap_mobildata\Plugin\Form; | |
use Drupal\bootstrap\Annotation\BootstrapForm; | |
use Drupal\bootstrap\Utility\Element; | |
use Drupal\Core\Form\FormStateInterface; | |
/** | |
* Implements hook_form_FORM_ID_alter(). | |
* |
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
<?php | |
// In your sub-theme, create this file ./THEMENAME/src/Plugin/Preprocess/ViewsExposedForm.php and place this contents in it. | |
/** | |
* @file | |
* Contains \Drupal\THEMENAME\Plugin\Preprocess\ViewsExposedForm. | |
*/ | |
namespace Drupal\THEMENAME\Plugin\Preprocess; |
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
# Drush Bot Service | |
description "Drush Bot" | |
author "Mark Carver <[email protected]>" | |
start on runlevel [2345] | |
stop on starting rc RUNLEVEL=[016] | |
respawn | |
respawn limit 2 5 |
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
// Helper classes. | |
@each $property in (border, margin, padding) { | |
@each $direction in ('', -left, -right, -top, -bottom) { | |
.#{$property}#{$direction} { | |
@if $property == border { | |
#{$property}#{$direction}: 1px solid $gray-lighter; | |
} | |
@else { | |
#{$property}#{$direction}: 1em; | |
} |
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 | |
# cocoaDialog Rsync Progress | |
# | |
# Rsync files using the cocoaDialog progress bar. Example usage: | |
# $ rsync -avr --progress ~/source ~/destination | ./rsync-progress.sh | |
# | |
# Copyright (C) 2014 Mark Carver | |
# | |
# Adapted from Kevin Hendricks example code |
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 | |
# Script: cocoaDialogTests.sh | |
# Author: Mark Carver | |
# Created: 2011-09-23 | |
# Updated: 2012-07-24 | |
# Copyright (c) 2012 Mark Carver. All rights reserved. | |
cocoaDialog(){ | |
# Replace this with your path if it isn't installed in the applications folder. | |
/Users/Shared/Applications/cocoaDialog.app/Contents/MacOS/cocoaDialog "${@}"; |
NewerOlder