How to use packages that depend on Node.js core modules in React Native.
See the [node-libs-react-native][node-libs-react-native] library as a convenience for implementing this method.
Some MacOS users have very cluttered Docks & wish they could organize them without removing any App icons from the mix.
This snippet will add an empty "spacer" that you can drag around and use to separate icons into groups! See example.
Paste this into your Terminal. Run the command for additional placeholders!
#!/bin/bash | |
# Source: https://docs.aws.amazon.com/general/latest/gr/sigv4-signed-request-examples.html | |
[[ -n "${AWS_ACCESS_KEY_ID}" ]] || { echo "AWS_ACCESS_KEY_ID required" >&2; exit 1; } | |
[[ -n "${AWS_SECRET_ACCESS_KEY}" ]] || { echo "AWS_SECRET_ACCESS_KEY required" >&2; exit 1; } | |
readonly parameterName="SlawekTestParam" | |
readonly method="POST" |
# For those who does not care iCloud and stock mac Applications | |
# As well as stopping Spotlight completley | |
# tested on bigsur (Intel and M ) | |
#!/bin/bash | |
# Reboot your Mac into Recovery Mode | |
# Terminal from top menu | |
# csrutil disable | |
# csrutil authenticated-root disable |
import "shared:shaderc" | |
import "vendor:glfw" | |
import vk "vendor:vulkan" | |
MAX_FRAMES_IN_FLIGHT :: 2 | |
Context :: struct | |
{ | |
instance: vk.Instance, |
// from https://odin-lang.org/docs/overview/#when-statements, see end of that section | |
package main | |
import "core:fmt" | |
import "core:mem" | |
main :: proc() { | |
when ODIN_DEBUG { | |
track: mem.Tracking_Allocator |