Skip to content

Instantly share code, notes, and snippets.

View JohannesDeml's full-sized avatar
🥽
Making Science

Johannes Deml JohannesDeml

🥽
Making Science
View GitHub Profile
@JohannesDeml
JohannesDeml / WifiInformation.bat
Created June 3, 2016 22:18
Windows get information about all saved wifis on a computer including their passwords (Which is otherwise kind of hard with Windows 10)
netsh wlan show profiles
set /p wifiName=For which wifi do you want to know the password?
netsh wlan show profile name="%wifiName%" key=clear
pause
@JohannesDeml
JohannesDeml / CustomEditorScript.txt
Created December 6, 2016 08:34
Unity Custom inspector template
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="#SCRIPTNAME#.cs" company="Supyrb">
// Copyright (c) #YEAR# Supyrb. All rights reserved.
// </copyright>
// <author>
// Johannes Deml
// send@johannesdeml.com
// </author>
// --------------------------------------------------------------------------------------------------------------------
@JohannesDeml
JohannesDeml / PokemonGo.md
Last active October 7, 2017 08:14
Pokemon Go included Libraries
@JohannesDeml
JohannesDeml / CreateArtboardsForSelectedImages.jsx
Last active April 5, 2018 14:17
Adobe Illustator script: Creates an artboard for each selected image with the name of the imageFile and its size on the canvas
// ----------------------------------------------------------------------------
// <copyright file="CreateArtboardsForSelectedImages.jsx" company="Supyrb">
// Copyright (c) 2018 Supyrb. All rights reserved.
// </copyright>
// <author>
// Johannes Deml
// send@johannesdeml.com
// </author>
// <summary>
// Creates an artboard for each selected image with the name of the imageFile and its size on the canvas.
@JohannesDeml
JohannesDeml / keybase.md
Created February 21, 2019 16:20
Keybase.io proof

Keybase proof

I hereby claim:

  • I am johannesdeml on github.
  • I am johannesdeml (https://keybase.io/johannesdeml) on keybase.
  • I have a public key ASDVKatOMHNSM90leOf-tulfdkAhpoDtVSAxGx_PtY7R5Ao

To claim this, I am signing this object:

@JohannesDeml
JohannesDeml / ApplySelectedPrefabs.cs
Created March 31, 2018 08:15
Apply prefabs for all selected objects and their children
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ApplySelectedPrefabs.cs" company="Supyrb">
// Copyright (c) 2017 Supyrb. All rights reserved.
// </copyright>
// <author>
// baptisteLar
// http://baptistelargaiolli.com/
// </author>
// <author>
// Johannes Deml
@JohannesDeml
JohannesDeml / SceneViewFocusChangerWindow.cs
Last active January 20, 2020 08:53
Unity scene view focus changer
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="SceneViewFocusChangerWindow.cs" company="Supyrb">
// Copyright (c) 2018 Supyrb. All rights reserved.
// </copyright>
// <author>
// Johannes Deml
// send@johannesdeml.com
// </author>
// --------------------------------------------------------------------------------------------------------------------
@JohannesDeml
JohannesDeml / .gitattributes
Last active September 15, 2020 14:37 — forked from nemotoo/.gitattributes
.gitattributes for Unity3D with git-lfs
# Unity .gitattributes - Deml v1.0.0
# Source https://gist.github.com/JohannesDeml/0d25d654f8bbced6fcf651281e555397/
# Unity
*.cs diff=csharp text
*.cginc text
*.shader text
*.mat merge=unityyamlmerge eol=lf
@JohannesDeml
JohannesDeml / .gitconfig
Created November 27, 2020 10:25
My gobal git config
[user]
name = Johannes Deml
email = public@deml.io
signingkey = 707EF4CBFC0A989B
[core]
symlinks = true
[commit]
gpgSign = true
[tag]
gpgSign = true
@JohannesDeml
JohannesDeml / TooltipDrawer.cs
Last active April 13, 2021 20:58
Unity Tooltip drawer for Material properties using reflection
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="TooltipDrawer.cs" company="Supyrb">
// Copyright (c) 2018 Supyrb. All rights reserved.
// </copyright>
// <author>
// Johannes Deml
// send@johannesdeml.com
// </author>
// --------------------------------------------------------------------------------------------------------------------