This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
| // ==UserScript== | |
| // @name Prevent link mangling on Google | |
| // @namespace LordBusiness.LMG | |
| // @match https://www.google.com/search | |
| // @grant none | |
| // @version 1.1 | |
| // @author radiantly | |
| // @description Prevent google from mangling the link when copying or clicking the link on Firefox | |
| // ==/UserScript== |
This document now exists on the official ASP.NET core docs page.
This is intended as a place to list blog posts about Zig, for anyone who's interested in reading what people have to say! Also check out links at https://ziglang.org/learn/ and https://ziglang.org/news/.
Posts were found by searching on lobste.rs, at https://dev.to/t/zig and https://medium.com/tag/zig.
Please let me know in a comment if there are any posts missing that you'd like me to add here!
| window: | |
| # Window dimensions (changes require restart) | |
| # | |
| # Number of lines/columns (not pixels) in the terminal. The number of columns | |
| # must be at least `2`, while using a value of `0` for columns and lines will | |
| # fall back to the window manager's recommended size. | |
| dimensions: | |
| columns: 500 | |
| lines: 30 |
| let jspdf = document.createElement("script"); | |
| jspdf.onload = function () { | |
| let pdf = new jsPDF(); | |
| let elements = document.getElementsByTagName("img"); | |
| for (let i in elements) { | |
| let img = elements[i]; | |
| console.log("add img ", img); | |
| if (!/^blob:/.test(img.src)) { | |
| console.log("invalid src"); | |
| continue; |
Make sure you have coursier installed
chmod +x test.scala
./test.scalaFirst time it will download scala-compiler (and depending on your config maybe GraalVM) then cache a bootstrap runner. Next time it will run much faster using the cached runner (depending on you config can be native program!).
The best way to get in touch with fellow Pluto users is to join our zulip chat. Zulip is a chatting website (similar to Slack), but it is free, which means that you can also read old messages.
We are a subchannel of the Julia zulip. To join it:
All of them . . .
See below for earlier “squid314” reviews; also for more recent reviews on Astral Codex Ten.
06/01 - [Book Review: Origin Of Consciousness In The Breakdown Of The Bicameral Mind][19]05/05 - [Book Review Contest: Call For Entries][35]| /* Fixes the header to the top of the page */ | |
| .main-menu > * { | |
| position: relative !important; | |
| top: 0 !important; | |
| } | |
| .main-menu > :nth-child(2) { | |
| display: none; | |
| } |