Skip to content

Instantly share code, notes, and snippets.

View blackmagezeraf's full-sized avatar
🤤
This time will too pass.

Ali Hussain Abid blackmagezeraf

🤤
This time will too pass.
View GitHub Profile
@blackmagezeraf
blackmagezeraf / Unity.gitattributes
Last active November 1, 2024 21:09
Unity Git Initialization Template
# Unity
*.cginc text
*.cs text diff=csharp
*.shader text
# Unity YAML
*.mat merge=unityyamlmerge eol=lf
*.anim merge=unityyamlmerge eol=lf
*.unity merge=unityyamlmerge eol=lf
*.prefab merge=unityyamlmerge eol=lf
@blackmagezeraf
blackmagezeraf / UnrealEngine.gitattributes
Last active May 26, 2026 17:23
Unreal Engine Git Initialization
# Unreal Engine file types.
*.uasset filter=lfs diff=lfs merge=lfs -text
*.umap filter=lfs diff=lfs merge=lfs -text
# Raw Content file types.
*.fbx filter=lfs diff=lfs merge=lfs -binary
*.3ds filter=lfs diff=lfs merge=lfs -binary
*.psd filter=lfs diff=lfs merge=lfs -binary
*.png filter=lfs diff=lfs merge=lfs -binary
*.mp3 filter=lfs diff=lfs merge=lfs -binary
@blackmagezeraf
blackmagezeraf / Advanced Searching.md
Last active May 12, 2026 23:55
This is a document where tips and tricks to efficiently searching on bing.com are compiled. I made this document so that I can look it up as a cheat sheet for times in need.

Advanced Searching (Bing , Google , DuckDuckGo)

Here is a table of some advanced searching tricks for Bing:

Symbol Example Function
+ +lifewire +help Finds web pages that contain all the terms preceded by the + symbol
"" "contact us" Finds the exact words in a phrase
() site:lifewire.com - (iPod tablet) Finds or excludes web pages that contain a group of words
AND, & house AND sale Finds web pages that contain all the terms or phrases

GS1 List

Code Country
000-019 UPC-A compatible - United States and Canada
020-029 UPC-A compatible - Used to issue restricted circulation numbers within a geographic region
030-039 UPC-A compatible - United States drugs (see United States National Drug Code)
040-049 UPC-A compatible - Used to issue restricted circulation numbers within a company
050-059 UPC-A compatible - GS1 US reserved for future use
060-099 UPC-A compatible - United States and Canada
100-139 United States
@blackmagezeraf
blackmagezeraf / keybinds.json
Created February 27, 2026 18:24
Settings For VsCode
[
// Navigation
{
"command": "workbench.action.navigateLeft",
"key": "ctrl-h"
},
{
"command": "workbench.action.navigateRight",
"key": "ctrl-l"
},
@blackmagezeraf
blackmagezeraf / settings.json
Created May 11, 2026 21:48
Zed Editor Settings (~/.config/zed/settings.json)
{
// Startup Experience
"restore_on_startup": "launchpad",
// Editor Settings
"ui_font_family": "Noto Sans",
"buffer_font_family": "0xProto Nerd Font",
"buffer_font_size": 13,
"ui_font_size": 13,
"line_ending": "enforce_lf",