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 { createResolver, defineNuxtModule, installModule } from '@nuxt/kit'; | |
import type { ModuleOptions } from '@pinia/nuxt'; | |
// Works around layers in Pinia. | |
// | |
// See https://github.com/vuejs/pinia/pull/2757. | |
export default defineNuxtModule<ModuleOptions>({ | |
meta: { | |
name: 'pinialayers', | |
configKey: 'pinia', |
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
#0 0x0000710989bfdf92 in httpGets () at /lib/x86_64-linux-gnu/libcups.so.2 | |
#1 0x0000710989bff416 in _httpUpdate () at /lib/x86_64-linux-gnu/libcups.so.2 | |
#2 0x0000710989bff78b in httpUpdate () at /lib/x86_64-linux-gnu/libcups.so.2 | |
#3 0x0000710989c175de in cupsSendRequest () at /lib/x86_64-linux-gnu/libcups.so.2 | |
#4 0x0000710989c179d5 in cupsDoIORequest () at /lib/x86_64-linux-gnu/libcups.so.2 | |
#5 0x0000710989d44792 in cfGetPrinterAttributes5 (http_printer=http_printer@entry=0x5d886f0068e0, raw_uri=raw_uri@entry=0x7fff54da0ad0 "ipp://localhost/printers/br_mfc_j6920dw", pattrs=pattrs@entry=0x5d886d444140 <pattrs>, pattrs_size=pattrs_size@entry=4, req_attrs=<optimized out>, req_attrs@entry=0x5d886d444140 <pattrs>, req_attrs_size=<optimized out>, req_attrs_size@entry=4, debug=1, driverless_info=0x0, is_fax=0) at cupsfilters/ipp.c:361 | |
#6 0x0000710989d44e4a in cfGetPrinterAttributes3 (http_printer=http_printer@entry=0x5d886f0068e0, raw_uri=raw_uri@entry=0x7fff54da0ad0 "ipp://localhost/printers/br_mfc_j6920dw", |
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 * as THREE from "three"; | |
function isLineBasicMaterial(mat: THREE.Material & { isLineBasicMaterial?: boolean }): mat is THREE.LineBasicMaterial { | |
return Boolean(mat.isLineBasicMaterial); | |
} | |
function isOrthographicCamera(camera: THREE.Camera & { isOrthographicCamera?: boolean }): camera is THREE.OrthographicCamera { | |
return Boolean(camera.isOrthographicCamera); | |
} |
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
(module | |
(func $func132 (param i32 i32 i32 i32)) | |
(func $main | |
i32.const 0 | |
i32.const 0 | |
i32.const 0 | |
i32.const 0 | |
call $func132) |
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
(module | |
(func $func15 (result i32) | |
call $func130 | |
i32.const 0 | |
drop | |
i32.const 0 | |
drop | |
i32.const 0) | |
(func $func63 |
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
(module | |
(func $main | |
loop | |
loop | |
loop | |
loop | |
loop | |
loop | |
loop | |
loop |
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
# https://github.com/protocolbuffers/protobuf-javascript/issues/105 | |
# https://github.com/protocolbuffers/protobuf/pull/9874 | |
FROM alpine | |
RUN apk --no-cache add gcompat | |
ARG protoc_js_ver=3.21.2 | |
RUN cd /usr/local &&\ | |
wget -Oprotojs.tar.gz "https://github.com/protocolbuffers/protobuf-javascript/releases/download/v$protoc_js_ver/protobuf-javascript-$protoc_js_ver-linux-$(uname -m).tar.gz" &&\ |
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
#! /bin/bash | |
# | |
# Wrapper script to add command line options to the AVD emulator. | |
# | |
# avdmanager should support the studio.emu.params environment variable, but it doesn't handle commas well. | |
# | |
# ## Installation | |
# | |
# 1. Find your AVD home directory. It should have an `emulator` subdirectory. | |
# 2. Move the `emulator/emulator` file to `emulator/emulator-orig`. |
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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | |
<application | |
android:label="example" | |
android:name="${applicationName}" | |
android:icon="@mipmap/ic_launcher"> | |
<activity | |
android:name=".MainActivity" | |
android:exported="true" | |
android:launchMode="singleTop" | |
android:theme="@style/LaunchTheme" |
NewerOlder