history | nl | sed -n '265,275p'
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
| \begin{figure}[H] | |
| \centering | |
| % 2027 Timeline | |
| \begin{tikzpicture}[scale=0.8] | |
| \draw[thick, ->] (0,0) -- (16,0) node[right] {\small 2027}; | |
| \foreach \x/\m in {0/Jan, 2/Feb, 4/Mar, 6/Apr, 8/May, 10/Jun, 12/Jul, 14/Sep} { | |
| \draw[thick] (\x,-0.1) -- (\x,0.1) node[above] {\small \m}; | |
| } |
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
| # Visual Studio files | |
| .vs/ | |
| .vscode/ | |
| *.suo | |
| *.user | |
| *.userosscache | |
| *.sln.docstates | |
| *.userprefs | |
| # Build results |
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
| /// <summary> | |
| /// This is the dependency or subsystem that needs to be initialized before the first scene | |
| /// </summary> | |
| public interface IInitializable | |
| { | |
| bool IsInitialized { get; } | |
| bool CanInitializeAsynchronously { get; } | |
| void Initialize(); | |
| event Action OnInitialized; | |
| } |
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
| from PIL import Image | |
| import os | |
| import sys | |
| def convert_tif_to_png(src_path, dest_path): | |
| if not os.path.exists(dest_path): | |
| os.makedirs(dest_path) | |
| for root, dirs, files in os.walk(src_path): | |
| for file in files: |
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
| """ | |
| Nested Extension Copier: A Python script to recursively copy files with specified extensions | |
| from a source directory to a destination directory. It accepts multiple extensions as command-line | |
| arguments, allowing for flexible and targeted file copying. Ideal for organizing files or selective backups. | |
| """ | |
| import os | |
| import shutil | |
| import sys | |
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 os | |
| import sys | |
| def find_unique_extensions(path): | |
| """ | |
| Recursively finds and returns a set of unique file extensions in the given directory. | |
| :param path: Path of the directory to search in. | |
| :return: Set of unique file extensions. | |
| """ |
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; | |
| using System.Threading; | |
| using Cysharp.Threading.Tasks; | |
| using UnityEngine; | |
| using Awaiter = Cysharp.Threading.Tasks.UniTask.Awaiter; | |
| /// <summary> | |
| /// Coroutines are great, and if we can fulfill all requirements using them, then good, no need to mess with Tasks! | |
| /// |
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
| #!/bin/bash | |
| # Usage: ./script.sh [file1.aab file2.aab ...] | |
| # If no arguments are provided, the script will find and process all .aab files in the current directory. | |
| # The script performs the following steps for each .aab file: | |
| # 1. Builds an .apks file using bundletool. | |
| # 2. Deletes the original .aab file. | |
| # 3. Renames the .apks to .zip. | |
| # 4. Decompresses the .zip into a new directory. | |
| # 5. Deletes the .zip file. |
NewerOlder