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
| ^ # start of the line | |
| http(s)? # http or https | |
| :\/\/ # :// | |
| (www\.)? # maybe www subdomain | |
| [^\s]* # no spaces allowed | |
| $ # end of the line |
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
| /** | |
| * Calculate the amount of Negative pressure needed for a given size of an enclosed area. | |
| * @authr Phoenix560. | |
| * November 2012 | |
| */ | |
| #include <iostream> | |
| #include <cmath> | |
| using namespace std; |
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
| // Lab Lab 8a (Calculator8) | |
| // Programmer: Oleg Utkin | |
| // Editor(s) used: Xcode | |
| // Compliler(s) used: Xcode | |
| // | |
| #include <iostream> | |
| #ifndef NULL | |
| #define NULL reinterpret_cast<void *>(0) |
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
| <html> | |
| <head> | |
| <title>First Haml Page</title> | |
| <meta charset='UTF-8' /> | |
| <style type='text/CSS'> | |
| /* testing :sass */ | |
| .funky_text { | |
| color: red; | |
| font-weight: bold; } | |
NewerOlder