Skip to content

Instantly share code, notes, and snippets.

View 11ty-error-h2
---
is_post: true
layout: post
title: aaaaa
date: 2021-10-13
author: Here
image: /assets/imgs/2021-10-13/aa.png
shareImage: /assets/imgs/2021-10-13/aa2.png
color: "#19a3b2"
published_date: "Oct 13, 2021"
View DV0101EN-2-3-1-Pie-Charts-Box-Plots-Scatter-Plots-and-Bubble-Plots-py-v2.0.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View reactive.dart
// Copyright 2021 Fredrick Allan Grott. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
// Original was by nato of polyreflection BSD license clause 3
// copyright 2020
import 'dart:async';
import 'dart:ui';
@antonxy
antonxy / less_addictive_youtube.txt
Created Oct 16, 2021
uBlock / Adblock rules for a less addictive YouTube. Removes recommendations from homescreen and video page.
View less_addictive_youtube.txt
! Less addictive YouTube
! Remove homepage recommendations - use the subscriptions page instead
www.youtube.com###page-manager > .style-scope[page-subtype=home]
! Remove related videos sidebar and endscreen
www.youtube.com###related
www.youtube.com##.videowall-endscreen
View crash.txt
---- Minecraft Crash Report ----
// I bet Cylons wouldn't have this problem.
Time: 10/16/21 11:09 PM
Description: Rendering screen
java.lang.NullPointerException: Screen cannot be null
at Not Enough Crashes deobfuscated stack trace.(1.16.5+build.10)
at java.util.Objects.requireNonNull(Unknown Source)
at net.fabricmc.fabric.api.client.screen.v1.ScreenEvents.afterRender(ScreenEvents.java:138)
View mesures-covid.html
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<meta charset="utf-8" />
<title>Chronologie des mesures covid en France</title>
View crash.txt
---- Minecraft Crash Report ----
// Hi. I'm Minecraft, and I'm a crashaholic.
Time: 10/16/21 10:09 PM
Description: Ticking memory connection
java.lang.NullPointerException: Ticking memory connection
at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:625) ~[?:1.8.0_51] {}
at me.shedaniel.architectury.event.EventFactory.invokeMethod(EventFactory.java:71) ~[?:?] {re:classloading}
at me.shedaniel.architectury.event.EventFactory.access$000(EventFactory.java:42) ~[?:?] {re:classloading}
@dovreshef
dovreshef / hello-wasm.js
Created Oct 16, 2021 — forked from dio/hello-wasm.js
This is a simpe example on embedding wasm inside an offline single html page
View hello-wasm.js
// this code is from a simple add function in c:
//
// // hello.c
// int add(int a, int b) {
// return a + b;
// }
//
// compiles it with emcc (http://webassembly.org/getting-started/developers-guide/)
// $ git clone https://github.com/juj/emsdk.git
View ComputedExample.res
module SubComponent = {
module ShowName = {
@react.component
let make = Mobx.observer((~name: ref<string>) => {
<>
<br />
{`My name is ${name.contents}`->React.string}
<br />
<input
name="name" onChange={Mobx.action(x => name := ReactEvent.Form.target(x)["value"])}