A curated list of arrrrrrrrr!
This file contains hidden or 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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell] | |
"FolderType"="NotSpecified" |
This file contains hidden or 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; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Threading.Tasks; | |
using UnityEditor; | |
using UnityEditor.PackageManager; | |
using UnityEditor.PackageManager.Requests; | |
using UnityEngine; | |
using static System.Environment; |
This file contains hidden or 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; | |
using System.IO; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class SaveImage2AndroidGallery | |
{ | |
/// <summary> | |
/// Save the image byte data to the Android gallery. |
This file contains hidden or 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 {chromium, devices} from 'playwright'; | |
import ora from 'ora'; | |
import inquirer from 'inquirer' | |
import {createWriteStream} from 'node:fs' | |
import {mkdir} from 'node:fs/promises' | |
import {get} from 'node:https' | |
/** | |
* Download music from jetsetradio.live | |
* |
Updated on: Thursday, May 04, 2023
This file contains hidden or 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
--by @mvyasu | |
--June 2 2022 | |
local ProximityPromptService = game:GetService("ProximityPromptService") | |
local Players = game:GetService("Players") | |
local highlightLookupDictionary = {} | |
ProximityPromptService.PromptShown:Connect(function(promptInstance) | |
if not highlightLookupDictionary[promptInstance] then |
This file contains hidden or 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 UnityEngine; | |
using UnityEngine.Sprites; | |
using UnityEngine.UI; | |
#if UNITY_2017_4 || UNITY_2018_2_OR_NEWER | |
using UnityEngine.U2D; | |
#endif | |
#if UNITY_EDITOR | |
using UnityEditor; |
This file contains hidden or 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
# To run this script make a directory called elasticsearch for your data. | |
# Note that this script won't work if your data is too big for local disk. | |
import pickle | |
from elasticsearch import Elasticsearch | |
### CHANGE THESE CONSTANTS TO MATCH THE ELASTICSEARCH CLUSTER YOU'RE MIGRATING FROM ### | |
ES_HOST = "example.elasticsearch.url.com" | |
ES_PORT = 9200 | |
ES_INDEX = "my_index_name" |
NewerOlder