This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package cloud.goober.industrial; | |
import net.minecraft.client.MinecraftClient; | |
import net.minecraft.client.render.entity.EntityRendererFactory; | |
import net.minecraft.client.render.entity.MobEntityRenderer; | |
import net.minecraft.client.render.entity.feature.ArmorFeatureRenderer; | |
import net.minecraft.client.render.entity.feature.HeldItemFeatureRenderer; | |
import net.minecraft.client.render.entity.model.EntityModelLayers; | |
import net.minecraft.client.render.entity.model.PlayerEntityModel; | |
import net.minecraft.client.render.model.BakedModelManager; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Failed to create model for goober-industry:goobot | |
at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?] | |
at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?] | |
at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:791) ~[?:?] | |
at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] | |
at net.minecraft.resource.SimpleResourceReload.method_18365(SimpleResourceReload.java:69) ~[minecraft-common-9266c4137a-1.21.1-net.fabricmc.yarn.1_21_1.1.21.1+build.3-v2.jar:?] | |
at net.minecraft.util.thread.ThreadExecutor.executeTask(ThreadExecutor.java:162) ~[minecraft-common-9266c4137a-1.21.1-net.fabricmc.yarn.1_21_1.1.21.1+build.3-v2.jar:?] | |
at net.minecraft.util.thread.ReentrantThreadExecutor.executeTask(ReentrantThreadExecutor.java:23) ~[minecraft-common-9266c4137a-1.21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The following warnings were emitted during compilation: | |
warning: [email protected]: In file included from resources/libfvad/src/signal_processing/signal_processing_library.h:34:0, | |
warning: [email protected]: from resources/libfvad/src/signal_processing/division_operations.c:20: | |
warning: [email protected]: resources/libfvad/src/signal_processing/spl_inl.h: In function ‘WebRtcSpl_CountLeadingZeros32’: | |
warning: [email protected]: resources/libfvad/src/signal_processing/spl_inl.h:42:3: warning: implicit declaration of function ‘static_assert’ [-Wimplicit-function-declaration] | |
warning: [email protected]: RTC_COMPILE_ASSERT(sizeof(unsigned int) == sizeof(uint32_t)); | |
warning: [email protected]: ^ | |
warning: [email protected]: In file included from resources/libfvad/src/signal_processing/signal_processing_library.h:34:0, | |
warning: [email protected]: from resources/libfvad/src/signal_processing/get_scaling_square.c:18: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
from playwright.async_api import async_playwright | |
import getpass | |
async def main(): | |
async with async_playwright() as p: | |
browser = await p.chromium.launch(headless=False) | |
page = await browser.new_page() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[H[J[3J[1m[33mPick a time zone (Format: America/New_York , Europe/London, etc) : [0m[1m♠ Set TZ to /usr/share/zoneinfo/America/Chicago[0m | |
[1m♠ Syncing hardware offset[0m | |
[H[J[3J[1m[33mDo you need more locales than just en_US? (y/N) : [0mMORE=n | |
[1m♠ Generating selected locales.[0m | |
Generating locales... | |
en_US.UTF-8... done | |
Generation complete. | |
[1m♠ en_US was set as system primary.[0m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
##### | |
# Script to install postfix | |
##### | |
DOMAIN="example.com" | |
EMAIL="[email protected]" | |
PASSWORD="example.com1*" |