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
| <nav class="navbar navbar-inverse navbar-fixed-top"> | |
| <div class="container-fluid"> | |
| <div class="navbar-header"> | |
| <a class="navbar-brand" href="#">Rayan Al-Hammami</a> | |
| </div> | |
| <ul class="nav navbar-nav navbar-right"> | |
| <li><a href="#">Home</a></li> | |
| <li><a href="#1">About</a></li> | |
| <li><a href="#2">Portfolio</a></li> | |
| <li><a href="#3">Contact</a></li> |
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
| <script type="text/javascript"> | |
| $("#portfolioModal1").on('hidden.bs.modal', function (e) { | |
| $("#portfolioModal1 #iframe1").attr("src", $("#portfolioModal1 #iframe1").attr("src"));}); | |
| </script> |
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
| List<Point> points = new List<Point>(); | |
| List<int> tempX = new List<int>(); | |
| List<int> tempY = new List<int>(); | |
| using (StreamReader reader = new StreamReader("Your_Source_File.SIG")) | |
| { | |
| while (!reader.EndOfStream) | |
| { | |
| Regex reg = new Regex(@"^\d+\s\d+$"); | |
| string checkLine = reader.ReadLine(); |
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
| public static List<string> GetEmployeePaths() | |
| { | |
| List<string> employeePaths = new List<string>(); | |
| allEmployees = GetAllEmployees(); | |
| foreach (Employee employee in allEmployees) | |
| { | |
| employeePaths.Add(RecursivePathFinder(employee)); | |
| } | |
| employeePaths.Sort(); |