git clone https://github.com/aupfred/EasyABC.git
pip3 install -U wxPython
pip3 install -U py2app
pip3 install pyparsing
brew install fluidsynth
brew install ghostscript
Download: https://abcplus.sourceforge.net/#abcmidi
git clone https://github.com/aupfred/EasyABC.git
pip3 install -U wxPython
pip3 install -U py2app
pip3 install pyparsing
brew install fluidsynth
brew install ghostscript
Download: https://abcplus.sourceforge.net/#abcmidi
| git branch --merged | egrep -v "(^\*|master|main|dev|develop)" | xargs git branch -d | |
| git branch -r --merged | grep -v master | grep -v main | grep -v dev | grep -v develop | sed 's/origin\///' | xargs -n 1 git push --delete origin |
| git branch --merged | egrep -v "(^\*|master|main|dev|develop)" | xargs git branch -d | |
| git branch -r --merged | grep -v master | grep -v main | grep -v dev | grep -v develop | sed 's/origin\///' | xargs -n 1 git push --delete origin |
| A0RAGgAgSBGzVNwCxS6JMEyKYxKWIekZVTUNVF2DaBtV6ZtEGiepziHFOononVRKOiiVLKTiIaQ0EVK4SNJGSD5KxUiJOinipVRKzASlm5LspMpPkKEolpLKU2Kqqqso2Qop6qtUitZKpeAtqLgLKu1V/kKqwZAiHQYWi/QYwmQkLgubpfRZUkaTOK3SaqkUei2Varao26RqN6rfiOFItRzqOSnTKddRajuVvkuV8VLVeapiPVLaL5VSr9hPKMBACrC2n+Cgsw3YJXw/CQ7SHHNmswmCjXFwe7YRfEGeR53UggcGeT9pCbeJ2qfj0LQe8JmkxIzoGcAjL52kANGdggm9BZRAkEzwfgLmNSXqTdM0TVMUNNSGxj9J5zUlGmS9TvUjqTTwRVHqi5zU5jUlGmS9TvUjqTTwRVHqi5zgeU2JBlmvU/1IKg18UZT6ImcTHHS2AbuE7ycE3+AG7BI+KUO6pBsg77tgJxZ9QxGsBzZhVB1a1fuJErem2LzCd9K7FFPmUZtmNkkJpgRGkEzwfpLOa0r4G2S9TvUjqTTwRVGf1OY1JfwNsl6n+pFUGviiqE/wvKaEv0HW61Q/kkoDXxT12cQFmR0IkgneT8C8YpLOKya1ecUEzytmk5Zwk0sb84piNtETN7C2n6jZZaHQmQx8AqMFmqUAV8QNPHGgf6g6anZZCQNwcDsO9A9VpzkFdaJml4VC14FLqYgbePIQA6ui/qjZZSUMwMHtPMTAqqg/yObAUOEnsNEaWgVYRdzAEwf6hypYFfVHzS4rYQAObseB/qEKVkX9QTYH2Uw6VUXcwJOHGFgV9UfNLithAA5u5yEGVkX9oSKbA4NsJg67bbWKuIEnDzG6pFP+o2aXlTAAB7fzEKNLOuU/MFRkc2CQxcQhmuawzQifONA/VOmSTvmPml1WwgAc3I4D/UOVLumU/8AgqTSnKHwnsIQYCgN9VMQNPHmIgVVRf9TsshIG4OB2HmJgVdQfKjzNgaEWvpNuIDy60puv+Uwc6B+qdEmn |
| <link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet"> | |
| <div class="container-fluid"> | |
| <div class="row justify-content-center vertical-center"> | |
| <div class="col-4"> | |
| <p>@{<br/> // <em><i></i> Aaron Lord</em> web developer since 1998<br/> // Northern California, USA</p> | |
| <p> // ASP.NET, Web API<br/> // C#, JavaScript, SQL<br/> } | |
| </p> | |
| </div> |
One of the first Calvinist authors I read thoroughly was Jonathan Edwards. He was much derided in my high school American Lit class for the hellfire of "Sinners in the Hands of an Angry God", but he wrote hundreds of other books and sermons as well. His Freedom of the Will is an epic logical tome of metaphysics, in which it is explained that we do things because of our nature, and our wills are bound to that nature. In Calvinist speak this deals with the Sovereignty of God and the depravity of man. Despite the fact of our moral instincts, there are sociopaths who lack this instinct on one hand, and on the other none of us complies with our instinctual morals perfectly (white lies, outbursts of rage in an otherwise gentle soul, etc.)
But neuroscience shows that things we do are a product of biology, chemistry, physics. I have some disagreements with Sam Harris, but this area in particular is his expertise.
| // In JS: | |
| // Base namespace | |
| var app = app || {}; | |
| $.extend(true, app, { | |
| localize: { | |
| /** | |
| * Local time; see http://blog.gauffin.org/2012/11/displaying-datetime-using-the-user-timezone-in-asp-net-mvc/ | |
| */ | |
| init: function () { |
| public static class UriExtensions | |
| { | |
| public static void AppendPath(this UriBuilder b, string addPath) | |
| { | |
| var path = b.Path; | |
| if (path.EndsWith("/")) | |
| { | |
| path = path.TrimEnd('/'); | |
| } |
| using System; | |
| using System.Collections.Generic; | |
| using System.Collections.Specialized; | |
| using System.Web; | |
| using System.Web.Mvc; | |
| using System.Web.Routing; | |
| using Moq; | |
| namespace UnitTests | |
| { |
| public class TempTracker | |
| { | |
| // For mode | |
| // Array of 0s at indices 0..110 | |
| private readonly int[] _occurrences = new int[111]; | |
| private int _maxOccurrences; | |
| // For mean | |
| private int _totalNumbers; |