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
| tree . | |
| . | |
| : | |
| ├── app | |
| │ ├── assets | |
| │ │ ├── javascripts | |
| │ │ │ ├── application.js | |
| │ │ │ ├── collections | |
| │ │ │ ├── models | |
| │ │ │ ├── pselectr.js |
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
| // This is a manifest file that'll be compiled into application.js, which will include all the files | |
| // listed below. | |
| // | |
| // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, | |
| // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. | |
| // | |
| // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the | |
| // the compiled file. | |
| // | |
| // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD |
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
| (function() { | |
| window.Pselectr = { | |
| Models: {}, | |
| Collections: {}, | |
| Views: {}, | |
| Routers: {}, | |
| init: function() { | |
| alert('Hello from Backbone') | |
| } | |
| }; |
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
| <! -- | |
| EG-259 Examinations 2012 | |
| Case Study 5 | |
| A Registration Form with Server-side Validation using PHP | |
| --> | |
| <?php | |
| # Client-side validation functions | |
| function validateName($name) { | |
| //if it's NOT valid |
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
| @CHARSET "UTF-8"; | |
| /******* GENERAL RESET *******/ | |
| html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { | |
| border: 0pt none; | |
| font-family: inherit; | |
| font-size: 100%; | |
| font-style: inherit; | |
| font-weight: inherit; | |
| margin: 0pt; | |
| padding: 0pt; |
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
| /***************************/ | |
| //@Author: Adrian "yEnS" Mato Gondelle & Ivan Guardado Castro | |
| //@website: www.yensdesign.com | |
| //@email: yensamg@gmail.com | |
| //@license: Feel free to use it, but keep this credits please! | |
| /***************************/ | |
| jQuery(document).ready(function() { | |
| //global vars | |
| var form = $("#customForm"); |
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
| %% EGLM03 Exam 2009-10: Q4(c) Correction. | |
| % Define system to be observed (controller canonical form) | |
| A = [-13, -39, -27; 1, 0, 0; 0, 1, 0]; | |
| B = [1; 0; 0]; | |
| C = [0,5,2]; | |
| % Design of an observer using Ackermann's formula | |
| At = A'; | |
| Ct = C'; | |
| Obs = [Ct, At * Ct, (At)^2 * Ct]; | |
| ObsI = inv(Obs) |
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
| %% EGLM03 Exam 2010-11: Q4(c) Correction. | |
| % Define system to be observed (controller canonical form) | |
| A = [-10, -25, 0; 1, 0, 0; 0, 1, 0]; | |
| B = [1; 0; 0]; | |
| C = [0,1,2]; | |
| % Design of an observer using Ackermann's formula | |
| At = A'; | |
| Ct = C'; | |
| Obs = [Ct, At * Ct, (At)^2 * Ct]; | |
| ObsI = inv(Obs) |
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>...</title> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |
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> | |
| <title>An HTML5 standard template</title> | |
| <meta charset="utf-8" /> | |
| <link rel="stylesheet" media="screen" href="nostyle.css" /> | |
| </head> | |
| <body> |