~/add_cert.sh my.intra.net
you will be asked for your password to add thit to keychain
- downloads pem file
- adds to trusted root certificates
| // ==UserScript== | |
| // @name Learn Chef Rally Presentation | |
| // @namespace https://learn.chef.io/ | |
| // @version 0.1 | |
| // @description Present only the code windows | |
| // @author Franklin Webber | |
| // @match https://learn.chef.io/modules/* | |
| // @grant none | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/1.10.2/jquery.min.js | |
| // ==/UserScript== |
| #!/opt/delivery/embedded/bin/ruby | |
| require 'elasticsearch' | |
| require 'json' | |
| # Get the user configuration for the time threshold we will use to mark the | |
| # nodes as missing. We read it from the delivery config if available, or use the | |
| # environment variable which might be set or set it to the default of 12 hours. | |
| threshold_in_mins = begin | |
| if File.exist?("/etc/delivery/delivery-running.json") |
| #!/bin/bash -ex | |
| # Quickly launch and preconfigure a Windows 1803 dev machine in AWS with spot pricing, from your mac | |
| usage=' | |
| launch_ec2_windows_spot.sh --username irving --password Cod3Can! --ssh-key irving --subnet subnet-7fd06308 --security-group-id sg-8a0f82f5 | |
| NOTE: Due to a weird assumption in the UserData script, the password must be exactly 8 characters long and meet complexity requirements | |
| NOTE2: Create a SECURITY_GROUP_ID that allows port 3389 from your IP address | |
| NOTE3: Install Microsoft Remote Desktop 10 from the app store ( https://itunes.apple.com/us/app/microsoft-remote-desktop-10/id1295203466?mt=12 ) | |
| ' |
Please see Patrick330's fork of this script.
ClassDojo changes their site regularly, so a script like this needs regular maintenance. I have decided to archive this project and stop providing updates. Patrick330's fork linked above may be a good alternative.
ClassDojo is a classroom communication app used to share reports between parents and teachers. Teachers track student behavior and upload photos or videos. The gamification style system teaches developmental skills through real-time feedback.
| /*! QRious v4.0.2 | (C) 2017 Alasdair Mercer | GPL v3 License | |
| Based on jsqrencode | (C) 2010 [email protected] | GPL v3 License */ | |
| !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.QRious=e()}(this,function(){"use strict";function t(t,e){var n;return"function"==typeof Object.create?n=Object.create(t):(s.prototype=t,n=new s,s.prototype=null),e&&i(!0,n,e),n}function e(e,n,s,r){var o=this;return"string"!=typeof e&&(r=s,s=n,n=e,e=null),"function"!=typeof n&&(r=s,s=n,n=function(){return o.apply(this,arguments)}),i(!1,n,o,r),n.prototype=t(o.prototype,s),n.prototype.constructor=n,n.class_=e||o.class_,n.super_=o,n}function i(t,e,i){for(var n,s,a=0,h=(i=o.call(arguments,2)).length;a<h;a++){s=i[a];for(n in s)t&&!r.call(s,n)||(e[n]=s[n])}}function n(){}var s=function(){},r=Object.prototype.hasOwnProperty,o=Array.prototype.slice,a=e;n.class_="Nevis",n.super_=Object,n.extend=a;var h=n,f=h.extend(function(t,e,i){this.qrious=t,this.element=e, |
If you're getting errors like:
+---------------------------------------------+
Chef License Acceptance
Before you can continue, 2 product licenses
must be accepted. View the license at
https://www.chef.io/end-user-license-agreement/
| # Based on http://nuts4.net/post/automated-download-and-installation-of-visual-studio-extensions-via-powershell | |
| param([String] $PackageName) | |
| $ErrorActionPreference = "Stop" | |
| $baseProtocol = "https:" | |
| $baseHostName = "marketplace.visualstudio.com" | |
| $Uri = "$($baseProtocol)//$($baseHostName)/items?itemName=$($PackageName)" |
| C:\Users\pasta\AppData\Local\Android\Sdk\platform-tools\adb.exe forward tcp:9222 localabstract:chrome_devtools_remote | |
| wget -O tabs.json http://localhost:9222/json/list | |
| REM ruby -e "require 'json'; puts JSON.load(File.read('tabs.json')).map{|e| %W{<a href='#{e['url']}'> #{e['title']}</a><br/>} }" | Set-Clipboard -AsHtml | |
| ruby -e "require 'json'; puts JSON.load(File.read('tabs.json')).map{|e| %W{#{e['title']}\t#{e['url']}} }" | Set-Clipboard |