Skip to content

Instantly share code, notes, and snippets.

View Djiit's full-sized avatar
🎯
Focusing

Julien Tanay Djiit

🎯
Focusing
View GitHub Profile
@adrienjoly
adrienjoly / ._release-to-chrome-web-store.sh
Last active March 26, 2020 01:09
This script creates a ZIP archive of a Chrome extension, then uploads it to the Chrome Web Store.
#!/bin/sh
# This script creates a ZIP archive of this extension
# and uploads it to the Chrome Web Store.
# it requires environment variables: APP_ID, CLIENT_ID, and CLIENT_SECRET
# (see https://developer.chrome.com/webstore/using_webstore_api)
source .env
VERSION=$(jq --raw-output .version manifest.json)
@msuchodolski
msuchodolski / electron_drag_disable.css
Last active July 19, 2023 13:08
Disable dragging and selecting html elements (like links, images etc...) in Electron
/**
* MAKE ELECTRON APP FEEL MORE NATIVE
*
* * Prevent dragging all HTML elements, specially:
* - images
* - links (anchors)
*
* * Prevent text selection
*/
@terrehbyte
terrehbyte / UsefulUnityAssets.md
Last active June 24, 2024 19:06
Useful Open-Source Unity Assets

Useful Open-Source Unity Assets

This is a compilation of various open-source Unity plugins, codebases, or utility scripts that may aid in expediting the development process.

Art / Design Tools

ProbePolisher - Light Probe Editor - keijiro

"ProbePolisher is a Unity Editor plugin for editing light probes. It works both on Unity Basic (free) and Unity Pro."

Code
Releases

@tdd
tdd / gitconfig.ini
Last active July 24, 2024 04:11
Nice, useful global Git configuration
# Put this in your ~/.gitconfig or ~/.config/git/config
# Windows users: "~" is your profile's home directory, e.g. C:\Users\<YourName>
[user]
name = Your Full Name
email = your@email.tld
[color]
# Enable colors in color-supporting terminals
ui = auto
[alias]
# List available aliases