I hereby claim:
- I am dawnerd on github.
- I am dawnerd (https://keybase.io/dawnerd) on keybase.
- I have a public key ASAvM0e7v1bz-btItwUsmrZR0xL36Mnc2m7TQCjEp28ULAo
To claim this, I am signing this object:
| ! Clickup tweaks | |
| app.clickup.com##.cu-task-view-header__brain-command-bar | |
| app.clickup.com##.cu-ai-banner-padding | |
| app.clickup.com##cu-task-ai-button | |
| app.clickup.com##button[aria-label="Brain"] | |
| app.clickup.com##[class*="_askAiButtonContainer"] | |
| app.clickup.com##.automation-converged-ai-task-button--agent.automation-converged-ai-task-button | |
| app.clickup.com##cu-brain-command-bar-at-location | |
| app.clickup.com##button.ai-button | |
| app.clickup.com##.ask-ai-button |
| #!/bin/sh | |
| mount -t proc proc /proc | |
| if [ -f /usr/share/.workingS ]; then | |
| REASON="$(cat /usr/share/.workingS)" | |
| echo "WORKING SERVER!!!" | |
| echo " -----------" | |
| echo "Reason: $REASON" | |
| exit 1 | |
| fi |
| // ==UserScript== | |
| // @name Twitter STFO | |
| // @namespace http://twitter.com/ivanca | |
| // @version 1.0 | |
| // @description Delete button for individual annoying tweets you hate to read again! | |
| // @match https://twitter.com/* | |
| // @copyright 2012+, You | |
| // ==/UserScript== | |
| (function () { |
| // Install with user style plugin of choice | |
| .GridTaskList > div > .TaskGroup > div { | |
| display: flex; | |
| -webkit-box-orient: vertical; | |
| flex-direction: column; | |
| } | |
| .GridTaskList > div > .TaskGroup .TaskGroup { | |
| -webkit-box-ordinal-group: 2; | |
| order: 2; |
I hereby claim:
To claim this, I am signing this object:
| class Domodule { | |
| constructor(el) { | |
| this.el = el; | |
| this.els = {}; | |
| for (const action of this.find('[data-action]')) { | |
| action.addEventListener( | |
| action.dataset.actionType || 'click', | |
| this[action.dataset.action].bind(this) | |
| ); |
| echo 'Starting nginx-proxy' | |
| docker run -d -p 80:80 -p 443:443 \ | |
| --name nginx-proxy \ | |
| -v /var/sites/certs:/etc/nginx/certs:ro \ | |
| -v /etc/nginx/vhost.d \ | |
| -v /usr/share/nginx/html \ | |
| -v /var/run/docker.sock:/tmp/docker.sock:ro \ | |
| jwilder/nginx-proxy | |
| echo 'Starting nginx-proxy ssl' |
| #!/bin/bash | |
| APP_NAME="opencoaster" | |
| DOCKER_HOST_SSH_COMMAND="docker-machine ssh $APP_NAME" | |
| WATCH_PID="" | |
| DOCKER_PID="" | |
| docker-machine start opencoaster | |
| eval "$(docker-machine env $APP_NAME)" |
| var sign = "The best hotdogs in town."; | |
| String.prototype.emphasize = function(options) { | |
| options = options || { | |
| minWordLength: 3 | |
| }; | |
| var wordRegex = new RegExp('(\\w{' + options.minWordLength + ',})', 'g'); | |
| var words = this.match(wordRegex); | |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "precise64" | |
| config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box" | |
| config.vm.network :forwarded_port, guest: 80, host: 8080 |