UTC: 2025-05-22 16:51
smenus/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the Chocolatey-AU module.
Ignored | History | Force Test | Releases
UTC: 2025-05-22 16:51
smenus/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the Chocolatey-AU module.
Ignored | History | Force Test | Releases
#!/bin/sh | |
# I think this is run TAG="oldtag" NEWTAG="newtag" sh git-rename-tag.sh | |
# It should keep the same date, committer and message as the original tag | |
fmt=' | |
tagcommit=%(objectname) | |
tagname=%(taggername) | |
tagemail=%(taggeremail) | |
tagdate=%(taggerdate) |
#!/bin/sh | |
# | |
# Split a repository into a submodule and main module, with history | |
# | |
# Copyright 2009 Trustees of Dartmouth College | |
# License: GNU General Public License, version 2 or later | |
# Gist taken from http://www.spinics.net/lists/git/msg94084.html | |
USAGE="[--url submodule_repo_url] submodule_dir [alternate_dir...]" |
class ComboView extends Marionette.ItemView<ComboField> | |
{ | |
/** | |
* Constructor logic for ComboView. | |
* @param {ComboField} model The model for the ItemView. | |
*/ | |
constructor(model: ComboField) | |
{ | |
this.ui = { | |
control: ".control-field input" |
These are files I needed in order to get msmtp running inside my initramfs on Debian Jessie. | |
I encountered quite a few pitfalls while trying to get this set up, so I wanted to save them here for posterity. |
This is a quick run-down of how I installed Debian on my dedicated server (@ OVH - super cheap!), and managed to setup an encrypted rootfs with ssh during boot to unlock. This is both for the offchance that I'll have to do it again, and if anyone else is wanting to do the same thing. There are a few guides out there to get the unlocking over SSH, and a few for remote installation of Debian, but none that combine the two.
These instructions need an existing Debian install, although Ubuntu might work too.
Source for this part of the guide was here
require 'formula' | |
class Libpar2 < Formula | |
url 'http://sourceforge.net/projects/parchive/files/libpar2/0.2/libpar2-0.2.tar.gz' | |
homepage 'http://parchive.sourceforge.net/' | |
sha1 '4b3da928ea6097a8299aadafa703fc6d59bdfb4b' | |
fails_with :clang do | |
build 421 | |
cause <<-EOS.undent |
--- libpar2-0.2-original/par2repairer.cpp 2006-01-20 17:25:00.000000000 +0000 | |
+++ libpar2-0.2/par2repairer.cpp 2013-01-20 03:54:30.000000000 +0000 | |
@@ -50,10 +50,12 @@ | |
outputbuffer = 0; | |
noiselevel = CommandLine::nlNormal; | |
headers = new ParHeaders; | |
alreadyloaded = false; | |
+ | |
+ cancelled = false; |