https://github.com/joshka/follow-mastodon-user-webextension
This code creates a UART TX on 8 sequential pins of the Raspberry Pi Pico. The main use case being MIDI splitter devices
The second 16 port implementation should work for any number of pins, but just acts as a pure copy to those pins instead of having individual control over every pin of every byte. Hence while less flexible, the controlling software is simpler (just send a uart byte and it's copied to every pin).
Only tested in the simulator so far. https://wokwi.com/projects/344345628967436882
Used https://wokwi.com/tools/pioasm to go from uart_tx.pio.h to uart_tx.h
This file contains 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
// ... | |
protected void Application_BeginRequest(object sender, EventArgs e) | |
{ | |
switch (Request.Url.Scheme) | |
{ | |
case "http": | |
RedirectToHttps(); | |
break; | |
case "https": | |
AddStsHeader(); |
This file contains 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
diff -u plexmediaserver/.AURINFO plexmediaserver-plexpass/.AURINFO | |
--- plexmediaserver/.AURINFO 2014-08-04 23:25:13.000000000 +1000 | |
+++ plexmediaserver-plexpass/.AURINFO 2014-08-17 04:13:21.000000000 +1000 | |
@@ -1,24 +1,20 @@ | |
-pkgbase = plexmediaserver | |
- pkgdesc = Plex Media Server for Linux | |
- pkgver = 0.9.9.14.531 | |
+pkgbase = plexmediaserver-plexpass | |
+ pkgdesc = PlexPass Release of Plex Media Server for Linux | |
+ pkgver = 0.9.9.16.555 |
This file contains 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
Build started 9/19/2014 4:46:37 AM. | |
Project "C:\a\src\WebApplication1\WebApplication1.sln" on node 1 (default targets). | |
ValidateSolutionConfiguration: | |
Building solution configuration "Debug|Any CPU". | |
Project "C:\a\src\WebApplication1\WebApplication1.sln" (1) is building "C:\a\src\WebApplication1\WebApplication1\WebApplication1.csproj" (2) on node 1 (default targets). | |
PrepareForBuild: | |
Creating directory "obj\Debug\". | |
CoreCompile: | |
C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /errorreport:prompt /warn:4 /define:DEBUG;TRACE /highentropyva+ /reference:C:\a\src\WebApplication1\packages\Antlr.3.4.1.9004\lib\Antlr3.Runtime.dll /reference:C:\a\src\WebApplication1\packages\EntityFramework.6.1.1\lib\net45\EntityFramework.dll /reference:C:\a\src\WebApplication1\packages\EntityFramework.6.1.1\lib\net45\EntityFramework.SqlServer.dll /reference:C:\a\src\WebApplication1\packages\Microsoft.AspNet.Identity.Core.2.1.0\lib\net45\Microsoft.AspNet.Identity.Core.dll /reference:C |
This file contains 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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<PropertyGroup> | |
<CopyAllFilesToSingleFolderForPackageDependsOn> | |
$(CopyAllFilesToSingleFolderForPackageDependsOn); | |
AddWebJobFilesToPublish; | |
</CopyAllFilesToSingleFolderForPackageDependsOn> | |
<DestinationType>AzureWebSite</DestinationType> | |
</PropertyGroup> | |
</Project> |
I hereby claim:
- I am joshka on github.
- I am joshka (https://keybase.io/joshka) on keybase.
- I have a public key whose fingerprint is 926D 6ACA 9B76 8E3C 470F F96E 77AB 325D 0F31 E2F1
To claim this, I am signing this object:
This file contains 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
pkgbase = plexmediaserver-plexpass | |
pkgdesc = PlexPass Release of Plex Media Server for Linux | |
pkgver = 0.9.10.1.585 | |
pkgrel = 1 | |
url = http://www.plexapp.com | |
install = plexmediaserver.install | |
arch = i686 | |
arch = x86_64 | |
license = closed | |
depends = rsync |
This file contains 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
using System; | |
using System.Threading.Tasks; | |
namespace Fib | |
{ | |
class ExceptionalFibonacciCalculator | |
{ | |
public int Calculate(uint n) | |
{ | |
try |
This file contains 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
using System.Collections.Generic; | |
namespace GameOfLife1 | |
{ | |
struct Cell | |
{ | |
public Cell(int x, int y) : this() | |
{ | |
Y = y; | |
X = x; |
NewerOlder