This concept is also known as SVN repository upgrade from v1.6.x to v1.7.
The note is written for an archive I created and have up on my drive.google.com, with some ammendments to this readme for the passer-byer...
Requirements
some_namespace { | |
class some_class { | |
static int FrameSize(int hours, int minutes, int seconds, int channels = 2, int bytes = 2, int rate = 44100, float round = 0f) | |
{ | |
double samples = channels * bytes * rate * ( hours*60*60 + minutes*60 + seconds ); | |
int frameCount = Convert.ToInt32(samples - samples % 1); | |
if ((samples % 1) > round) frameCount++; | |
return frameCount; | |
} | |
static void SampleProgram(int window, int hours, int minutes, int seconds, int channels = 2, int bytes = 2, int rate = 44100, float round = 0f) |
<?xml version="1.0"?> | |
<Template originator="tfw" created="07/07/2014"> | |
<!-- Template Header --> | |
<TemplateConfiguration> | |
<Name>FirstFloor MUI</Name> | |
<Category>C#</Category> | |
<Subcategory>WPF</Subcategory> | |
<Icon>C#.Project.WPFProject</Icon> | |
<Description>Framework v4.0 --- FirstFloor.ModernUI application (With Icons)</Description> | |
<Description>FirstFloor.ModernUI application (With Icons)</Description> |
function __formatter(){ | |
//console.log("Formatter prototype initialized."); | |
return this; | |
} | |
/** | |
* Believe it or not, this is of huge help to our table-sorting algo. | |
* What it is still doing here is beyond me. | |
* ---ahh, I was rendering tables in ASPNET/MVC and validating content? |
'use strict'; | |
/* | |
* (C) tfwroble 201408231822 | |
*/ | |
(function(w){ | |
/* | |
what I'm trying to do: |
brotli/enc/write_bits.h | 1 - | |
shared.mk | 8 ++++---- | |
2 files changed, 4 insertions(+), 5 deletions(-) | |
diff --git a/brotli/enc/write_bits.h b/brotli/enc/write_bits.h | |
index cf6f53e..95b29db 100644 | |
--- a/brotli/enc/write_bits.h | |
+++ b/brotli/enc/write_bits.h | |
@@ -21,7 +21,6 @@ | |
#if defined(OS_MACOSX) |
Author-meta:Thomas F Wroble Author:Thomas F Wroble Title: UbuntuServer in VirtualBox Subtitle: UbuntuServer Date:20140909 encoding:utf8 version:from the desk of TFWroble mainfont: Roboto Slab documentclass: book dh:8.5in
This is just a collection of notes and bash (or sh) scripting dedicated to setting up a custom build environment around a mingw-w32 or few. This would probably not be of any interest to any particular individual as compared to other much better team driven scripts and/or projects out there like github.com/Alexpux/MINGW-packages—which I encountered a short time after writing much of this script.
git checkout ...
make ; make install
After patching, a bash process might look something like:
#!/bin/sh | |
############################################################## | |
# ¡¡¡DO NOT RUN ME!!! | |
# THIS SCRIPT IS TO BE CALLED BY ITS OWNER | |
############################################################## | |
if [[ ! -z $DIR_ROOT ]] ; then cd $DIR_ROOT ; fi | |
# ------------------------------------------ | |
# git clone git://git.code.sf.net/p/libb64/git libb64-git | |
# base64 | |
# ------------------------------------------ |