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
| git log --first-parent ^lastcommit @ | grep -Po '.*Merge-request: !\K.*$' | xargs -l1 bash -c 'printf "- https://gitlab.kitware.com/vtk/vtk/-/merge_requests/$0 %s\n" "$(glab mr view -F json $0 | jq -r .title)"' |
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 opensuse/tumbleweed | |
| LABEL maintainer "Vicente Adolfo Bolea Sanchez<[email protected]>" | |
| # Base dependencies for building VTK-m projects | |
| RUN zypper refresh && \ | |
| zypper update -y && \ | |
| zypper install -y --no-recommends \ | |
| cmake \ | |
| gcc \ | |
| gcc-c++ \ |
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
| ##============================================================================= | |
| ## | |
| ## Copyright (c) Kitware, Inc. | |
| ## All rights reserved. | |
| ## See LICENSE.txt for details. | |
| ## | |
| ## This software is distributed WITHOUT ANY WARRANTY; without even | |
| ## the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR | |
| ## PURPOSE. See the above copyright notice for more information. | |
| ## |
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
| recordmydesktop does not work with Opensuse + pulse. | |
| use instead recordmydesktop --device default |
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
| # Setup those vars at /etc/environment | |
| # PASSPHRASE= | |
| # GS_ACCESS_KEY_ID= | |
| # GS_SECRET_ACCESS_KEY= | |
| # GS_REMOTE= | |
| set -x | |
| SOURCES=( | |
| "/etc" | |
| "/usr/local" |
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 | |
| curl -s -u "$PUSHBULLET_TOKEN": \ | |
| -X POST https://api.pushbullet.com/v2/pushes \ | |
| --header 'Content-Type: application/json' \ | |
| --data-binary '{"type": "note", "title": "'"`hostname`"'", "body": "'"DONE"'"}' >/dev/null 2>&1 |
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
| montage -pointsize 36 -label '%f' $(ls -S *.png | sort -nu) -frame 5 -tile 3x3 -geometry 500 aggregate-task-diagrams.pdf |
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 | |
| rules=$1 | |
| source $rules | |
| mapfile -t keywords < <(< $1 sed -n 's/^\([A-Za-z0-9_]\+\)=.*$/\1/p') | |
| while read line | |
| do | |
| for keyword in "${keywords[@]}" |
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
| require(ggplot2) | |
| require(scales) | |
| ## Variables to be set | |
| FONT_SIZE_X=12 | |
| FONT_SIZE_Y=5 | |
| ## Source code | |
| args = commandArgs(trailingOnly=TRUE) |
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
| version: '2.1' | |
| services: | |
| zoo1: | |
| image: 31z4/zookeeper | |
| container_name: zookeeper-server | |
| #restart: always | |
| ports: | |
| - "2181:2181" |
NewerOlder