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 Foundation | |
import Carbon | |
import AppKit | |
func checkInputMonitoringPermission() -> Bool { | |
let options: NSDictionary = [kAXTrustedCheckOptionPrompt.takeRetainedValue() as NSString: true] | |
let isTrusted = AXIsProcessTrustedWithOptions(options) | |
return isTrusted | |
} |
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
Severity Code Description Project File Line Suppression State | |
Error C2664 'String_t *Strings_WeakIntern_mC72EF2A3C712D84A4E92074BC83E711414D7F0BD(ReadOnlySpan_1_t0846CD1BEF355AE12F9A41FFB292AA4A85F072F3,const RuntimeMethod *)': cannot convert argument 1 from 'ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1' to 'ReadOnlySpan_1_t0846CD1BEF355AE12F9A41FFB292AA4A85F072F3' Il2CppOutputProject F:\Builds\Il2CppOutputProject\Source\il2cppOutput\MessagePack2.cpp 21785 |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
id|ja | |
Material Maker|Material Maker | |
Powered by|搭載 | |
File|ファイル | |
New material|新しいマテリアル | |
New paint project|新しいペイントプロジェクト | |
Load|ロード | |
Load material from website|ウェブサイトからマテリアルを読み込む | |
Load recent|最近ロードします | |
Save|保存 |
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
// Copyright 2022 KOGA Mitsuhiro Authors. All rights reserved. | |
// Use of this source code is governed by a MIT-style | |
// license that can be found in the LICENSE file. | |
using System.IO; | |
using UnityEditor; | |
using UnityEngine; | |
public class PrefabVariantGenerator : EditorWindow | |
{ |
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
using System.Collections.Generic; | |
using UniRx; | |
using UniRx.Triggers; | |
using UnityEngine; | |
public class NewBehaviourScript : MonoBehaviour | |
{ | |
private enum DPadDirection | |
{ | |
None, |
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
conan install . --build=openssl --build=sqlcipher |
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
*://*.idahotvep.org/* | |
*://*.naver.jp/* | |
*://*.vtuber-matome.com/* | |
*://*.waldorf-am-see.org/* | |
*://*.sejuku.net/* | |
*://*.programmerstart.com/* | |
*://*.codetd.com/* | |
*://*.ipentec.com/* | |
*://bleepcoder.com/* | |
*://tech-ja.netlify.app/* |
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
*://*.366service.com/* | |
*://*.alwaysemmyhope.com/* | |
*://*.answer-id.com/* | |
*://*.askdev.info/* | |
*://*.code-examples.net/* | |
*://*.codeflow.site/* | |
*://*.coder.work/* | |
*://*.fixes.pub/* | |
*://*.gitmemory.com/* | |
*://*.i-harness.com/* |
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
public class Callback : AndroidJavaProxy, IDisposable | |
{ | |
private Action action; | |
private Disposable disposable; | |
public Callback(Action a) : base("any.java.CallbackInterface") | |
{ | |
action = a; | |
} |
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
using UnityEngine; | |
using VContainer.Unity; | |
namespace VContainer | |
{ | |
public static class IContainerBuilderExtension | |
{ | |
public static RegistrationBuilder RegisterComponentInGameObject<T>(this IContainerBuilder builder, | |
GameObject gameObject = default) | |
where T : MonoBehaviour |
NewerOlder