Skip to content

Instantly share code, notes, and snippets.

@777genius
777genius / set environment variable.ps1
Last active September 4, 2018 21:47
PowerShell SetEnvironmentVariable
[Environment]::SetEnvironmentVariable("<VARIABLE_NAME>", "<VARIABLE_VALUE>", "User")
@777genius
777genius / all-words.js
Created August 27, 2018 19:06
Find all words in text(regular expression)
function getWords (text) {
return text.match(/([^\u0000-\u0040\u005B-\u0060\u007B-\u00BF\u02B0-\u036F\u00D7\u00F7\u2000-\u2BFF])+/g)
}
// Example:
// For text: 'Есть button, h1, textarea. Мне нужно: найти самое длинное слово в-textarea! то -- что пишу в ней'.match(...)
// Result will be: ["Есть", "button", "h", "textarea", "Мне", "нужно", "найти", "самое", "длинное", "слово", "в", "textarea", "то", "что", "пишу", "в", "ней"]
// AUTOR: https://regexr.com/3b0ik
@777genius
777genius / truncate.js
Created July 15, 2018 23:23
Vue truncate filter
Vue.filter('truncate', (text, stop = 15, clamp) => {
if (!text) {
return text
}
return text.slice(0, stop) + (stop < text.length ? clamp || '...' : '')
})