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
name: Deploy with Fume | |
on: | |
push: | |
branches: | |
- staging | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: | |
name: staging |
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
func CopyIndex(index CatIndex, domain *opensearch.Client, serverless *opensearch.Client) (CopyResult, error) { | |
results := CopyResult{ | |
Index: index.Index, | |
Docs: 0, | |
Duration: time.Duration(0), | |
} | |
start := time.Now() |
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
# setup horizon with systemd | |
echo " | |
[Unit] | |
Description=Laravel Horizon Queue Manager | |
After=network.target auditd.service | |
[Service] | |
ExecStart=/bin/php /home/ec2-user/bob/artisan horizon | |
Restart=always |
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 fs from 'node:fs' | |
interface StoreInterface { | |
uuid: string | |
text: string | |
expires: Date | |
} | |
export default class Store { | |
private store: StoreInterface[] |
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
---- Minecraft Crash Report ---- | |
// On the bright side, I bought you a teddy bear! | |
Time: 2022-09-07 00:41:41 | |
Description: Mod loading error has occurred | |
java.lang.Exception: Mod Loading has failed | |
at net.minecraftforge.logging.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:55) ~[forge-1.19.2-43.1.16-universal.jar%23371!/:?] {re:classloading} | |
at net.minecraftforge.client.loading.ClientModLoader.completeModLoading(ClientModLoader.java:167) ~[forge-1.19.2-43.1.16-universal.jar%23371!/:?] {re:classloading,pl:runtimedistcleaner:A} | |
at net.minecraft.client.Minecraft.lambda$new$2(Minecraft.java:585) ~[client-1.19.2-20220805.130853-srg.jar%23366!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:ars_nouveau.mixins.json:light.ClientMixin,pl:mixin:APP:immersiveengineering.mixins.json |
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
---- Minecraft Crash Report ---- | |
// You should try our sister game, Minceraft! | |
Time: 2022-09-05 23:55:06 | |
Description: Mod loading error has occurred | |
java.lang.Exception: Mod Loading has failed | |
at net.minecraftforge.logging.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:55) ~[forge-1.19.2-43.1.3-universal.jar%23359!/:?] {re:classloading} | |
at net.minecraftforge.client.loading.ClientModLoader.completeModLoading(ClientModLoader.java:167) ~[forge-1.19.2-43.1.3-universal.jar%23359!/:?] {re:classloading,pl:runtimedistcleaner:A} | |
at net.minecraft.client.Minecraft.lambda$new$2(Minecraft.java:585) ~[client-1.19.2-20220805.130853-srg.jar%23354!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:ars_nouveau.mixins.json:light.ClientMixin,pl:mixin:APP:immersiveengineering.mixins.json:acces |
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
---- Minecraft Crash Report ---- | |
// I feel sad now :( | |
Time: 2022-09-05 23:50:05 | |
Description: Mod loading error has occurred | |
java.lang.Exception: Mod Loading has failed | |
at net.minecraftforge.logging.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:55) ~[forge-1.19.2-43.1.3-universal.jar%23359!/:?] {re:classloading} | |
at net.minecraftforge.client.loading.ClientModLoader.completeModLoading(ClientModLoader.java:167) ~[forge-1.19.2-43.1.3-universal.jar%23359!/:?] {re:classloading,pl:runtimedistcleaner:A} | |
at net.minecraft.client.Minecraft.lambda$new$2(Minecraft.java:585) ~[client-1.19.2-20220805.130853-srg.jar%23354!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:ars_nouveau.mixins.json:light.ClientMixin,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAcce |
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 { defineNuxtPlugin, useNuxtApp, useRuntimeConfig } from '#app' | |
import Api from '~/lib/api' | |
export default defineNuxtPlugin((nuxtApp) => { | |
const config = useRuntimeConfig() | |
const { $toast } = useNuxtApp() | |
return { | |
provide: { | |
api: | |
new Api({ |
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 { FetchError, FetchOptions, SearchParams } from 'ohmyfetch' | |
import { reactive, ref } from '@vue/reactivity' | |
import { IncomingMessage, ServerResponse } from 'http' | |
import { useCookie } from 'h3' | |
import { TailvueToast } from 'tailvue' | |
import { Router } from 'vue-router' | |
import Cookies from 'universal-cookie' | |
export interface UserLogin { | |
token: string |
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
<?php | |
class UserController extends Controller | |
{ | |
/** | |
* Display a listing of the resource. | |
* | |
* @param Request $request | |
* @return Response|JsonResponse | |
* @throws AuthorizationException |
NewerOlder