/etc/conf.d/*: ...
/etc/modprobe.d/i915.conf:
options i915 enable_guc_loading=1 enable_guc_submission=1 enable_fbc=1 enable_psr=1
| collections.Counter(str(type(obj)) for obj in gc.get_objects()) |
| # | |
| # Automatically generated file; DO NOT EDIT. | |
| # Linux/x86 4.15.7-gentoo-r1 Kernel Configuration | |
| # | |
| # | |
| # Gentoo Linux | |
| # | |
| CONFIG_GENTOO_LINUX=y | |
| CONFIG_GENTOO_LINUX_UDEV=y |
| /* | |
| Bug screenshot: https://tmp.shazow.net/screenshots/screenshot_2019-04-26_dd60.png | |
| Output paste: | |
| $ go run *.go | |
| echo: "test" | |
| echo: "foo" | |
| echo: "bar" | |
| echo: "😼" | |
| echo: "why do emojis break the echo indent?" | |
| echo: "" |
| // Using github.com/gomodule/redigo v2.0.0+incompatible | |
| func TestMiniRedisScan(t *testing.T) { | |
| /* | |
| redis> ZADD idx 0 "ccc" | |
| (integer) 1 | |
| redis> ZRANGEBYLEX idx "[d" "[e" | |
| (empty list or set) | |
| redis> ZRANGEBYLEX idx "[c" "[d" | |
| 1) "ccc" | |
| */ |
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "os" | |
| "time" | |
| "github.com/gdamore/tcell" | |
| ) |
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "github.com/blevesearch/bleve" | |
| ) | |
| func main() { |
| This post links my 3Box profile to my Github account! Web3 social profiles by 3Box. | |
| ✅ did:3:bafyreif5cgttygibnalhnupkypppjalanfkip7vdyoit3hojhgs5tsh7im ✅ | |
| Create your profile today to start building social connection and trust online at https://3Box.io/ |
| import { BigNumber, providers, Wallet } from "https://esm.sh/ethers"; | |
| import { FlashbotsBundleProvider, FlashbotsBundleResolution } from "https://esm.sh/@flashbots/ethers-provider-bundle"; | |
| const FLASHBOTS_AUTH_KEY = Deno.env.get('FLASHBOTS_AUTH_KEY'); | |
| const WALLET_PRIVATE_KEY = Deno.env.get('WALLET_PRIVATE_KEY'); | |
| const GWEI = BigNumber.from(10).pow(9); | |
| const PRIORITY_FEE = GWEI.mul(3); | |
| const LEGACY_GAS_PRICE = GWEI.mul(12); | |
| const BLOCKS_IN_THE_FUTURE = 2; |