State of Roblox graphics API across all platforms, with percentage deltas since EOY 2020. Updated December 31 2021.
| API | Share |
|---|---|
| Direct3D 11+ | 92% (+3%) |
| Direct3D 10.1 | 5% (-2%) |
| Direct3D 10.0 | 3% (-0.5%) |
All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.
Hi! I notice your email doesn't contain instructions on how to unsubscribe, which is illegal:
https://www.ftc.gov/tips-advice/business-center/guidance/can-spam-act-compliance-guide-business
Despite its name, the CAN-SPAM Act doesn’t apply just to bulk email. It covers all commercial messages, which the law defines as “any electronic mail message the primary purpose of which is the commercial advertisement or promotion of a commercial product or service,” including email that promotes content on commercial websites. The law makes no exception for business-to-business email. That means all email – for example, a message to former customers announcing a new product line – must comply with the law.
Each separate email in violation of the CAN-SPAM Act is subject to penalties of up to $46,517, so non-compliance can be costly. But following the law isn’t complicated. Here’s a rundown of CAN-SPAM’s main requirements:
On my MacBook Pro (13-inch, 2020, Four Thunderbolt 3 ports), i5 four Cores, originally using tonemap_opencl the speed of converting hevc 10bit smpte2084 to bt2020-10 is about 28fps.
After optimization, the speed is about 43fps. Without tonemap the speed is 48fps.
| import { atom, useAtom } from "jotai"; | |
| const atomWithSyncedLocalStorage = <T>(key: string, initialValue: T) => { | |
| const baseAtom = atom(initialValue); | |
| baseAtom.onMount = (setValue) => { | |
| const storageUpdateListener = (e: StorageEvent) => { | |
| if (e.key === key) { | |
| console.log("Updating instance of ", key, " remotely"); | |
| setValue(e.newValue ? JSON.parse(e.newValue) : undefined); | |
| } |
| import os | |
| import pickle | |
| import warnings | |
| import numpy as np | |
| import pandas as pd | |
| from sklearn.model_selection import train_test_split | |
| from tensorflow.keras.callbacks import EarlyStopping | |
| from tensorflow.keras.layers import Dense | |
| from tensorflow.keras.layers import Dropout |
| # Full NixOS configuration for a ZFS server with full disk encryption hosted on Hetzner. | |
| # See <https://mazzo.li/posts/hetzner-zfs.html> for more information. | |
| { config, pkgs, ... }: | |
| let | |
| # Deployment-specific parameters -- you need to fill these in where the ... are | |
| hostName = "..."; | |
| publicKey = "..."; | |
| # From `ls -lh /dev/disk/by-id` |
There was a reddit post about installing Arch on NTFS3 partition. Since Windows and Linux doesn't have directories with same names under the /(C:\), I thought it's possible, and turned out it was actually possible.
If you are not familiar to Linux, for example you've searched on Google "how to dualboot Linux and Windos" or brbrbr... you mustn't try this. This is not practical.
Tutorial: https://www.youtube.com/watch?v=hIqMrPTeGTc
Paste the below code in your browser console (F12 > Console):
/**
* YouTube "Not Interested" Automation Script
*
* This script marks all videos in the YouTube feed as "Not interested".
*
* Usage: