https://react.semantic-ui.com/
I'm going to check this out as a basline UI kit for future react projects. Looks like a good graphical baseline and fairly easy to use. The Grid looks particularly interesting.
| { | |
| "usd_conversions": [ | |
| { | |
| "name": "INR", | |
| "rate": 80.0 | |
| }, | |
| { | |
| "name": "EUR", | |
| "rate": 0.92 | |
| } |
| import {Canvas, MeshProps, useFrame, useLoader} from "@react-three/fiber/native" | |
| // import useControls from "r3f-native-orbitcontrols" | |
| import { useRef, useState } from "react" | |
| import { View } from "react-native" | |
| import { GLTFLoader } from "three-stdlib"; | |
| import { Suspense } from "react"; | |
| import { useGLTF } from '@react-three/drei/native' | |
| import useControls from "r3f-native-orbitcontrols"; | |
| export default function App() { |
| from cmath import exp | |
| import bpy | |
| ##### :: Script-Specific Functions :: ##### | |
| def deselect_all(): | |
| bpy.ops.object.select_all(action='DESELECT') | |
| def active_object(name): | |
| print(name) |
| import androidx.compose.ui.geometry.Rect | |
| import androidx.compose.ui.geometry.Size | |
| import androidx.compose.ui.graphics.Outline | |
| import androidx.compose.ui.graphics.Path | |
| import androidx.compose.ui.graphics.Shape | |
| import androidx.compose.ui.unit.Density | |
| import androidx.compose.ui.unit.Dp | |
| import androidx.compose.ui.unit.LayoutDirection | |
| class RoundedDiamondFabShape( |
https://react.semantic-ui.com/
I'm going to check this out as a basline UI kit for future react projects. Looks like a good graphical baseline and fairly easy to use. The Grid looks particularly interesting.
| package com.your.package.structure.here | |
| /** | |
| * Custom Preference that provides an indeterminate progress bar for showing loading/long-running operations. | |
| * Set checked to to "true" to show the progress bar and "false" to hide it. | |
| */ | |
| class LoadingPreferenceRow constructor( | |
| context: Context, attrs: AttributeSet? = null | |
| ): SwitchPreference(context, attrs) { |
https://microlink.io/docs/sdk/getting-started/overview
Looks like a really cool library to automatically preview links in your React app.
| alias ls='ls -l' | |
| alias weather='curl wttr.in/SanFrancisco?n' | |
| alias nuget="mono /usr/local/bin/nuget.exe" | |
| export CLICOLOR=1 | |
| export LSCOLORS=ExFxBxDxCxegedabagacad | |
| export JAVA_HOME="/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home" | |
| export PATH=$PATH:/Users/<user>/Library/Android/sdk/platform-tools | |
| export PATH=$PATH:/Users/<user>/Library/Android/sdk/emulator | |
| export PATH=$PATH:/usr/local/bin |
| class BlockCommentDetector : Detector(), Detector.UastScanner { | |
| companion object { | |
| val ISSUE: Issue = Issue.create( | |
| "BlockComment", | |
| "BLOCK comment found, cannot continue build.", | |
| "Please resolve all BLOCK commented code before merging.", | |
| Category.CORRECTNESS, | |
| 6, | |
| Severity.ERROR, | |
| Implementation(BlockCommentDetector::class.java, Scope.JAVA_FILE_SCOPE) |
| /** | |
| * Execute a lambda with two verified non-null values | |
| */ | |
| inline fun <T : Any, U : Any, W : Any> Pair<T?, U?>.bothNotNull(block: (one: T, two: U) -> W) { | |
| first?.let { one -> | |
| second?.let { two -> | |
| block(one, two) | |
| } | |
| } | |
| } |