https://reference.dashif.org/dash.js/latest/samples/drm/widevine.html
https://bitmovin.com/demos/drm
https://harmonicinc-com.github.io/shaka-player/latest/demo/
import os | |
import tkinter as tk | |
import pyautogui | |
from PIL import Image, ImageTk, ImageOps | |
from screeninfo import get_monitors | |
class BorderlessApp: | |
def __init__(self, root): | |
self.root = root | |
self.root.title("Tracking Mouse Pointer") |
using System; | |
using System.Speech.Synthesis; | |
class Program | |
{ | |
private static void Main(string[] args) | |
{ | |
// dotnet add package System.Speech | |
using (var speechSynthesizer = new SpeechSynthesizer()) | |
{ |
using System; | |
using System.Collections.Generic; | |
using UnityUtils; | |
public class PriorityQueue<T> { | |
class KeyNodeComparer : IComparer<(Key, T)> { | |
public int Compare((Key, T) x, (Key, T) y) { | |
return x.Item1 < y.Item1 ? -1 : x.Item1 > y.Item1 ? 1 : 0; | |
} | |
} |
using System.Reflection; | |
using UnityEditor; | |
using UnityEngine; | |
/// <summary> | |
/// Toggles the Inspector lock state and the Constrain Proportions lock state. | |
/// </summary> | |
public static class LockInspector { | |
static readonly MethodInfo flipLocked; | |
static readonly PropertyInfo constrainProportions; |
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell] | |
"FolderType"="NotSpecified" |
Unity version | * | Gradle version | Android Gradle Plug-in version |
---|---|---|---|
2023.2 | Admob | 7.6 | 7.3.1 |
2022.3 | Admob | 7.2 | 7.1.2 Or 7.1.3 |
Emoji | Purpose | MD Markup | Prefix |
---|---|---|---|
📄 | Generic message | :page_facing_up: |
|
📐 | Improve the format / structure of the code / files | :triangular_ruler: |
[IMPROVE]: |
⚡ | Improve performance | :zap: |
[IMPROVE]: |
🚀 | Improve something (anything) | :rocket: |
[IMPROVE]: |
📝 | Write docs | :memo: |
[PROD]: |
💡 | New idea |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |