| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Colour Palette</title> | |
| <style>@media all {section {position:relative;margin-left: 50px;margin-top: 50px;width: 280px;height: 100px;} .bar {position:relative;height: 100%;width: 40px;margin-left: 140px;} .box {position:relative;height: 35px;width: 35px;margin-left: 212px;margin-top: -67px;} p {font-size: 12px;font-style: italic;margin-left: 55px;margin-top:3px;} | |
| #b1 {background: red;} | |
| #b1 .bar {background: green;} | |
| #b1 .box {background: yellow;} |
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
| @include gradient-bg(hsl(90, 100, 80)); | |
| // Sat: | |
| // how much colour - none to full. | |
| // Lightness: | |
| // How white/black - black to white. | |
| // Hue: | |
| // 0 - Red | |
| // 60 - Yellow | |
| // 120 - Green | |
| // 180 - Cyan |
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
| body { | |
| background: #9fbdcf; | |
| } | |
| h1 { | |
| font-size: 6em; | |
| font-family: "Sprint"; | |
| color: rgba(84, 128, 154, 0.5); | |
| text-shadow: 0px 1px 4px rgba(255,255,255,0.6), |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Grid</title> | |
| <style type="text/css"> | |
| body { padding: 0; margin: 0; background: rgba(0,75,0,0.2); font: 10px/1.5em Helvetica, sans-serif; color: #555;} | |
| #wrapper { |
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
| #google-results.rb | |
| require 'nokogiri' | |
| require 'open-uri' | |
| require 'uri' | |
| rstr, q_list = [], [] | |
| #The list of words | |
| File.open('list.txt').each_line{|s| q_list << URI.escape(s.gsub("\n",''))} |
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
| --Fucntions | |
| on add_leading_zeros(this_number, max_leading_zeros) | |
| set the threshold_number to (10 ^ max_leading_zeros) as integer | |
| if this_number is less than the threshold_number then | |
| set the leading_zeros to "" | |
| set the digit_count to the length of ((this_number div 1) as string) | |
| set the character_count to (max_leading_zeros + 1) - digit_count | |
| repeat character_count times | |
| set the leading_zeros to (the leading_zeros & "0") as string | |
| end repeat |
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
| --Fucntions | |
| on add_leading_zeros(this_number, max_leading_zeros) | |
| set the threshold_number to (10 ^ max_leading_zeros) as integer | |
| if this_number is less than the threshold_number then | |
| set the leading_zeros to "" | |
| set the digit_count to the length of ((this_number div 1) as string) | |
| set the character_count to (max_leading_zeros + 1) - digit_count | |
| repeat character_count times | |
| set the leading_zeros to (the leading_zeros & "0") as string | |
| end repeat |
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
| --Fucntions | |
| on add_leading_zeros(this_number, max_leading_zeros) | |
| set the threshold_number to (10 ^ max_leading_zeros) as integer | |
| if this_number is less than the threshold_number then | |
| set the leading_zeros to "" | |
| set the digit_count to the length of ((this_number div 1) as string) | |
| set the character_count to (max_leading_zeros + 1) - digit_count | |
| repeat character_count times | |
| set the leading_zeros to (the leading_zeros & "0") as string | |
| end repeat |
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
| <h2>Homepage Settings</h2> | |
| <label for="home-message">Message</label> | |
| <textarea id="home-message" name="home-message" value="" /> | |
| <br /><br /><br /> | |
| <h2>Generic SEO</h2> | |
| <p>The following values will be used for your pages titles and meta descriptions:</p> | |
| <table> | |
| <thead> | |
| <tr> |