View theghost.asm
; Code by Mark Harris, published in Your Sinclair Issue 59 http://live.worldofspectrum.org/infoseek/magazines/your-sinclair/59#20 | |
; Disassembly and comments by Damien Guard. | |
ORG 28000 | |
; Setup pages to allow 48K ROM to be copied to RAM page 4. | |
DI | |
LD A,0x14 ; 48K ROM at 0x0000, RAM page 4 at 0xc000 | |
LD BC,0x7ffd ; 128K paging port | |
OUT (C),A ; Switch the pages |
View crystal-quest.unp
PAW Database : CrystalQuest.z80 | |
Extracted by UNPAWS32 v2.1 | |
General data | |
------------ | |
Locations 49 | |
Objects 60 |
View jekyll1.unp
PAW Database : JEKYLL.sna | |
Extracted by UNPAWS32 v2.1 | |
General data | |
------------ | |
Locations 25 | |
Objects 15 |
View config.yml
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: circleci/ruby:2.3 | |
working_directory: ~/jekyll | |
environment: | |
- JEKYLL_ENV=production | |
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true | |
- JOB_RESULTS_PATH=run-results |
View algolia-search.html
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@3/dist/algoliasearchLite.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/algoliasearch-helper@2.26.0/dist/algoliasearch.helper.min.js"></script> | |
<script> | |
let searchForm = document.getElementById('search-form') | |
let hits = document.getElementById('hits') | |
let algolia = algoliasearch('{your-site-id}', '{your-search-token}') | |
let helper = algoliasearchHelper(algolia, '{your-index-name}', { hitsPerPage: 10, maxValuesPerFacet: 1, getRankingInfo: false }) | |
helper.on("result", searchCallback) | |
function runSearch() { |
View download-with-fetch.ts
import * as fs from 'fs'; | |
// Public: Download a file and store it on a file system using streaming with appropriate progress callback. | |
// | |
// * `sourceUrl` Url to download from. | |
// * `targetFile` File path to save to. | |
// * `progressCallback` Callback function that will be given a {ByteProgressCallback} object containing | |
// both bytesDone and percent. | |
// * `length` Optional file length in bytes for cases where the server will not supply the | |
// Content-Length header but the value is known in advance. Without either the |
View Mehkee96.json
[ | |
[ | |
[ | |
{ | |
"index": 103, | |
"label": "LCtrl" | |
}, | |
{ | |
"index": 104, | |
"label": "LShift" |
View LINQOrExpressionCombiner.cs
class Or | |
{ | |
public static Expression<Func<T, bool>> Combine<T>(Expression<Func<T, bool>> left, Expression<Func<T, bool>> right) | |
{ | |
var parameter = Expression.Parameter(typeof(T), "p"); | |
var combined = new ParameterReplacer(parameter).Visit(Expression.OrElse(left.Body, right.Body)); | |
return Expression.Lambda<Func<T, bool>>(combined, parameter); | |
} | |
class ParameterReplacer : ExpressionVisitor |
View AwfulCSharpCode.cs
extern alias b; | |
using System; | |
class A { public dictionary<int, String> func(int a) { } } | |
struct hi { byte q; int a = /* */ 1; char c = 'c'; } | |
void A() { } | |
#if ABC // Testing | |
#endif | |
/* Mult-line | |
comment */ | |
public abstract class Outside { } |
View PageViewCount.csx
#r "Microsoft.WindowsAzure.Storage" | |
using Microsoft.WindowsAzure.Storage; | |
using Microsoft.WindowsAzure.Storage.Table; | |
using System.Net; | |
public static async Task<object> Run(HttpRequestMessage req, TraceWriter log) | |
{ | |
var page = req.GetQueryNameValuePairs().FirstOrDefault(kv => string.Compare(kv.Key, "page", true) == 0); | |
if (String.IsNullOrEmpty(page.Value)) return req.CreateResponse(HttpStatusCode.BadRequest); |