Questions about this topic? Sign up to ask in the talk tab.

Difference between revisions of "Template:Programming"

From NetSec
Jump to: navigation, search
(Replaced content with "<center> <div style="width:40%;">{{PAGENAME}} is part of a series on programming.<br />")
 
(14 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
<center>
 
<center>
<html>
+
<div style="width:40%;">{{PAGENAME}} is part of a series on [[programming]].<br />
<script type="text/javascript">
+
function prog_toggle() {
+
  $('#prog_display_text').html($('#prog_hidden_display').html());
+
  $('#prog_hidetext').html($('#prog_hide_msg').html());
+
  $('#prog_hidetext').attr('onClick','prog_vape();');
+
}
+
function prog_vape() {
+
  $('#prog_display_text').html('');
+
  $('#prog_hidetext').html($('#prog_show_msg').html());
+
  $('#prog_hidetext').attr('onClick','prog_toggle();');
+
}
+
</script></html>
+
<div style="width:40%; border: 1px solid #000;">{{PAGENAME}} is part of a series on [[programming]].<br />
+
<html><a id='prog_hidetext' onclick="prog_toggle();"><b>[ Decompile ]</b></a></html><br /><div id='prog_display_text'></div>
+
</div>
+
 
+
<div id='prog_hidden_display' style='visibility:hidden;'>
+
'''Compiled Languages'''<br />
+
[[Assembly Basics|Assembly]] &bull; [[C]] &bull; [[CPP|C++]]
+
 
+
'''Interpreted Languages'''<br />
+
[[Perl]] &bull; [[Python]] &bull; [[Ruby]] &bull; [[PHP]] &bull; [[LUA]] &bull; [[TCL]] &bull; [[SQL]] &bull; [[JavaScript]] &bull; [[CSS]] &bull; [[HTML]]
+
 
+
'''Related Articles'''<br />
+
[[Ascii shellcode]] &bull; [[Polymorphic]] &bull; [[AJAX]] &bull; [[jQuery]] &bull; [[Bash book]]
+
</div>
+
<div id='prog_hide_msg' style='visibility:hidden;'><b>[ Compile ]</b></div>
+
<div id='prog_show_msg' style='visibility:hidden;'><b>[ Decompile ]</b></div>
+
 
+
</center>
+

Latest revision as of 15:51, 18 June 2016

Programming is part of a series on programming.