I made this with the help from a tutorial from codecademy :)
Forked from Ophélie Champagne's Pen Solar system.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Comicbook Crazy · CodePen</title> | |
| <!-- | |
| Copyright (c) 2012 martic, http://codepen.io/martic | |
| Permission is hereby granted, free of charge, to any person obtaining |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Comicbook Crazy · CodePen</title> | |
| <!-- | |
| Copyright (c) 2012 martic, http://codepen.io/martic | |
| Permission is hereby granted, free of charge, to any person obtaining |
| # Boxstarter script for blog post http://blog.zerosharp.com/provisioning-a-new-development-machine-with-boxstarter | |
| # Allow reboots | |
| $Boxstarter.RebootOk=$true | |
| $Boxstarter.NoPassword=$false | |
| $Boxstarter.AutoLogin=$true | |
| # Basic setup | |
| Update-ExecutionPolicy Unrestricted | |
| Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions |
| Disable-UAC |
| # Boxstarter script for blog post http://blog.zerosharp.com/provisioning-a-new-development-machine-with-boxstarter | |
| # Allow reboots | |
| $Boxstarter.RebootOk=$true | |
| $Boxstarter.NoPassword=$false | |
| $Boxstarter.AutoLogin=$true | |
| # Basic setup | |
| Update-ExecutionPolicy Unrestricted | |
| Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions |
I made this with the help from a tutorial from codecademy :)
Forked from Ophélie Champagne's Pen Solar system.
| import sys | |
| import csv | |
| import httplib, urllib, base64 | |
| def main(): | |
| # set the name of your repository, username and password | |
| username = "test" | |
| password = "test" | |
| repo = "test" | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>True Trello Printer</title> | |
| <link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet"> | |
| <style> | |
| body{margin:15%;} | |
| .panel-body{ |
| # Needed PS packages | |
| # Install-Package -Name pscx | |
| # Install-Package -Name AWSPowerShell | |
| # | |
| # Scheduling | |
| # The script then needs to be scheduled to run every night, I’m using scheduled tasks for this, | |
| # creating a task that runs nightly and triggers the powershell script by running | |
| # Powershell.exe with the arguments | |
| # -ExecutionPolicy Bypass C:\SqlBackup\SqlBackupToS3.ps1. | |
| # From <https://www.rhysgodfrey.co.uk/b/blog/posts/backing-up-a-sql-database-to-amazon-s3-using-powershell> |
| -- FlashAir Lua script | |
| -- Copy to 'Lua' folder on your SD card | |
| -- Set as RUN_SCRIPT/SD_EVENT in your SD_WLAN/CONFIG file: | |
| -- LUA_RUN_SCRIPT=/Lua/upload.lua | |
| -- LUA_SD_EVENT=/Lua/upload.lua | |
| local httpendpoint = 'http://192.168.1.13:3333/upload' | |
| local folder = '/DCIM' | |
| -- Recursively iterate through directories |