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
# Wayland Sway configuration file: https://swaywm.org | |
# This is located at $HOME/.config/sway/config | |
# This uses stumpwm/ratpoison style keybindings with a prefix key | |
# This is derived from w96k dotfiles: https://git.sr.ht/~w96k/dotfiles/tree/master/item/guix/.config/sway/config | |
# This matches relatively closely the custom configuration that I use with DWL: https://codeberg.org/dwl/dwl | |
set $term foot | |
set $StumpMod Control+t | |
set $left h | |
set $down j |
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
// Author: Yves Zoundi | |
// Requires: jArchi - https://www.archimatetool.com/blog/2018/07/02/jarchi/ | |
// Purpose: Align to lowest, spread the selected elements horizontally or vertically | |
// Date: 2024-05-10 | |
// Version 0.0.1 | |
// Change: Initial version based on similar previous jArchi scripts on GitHub | |
console.clear() | |
console.show() | |
console.log("START: AlignSpread") |
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
/* | |
Author: Yves Zoundi | |
Description: Import specializations and applicable icons | |
- Assumptions | |
- Folder with containing your specialization icons and a mapping file 'mapping.properties' | |
- Icon files are derived automatically from your specialization names (in lowercase) | |
- Supported icon file names: .png, .jpg, .jpeg, .gif, .tif, .tiff, .bmp, .ico | |
- The icon file name is derived automatically via the following approach: | |
- For a specialization 'Custom Location' will attempt loading icons with the name 'custom-location' (spaces to dashes) |
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
// Author: Yves Zoundi | |
// Dump Archimate View element types for either elements or relationships | |
// This can be useful for custom coloring, custom import/export etc. | |
console.show() | |
console.clear() | |
console.log("START: DumpArchimateViewElementTypes") | |
let selection = window.promptSelection("Choose types to dump", ["Element Types", "Relationship Types"] ) |
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
CMAKE_CXX_STANDARD=11 CFLAGS=-Wno-error CMAKE_TESTING_ENABLED=false ENABLE_TESTS=false ENABLE_TESTING=false BUILD_TESTING=false brew install -v spice |
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
class Spice < Formula | |
homepage "https://www.spice-space.org/" | |
url "https://gitlab.freedesktop.org/spice/spice.git" | |
version "master" | |
depends_on "autoconf" => :build | |
depends_on "autoconf-archive" => :build | |
depends_on "autogen" => :build | |
depends_on "automake" => :build | |
depends_on "gobject-introspection" => :build |
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
class Qemu < Formula | |
desc "Emulator for x86 and PowerPC" | |
homepage "https://www.qemu.org/" | |
url "https://download.qemu.org/qemu-6.2.0.tar.xz" | |
sha256 "68e15d8e45ac56326e0b9a4afa8b49a3dfe8aba3488221d098c84698bca65b45" | |
license "GPL-2.0-only" | |
head "https://git.qemu.org/git/qemu.git", branch: "master" | |
bottle do | |
sha256 arm64_monterey: "57ffc7f97cbd053121f7767f08c2386beac29ef8efa7f93398d347b24d979621" |
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
(defvar paste-c-net-url "https://paste.c-net.org/") | |
(defvar paste-c-net-buffer-name "*paste-c-net*") | |
(defun paste-c-net--buffer-whole-string (buffer) | |
"Retrieve the text contents from an HTTP response BUFFER." | |
(with-current-buffer buffer | |
(save-restriction | |
(widen) | |
(re-search-forward "^$") | |
(buffer-substring-no-properties (point) (point-max))))) |
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
(defun ers/eclim-new-type (new_type_name new_type) | |
(interactive (list (read-string "Type name: ") | |
(completing-read "Type: " '("class" | |
"abstract" | |
"interface" | |
"enum" | |
"@interface")))) | |
(let* ((prj-dir (or (eclim-project-name) (eclim-project-name (dired-current-directory)))) | |
(eclim-newtype-args (list "java_new" | |
"-p" |
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
(defun eclim-java-format () | |
"Format the source code of the current java source file." | |
(interactive) | |
(let ((positions (if (region-active-p) | |
(list (region-beginning) (region-end)) | |
(list 0 (1- (point-max)))))) | |
(eclim/execute-command "java_format" "-p" "-f" ("-h" (car positions)) ("-t" (cadr positions) ) "-e"))) |
NewerOlder