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 | |
| # | |
| # Launch Buzz on this machine (Arch, Hyprland, NVIDIA proprietary). | |
| # | |
| # Runs the real .AppImage, not an unpacked copy: the AppImage runtime is what sets | |
| # APPIMAGE=, and Tauri's updater refuses to self-update without it ("switch to AppImage | |
| # for automatic updates"). The updater rewrites that file in place, so its name must stay | |
| # version-less — never rename it to Buzz_<version>.AppImage. | |
| # | |
| # Everything below is a workaround for a specific, reproduced failure. None of it is |
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> | |
| <title>Test trix</title> | |
| <script src="https://unpkg.com/vue/dist/vue.js"></script> | |
| <link href="http://rawgit.com/basecamp/trix/master/dist/trix.css" rel="stylesheet"> | |
| <script src="http://rawgit.com/basecamp/trix/master/dist/trix.js"></script> | |
| </head> | |
| <body> | |
| <div id="app"> |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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 | |
| echo ">>> Starting Install Script" | |
| # Update | |
| sudo apt-get update | |
| # Install MySQL without prompt | |
| sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password root' | |
| sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password root' |
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 ruby | |
| require 'faraday' | |
| require 'json' | |
| require 'gitlab' | |
| module Redmine | |
| Host = nil | |
| APIKey = nil |
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 2645e8296145ffd7dbbb40dbbba2660a8f1da717 Mon Sep 17 00:00:00 2001 | |
| From: gitlab-ci system <gitlab-ci@localhost> | |
| Date: Sun, 17 Mar 2013 16:47:31 -0400 | |
| Subject: [PATCH] change ansi2html.rb | |
| --- | |
| app/assets/stylesheets/main.scss | 24 ++++++++++++++++++ | |
| lib/ansi2html.rb | 55 ++++++++++++++++++++++------------------ | |
| 2 files changed, 55 insertions(+), 24 deletions(-) |
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 | |
| # | |
| # git-subsplit.sh: Automate and simplify the process of managing one-way | |
| # read-only subtree splits. | |
| # | |
| # Copyright (C) 2012 Dragonfly Development Inc. | |
| # | |
| if [ $# -eq 0 ]; then | |
| set -- -h | |
| fi |