Skip to content

Instantly share code, notes, and snippets.

View nex3's full-sized avatar

Natalie Weizenbaum nex3

  • Google
  • Seattle
View GitHub Profile
// Copyright 2022 Google Inc. Use of this source code is governed by an
// MIT-style license that can be found at https://opensource.org/licenses/MIT.
import 'dart:typed_data';
import 'package:rational/rational.dart';
import 'package:tuple/tuple.dart';
// Matrix values from https://www.w3.org/TR/css-color-4/#color-conversion-code.
// Copyright 2022 Google Inc. Use of this source code is governed by an
// MIT-style license that can be found at https://opensource.org/licenses/MIT.
import 'dart:typed_data';
import 'package:rational/rational.dart';
// Matrix values from https://www.w3.org/TR/css-color-4/#color-conversion-code.
final d65 = chromaToXyz(Rational.parse('0.3127'), Rational.parse('0.3290'));
<!--
Instructions:
1. Copy the HTML below into a Copost.
2. Search for "[[[" and replace the bracketed sections with your review's info.
3. If you're a Backloggd backer, uncomment the BACKER badge below. Don't lie!
4. Optionally, uncomment the IGDB background image section. This is kind of a
pain to access, so feel free to ignore it if you don't want the image.
5. Check the preview and make sure everything looks right.
6. Post!

How to Practice Malenia's Waterfowl Dance

This document describes how to hack Malenia's AI to make her spam Waterfowl Dance over and over again while dealing you no damage, so that Elden Ring players can practice dodging this notorious attack without needing to restart the fight and push her to 65% damage every single time. It took me many days of diligent searching to uncover this information, so I want to write it out all in one place to help future sickos in their quest for Malenia practice.

  1. Have Elden Ring on PC. Unfortunately, this will not work on other platforms.
  2. Download the latest release of the Elden Ring Practice Tool from this page, and extract it anywhere you like.
  3. Open %APPDATA%\EldenRing in Explorer.
    1. You should see a directory with a bunch of numbers in here--that's your Elden Ring save file.
  4. Copy and paste it with " (Backup)" after the name. This
@nex3
nex3 / input.scss
Created February 3, 2022 21:46
Generated by SassMeister.com.
a {width: min(90%, 500em)}
// The total number of cards in the cube.
const C = 540;
// The number of piles to create.
const p = 8;
void main() {
var indices = [
for (var i = 0; i < p; i++) ...List.filled((C / p).floor(), i + 1),
// Randomly assign the last C % p numbers to piles without
import * as sassEmbedded from 'sass-embedded';
// Spawns the embedded compiler, returns an object with the Node Sass API.
const sass = sassEmbedded.start();
sass.renderSync({data: 'a {b: c}'});
// Shuts down the embedded compiler, future calls to render et al now throw.
sass.close();
@nex3
nex3 / input.scss
Created April 9, 2021 20:41
Generated by SassMeister.com.
@use 'sass:string';
@mixin declare-toggle-var($variable, $toggle) {
@if string.slice($variable, 1, 2) != "--" {
@error "$variable: Must start with --, was \"#{$variable}\"."
}
$name: string.slice($variable, 3);
--#{$name}: initial;
--#{$name}--inverse: ;
@nex3
nex3 / input.scss
Created February 19, 2021 00:03
Generated by SassMeister.com.
@mixin some-component-a {
$component: ".some-component";
#{$component} {
display: inline;
}
body[lang='fr'] #{$component} div {
display: flex;
}
@nex3
nex3 / input.scss
Created February 18, 2021 23:58 — forked from umairhm/input.scss
Generated by SassMeister.com.
@mixin some-component-a {
.some-component {
display: inline;
body[lang='fr'] & div {
display: flex;
}
& div {
display: block;