- Currently (time and weather)
- Dayboard (task list)
- Dream Afar, Wandertab by Hitlist (travel wallpapers, weather)
- Exposure, Wallcat, Tab.Pics (wallpapers)
- Infinity (Tons of goodies)
- [xkcd](https://chrome.g
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Bulma to scss gulp script | |
| // In your terminal | |
| // 1. npm install -D sass-convert gulp bulma gulp-sass gulp-replace | |
| // 2. gem install sass | |
| var gulp = require("gulp"), | |
| replace = require('gulp-replace'), | |
| converter = require('sass-convert'), | |
| sass = require('gulp-sass'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Reflection; | |
| using UnityEngine; | |
| #if UNITY_EDITOR | |
| using UnityEditor; | |
| using UnityEditor.Callbacks; | |
| #endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright (c) 2014 Jason Jarrett | |
| # | |
| # Tab completion for the `gulp` | |
| # | |
| # Usage: | |
| # | |
| # To enable powershell <tab> completion for gulp you need to be running | |
| # at least PowerShell v3 or greater and add the below to your $PROFILE | |
| # | |
| # Invoke-Expression ((gulp --completion=powershell) -join [System.Environment]::NewLine) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| function getInstance(consumer_key, consumer_secret) { | |
| return new TwitterWebService_(consumer_key, consumer_secret); | |
| } | |
| var TwitterWebService_ = function (consumer_key, consumer_secret) { | |
| this.consumer_key = consumer_key; | |
| this.consumer_secret = consumer_secret; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @powershell -noninteractive "& ([Scriptblock]::Create( ((gc -raw '%~df0') -replace '^@powershell.*' ) )) %*" & goto :eof | |
| ### | |
| ### Example : Just use that first line in a .cmd file and it will execute this file with powershell! | |
| ### | |
| param( $name, $lastname ) | |
| write-host -fore green "Well, hello $name $lastname" | |
| <# Notes: | |
| this works just fine from cmd (or powershell) - even with named parameters: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### | |
| ### Save this file as "install-software.ps1" | |
| ### | |
| # check for elevated powershell | |
| write-host -nonewline -fore cyan "Info: Verifying user is elevated:" | |
| If (-Not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { | |
| write-host -fore Red "NO" | |
| return write-error "You must run this script elevated." | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### | |
| ### Save this file as "install-software.ps1" | |
| ### | |
| # check for elevated powershell | |
| write-host -nonewline -fore cyan "Info: Verifying user is elevated:" | |
| If (-Not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { | |
| write-host -fore Red "NO" | |
| return write-error "You must run this script elevated." | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Youtube HD | |
| // @author adisib | |
| // @namespace namespace_adisib | |
| // @description Select a youtube resolution and resize the player. | |
| // @version 2025.04.13 | |
| // @match https://*.youtube.com/* | |
| // @noframes | |
| // @grant GM.getValue | |
| // @grant GM.setValue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ____ | |
| # / __ \________ ________ ____ ______ | |
| # / /_/ / ___/ _ \/ ___/ _ \/ __ `/ ___/ | |
| # / ____/ / / __/ / / __/ /_/ (__ ) | |
| #/_/ /_/ \___/_/ \___/\__, /____/ | |
| # /_/ | |
| # this script will automatically pull font awesome files from github via .net framework "WebClient" | |
| # install fantastically handy ImageMagick tool from => http://www.imagemagick.org/script/binary-releases.php | |
| # and add it to your path | |
| if (-not [bool](Get-Command "magick.exe" -ErrorAction SilentlyContinue)) { throw "Magick.exe not in path" } |