Skip to content

Instantly share code, notes, and snippets.

@AlRado
AlRado / ShowTopZxScreens.dib
Created December 21, 2021 11:45
Downloads and displays top ZX-Spectrum images from the site https://zxart.ee
#!csharp
using System.Collections.Generic;
using System.Linq;
using Microsoft.DotNet.Interactive;
using Microsoft.DotNet.Interactive.Formatting;
using static Microsoft.DotNet.Interactive.Formatting.PocketViewTags;
void downloadAndShowImages(params string[] urls) {
display(span(urls.Select(url =>
@AlRado
AlRado / ShowTopZxScreens.ipynb
Created December 21, 2021 11:43
Downloads and displays top ZX-Spectrum images from the site https://zxart.ee
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@AlRado
AlRado / DownloadAndShowImages.dib
Created December 21, 2021 11:33
Downloads and displays images from the WEB
#!csharp
using System.Collections.Generic;
using System.Linq;
using Microsoft.DotNet.Interactive;
using Microsoft.DotNet.Interactive.Formatting;
using static Microsoft.DotNet.Interactive.Formatting.PocketViewTags;
void downloadAndShowImages(params string[] urls) {
display(span(urls.Select(url =>
@AlRado
AlRado / DownloadAndShowImages.ipynb
Last active December 21, 2021 11:32
Downloads and displays images from the WEB
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.