One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
' Encode special characters of a string | |
' this is useful when you want to put a string in the URL | |
' inspired by http://stackoverflow.com/questions/218181/how-can-i-url-encode-a-string-in-excel-vba | |
Public Function URLEncode( StringVal ) | |
Dim i, CharCode, Char, Space | |
Dim StringLen | |
StringLen = Len(StringVal) | |
ReDim result(StringLen) |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.noatime.root</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/sbin/mount</string> | |
<string>-vuwo</string> |
I am mostly writing this for myself because I tend to like to start fresh by reformatting and reinstalling everything every few months and forget the solutions to problems I have solved before. This guide was performed on a late 2011 macbook pro with xubuntu 16.04.
One misconception I have noticed that's quite prevalent in many guides is that we must dual boot osx and linux for the fear of having no easy path to getting osx back and installed. Even my old macbook pro has the ability to completely
<!DOCTYPE html> | |
<html> | |
<head><title>SOUND</title></head> | |
<body> | |
<div>Frequence: <span id="frequency"></span></div> | |
<script type="text/javascript"> | |
var audioCtx = new (window.AudioContext || window.webkitAudioContext)(); | |
var oscillatorNode = audioCtx.createOscillator(); | |
var gainNode = audioCtx.createGain(); |
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
Install the custom CSS plugin, then make a file on your computer that will hold your custom CSS, I like to make one in my home directory called ~/.vscodestyles.css
and then add the CSS into it.
Once done, open your command palette and select enable custom CSS and JS
Filter | Description | Example |
---|---|---|
allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
Notes and summary of the Nexus Guide by Ken Schwaber made in preparation for the SPS™ certification exam.
Useful links and resources for SPS™ exam preparation
This gist provides a summary on how to accomplish the following tasks: