FULL GUIDE TO GET ALL JETBRAINS PRODUCTS FOR FREE
This is the best way to get free Jetbrains products!!
Just follow my steps:
FULL GUIDE TO GET ALL JETBRAINS PRODUCTS FOR FREE
This is the best way to get free Jetbrains products!!
Just follow my steps:
| <?php | |
| $path = "."; | |
| $dh = opendir($path); | |
| $i=1; | |
| while (($file = readdir($dh)) !== false) { | |
| if($file != "." && $file != ".." && $file != "index.php" && $file != ".htaccess" && $file != "error_log" && $file != "cgi-bin") { | |
| echo "<a href='$path/$file'>$file</a><br /><br />"; | |
| $i++; | |
| } | |
| } |
| // Type 1 | |
| var ClickableImage = function(props) { | |
| return ( | |
| <a href={props.href}> <img src={props.src} /> | |
| </a> ); | |
| }; | |
| // ES6 version | |
| var ClickableImage = props => ( | |
| <a href={props.href}> |
| /* Module pattern | |
| - Helps in both scoping private and public scoping | |
| - Avoids global namespace | |
| - Con: Privates are not easily testable | |
| */ | |
| var myModule = (function (){ | |
| var private1; | |
| return { | |
| attr1 : attr1, |
| const func1 = (x, y) // SyntaxError | |
| => { | |
| return x + y; | |
| }; | |
| const func2 = (x, y) => // OK | |
| { | |
| return x + y; | |
| }; | |
| const func3 = (x, y) => { // OK | |
| return x + y; |
| var player = { | |
| name : 'Dhoni', | |
| tasks : ['batsman', 'wicket-keeper','fielder'], | |
| printTasks: function(){ | |
| this.tasks.forEach((task)=>{ | |
| console.log(this.name +' is a ' + task); | |
| }); | |
| } | |
| }; |
| // ES5 way | |
| var player = { | |
| name : 'Dhoni', | |
| tasks : ['batsman', 'wicket-keeper','fielder'], | |
| printTasks: function(){ | |
| this.tasks.forEach(function(task){ | |
| console.log(this.name +' is a ' + task); | |
| }); | |
| } | |
| }; |
| // ES5 way | |
| var square = function(x){ | |
| return (x*x); | |
| } | |
| // ES6 way | |
| var square = (x) => { return x*x }; | |
| // if expression has only 1 line we can even drop the braces | |
| var square = x => x*x; |
| * https://www.digitalocean.com/community/tutorials/an-introduction-to-securing-your-linux-vps | |
| * https://help.ubuntu.com/community/UFW | |
| * https://www.digitalocean.com/community/tutorials/how-to-use-psad-to-detect-network-intrusion-attempts-on-an-ubuntu-vps |