This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
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
| javascript: Promise.all([import('https://unpkg.com/turndown@6.0.0?module'), import('https://unpkg.com/@tehshrike/readability@0.2.0'), ]).then(async ([{ | |
| default: Turndown | |
| }, { | |
| default: Readability | |
| }]) => { | |
| /* Optional vault name */ | |
| const vault = ""; | |
| /* Optional folder name such as "Clippings/" */ |
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
| param( | |
| $ALIVE = 'O', | |
| $DEAD = ' ' | |
| ) | |
| # Conway's Game of Life | |
| # The classic cellular automata simulation. Press Ctrl-C to stop. | |
| # More info at: https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life | |
| $WIDTH = 79 # The width of the cell grid. |
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
| #pragma once | |
| #include <NativeModules.h> | |
| #include <winrt/Windows.UI.Notifications.h> | |
| #include <winrt/Windows.Data.Xml.Dom.h> | |
| using namespace winrt::Windows::UI::Notifications; | |
| using namespace winrt::Windows::Data::Xml::Dom; | |
| REACT_MODULE(Notifications) |
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
| # The code for my article with the same name. You can find it at the URL below: | |
| # https://www.mvanga.com/blog/basic-music-theory-in-200-lines-of-python | |
| # MIT License | |
| # | |
| # Copyright (c) 2021 Manohar Vanga | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights |
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
| { | |
| "final_space": true, | |
| "console_title": true, | |
| "console_title_style": "folder", | |
| "blocks": [ | |
| { | |
| "type": "prompt", | |
| "alignment": "left", | |
| "horizontal_offset": 0, | |
| "vertical_offset": 0, |
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
| """Perseverence Parachute Cipher Python Solution | |
| In Press: | |
| * https://www.nytimes.com/2021/02/24/science/nasa-mars-parachute-code.html | |
| * https://www.theguardian.com/science/2021/feb/23/dare-mighty-things-hidden-message-found-on-nasa-mars-rover-parachute | |
| * https://www.cmu.edu/news/stories/archives/2021/march/mars-rover-code.html | |
| Output: | |
| DARE¿¿¿¿ | |
| MIGHTY¿¿ | |
| THINGS¿¿ |
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
| --- | |
| name: On MacOS Deploy | |
| 'on': | |
| push: | |
| branches: | |
| - "main" | |
| jobs: | |
| on-push-main: | |
| runs-on: macos-latest | |
| env: |
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
| <Project Sdk="Microsoft.NET.Sdk"> | |
| <PropertyGroup> | |
| <OutputType>Exe</OutputType> | |
| <TargetFramework>net5.0</TargetFramework> | |
| <NoWarn>1591</NoWarn> | |
| </PropertyGroup> | |
| <ItemGroup> | |
| <PackageReference Include="ServiceStack.OrmLite.Sqlite.Cil" Version="6.*" /> |