Skip to content

Instantly share code, notes, and snippets.

View kdev's full-sized avatar
🏳️‍🌈

Konstantin W. kdev

🏳️‍🌈
View GitHub Profile
@LiveOverflow
LiveOverflow / hireme.ipynb
Created November 20, 2020 10:46
Hire me!!!!!!!!
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@voxain
voxain / resources.md
Last active April 6, 2023 14:47
Favorite frontend & design resources
@jacks0n
jacks0n / string-to-pascal-case.js
Last active April 19, 2024 04:00
Convert a string in JavaScript to Pascal Case (removing non alphabetic characters).
/**
* Convert a string to Pascal Case (removing non alphabetic characters).
*
* @example
* 'hello_world'.toPascalCase() // Will return `HelloWorld`.
* 'fOO BAR'.toPascalCase() // Will return `FooBar`.
*
* @returns {string}
* The Pascal Cased string.
*/
@PierreMage
PierreMage / PowerShell-profile.ps1
Last active October 1, 2022 00:33
Make your Windows command line better with doskey
# http://technet.microsoft.com/en-us/library/ee692685.aspx
# F7 = history
# Alt+F7 = history -c
# F8 = Ctrl+R
Set-Location C:
# Easier navigation
Set-Alias o start
function oo {start .}