Skip to content

Instantly share code, notes, and snippets.

View wilinz's full-sized avatar
🔎
正在上早八

wilinz wilinz

🔎
正在上早八
  • Guilin University of Electronic Technology School of Artificial Intelligence
  • China Guilin
View GitHub Profile
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy
npm config delete proxy
@wilinz
wilinz / MyLifecycleOwner.kt
Created February 16, 2023 12:24 — forked from handstandsam/MyLifecycleOwner.kt
Jetpack Compose OverlayService. You have to have all the correct permissions granted and in your manifest, but if you do, this this will show a green box with "Hello" in it!
import android.os.Bundle
import androidx.lifecycle.Lifecycle
import androidx.lifecycle.LifecycleRegistry
import androidx.savedstate.SavedStateRegistry
import androidx.savedstate.SavedStateRegistryController
import androidx.savedstate.SavedStateRegistryOwner
internal class MyLifecycleOwner : SavedStateRegistryOwner {
private var mLifecycleRegistry: LifecycleRegistry = LifecycleRegistry(this)
private var mSavedStateRegistryController: SavedStateRegistryController = SavedStateRegistryController.create(this)
@wilinz
wilinz / googleChromeTranslateApi.js
Last active July 2, 2023 07:04
谷歌浏览器翻译API破解
const googleTranslateTKK = "448487.932609646";
function shiftLeftOrRightThenSumOrXor(num, optString) {
for (let i = 0; i < optString.length - 2; i += 3) {
let acc = optString.charAt(i + 2);
if ('a' <= acc) {
acc = acc.charCodeAt(0) - 87;
} else {
acc = Number(acc);
}
@wilinz
wilinz / languages.properties
Created July 26, 2022 20:09
Google translate Language list
sq=Albanian
ar=Arabic
am=Amharic
az=Azerbaijani
ga=Irish
et=Estonian
or=Oriya
eu=Basque
be=Belarusian
bg=Bulgarian
@wilinz
wilinz / selection_transformer.dart
Last active August 19, 2023 06:40 — forked from schultek/selection_transformer.dart
A widget that transforms the text selection when copied.
import 'package:flutter/rendering.dart';
import 'package:flutter/widgets.dart';
typedef SelectionTransform = String Function(Iterable<String>);
/// A widget that transforms the text selection when copied.
///
/// This uses the [SelectionContainer] with a custom [SelectionContainerDelegate] to override the
/// [getSelectedContent] method with a custom implementation.
///
@wilinz
wilinz / delete_all_wordArt.vba
Last active September 16, 2023 09:03
delete all wordArt
Sub DeleteArtisticText()
Dim oShape As Shape
Dim toDelete As New Collection
Dim targetTexts() As Variant
' Specify the texts you want to delete
targetTexts = Array("Text1", "Text2", "Text3") ' Add your specific texts here
' First, find all shapes to delete and add them to the collection
For Each oShape In ActiveDocument.Shapes
@wilinz
wilinz / pointer.go
Last active October 25, 2023 16:16
go pointer util
package ptr
func ptr[T any](v T) *T {
return &v
}
func unptr[T any](ptr *T) T {
return *ptr
}
@wilinz
wilinz / ComposeCheckboxWithLabel.kt
Last active February 29, 2024 13:25
ComposeCheckboxWithLabel
package com.wilinz.xxx
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.Checkbox
import androidx.compose.runtime.Composable
import androidx.compose.runtime.mutableStateOf
@wilinz
wilinz / Sample.kt
Last active March 3, 2024 15:12
Compose Material3 TimePickerDialog
@Composable
fun Sample() {
val timePickerState =
rememberTimePickerState(
is24Hour = true,
initialHour = 12,
initialMinute = 0
)
var isShowTimePicker by remember {
mutableStateOf(false)
@wilinz
wilinz / fluttertoast.dart
Last active March 13, 2024 13:07
fluttertoast 封装
import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
import 'package:get/get.dart';
import 'package:xxx/generated/locales.g.dart';
import 'package:xxx/ui/route.dart';
final FToast fToast = FToast();
bool _isInit = false;
void toast(dynamic message) {