everything will be kept best I can, and updated to best I can

Just please don't go pissing me off. 1. All pages are always to be updated with newer information if I can. This maybe my life works of continous updates.
  • comodo ssl certificate issue(s)
  • code page issue(s)
  • font issue(s)
  • ftp issue(s)
  • firewall configuration issue(s)
  • html and general code, security, deployment, best pratices issue(s)
  • life issue(s)
  • > http://192.3.134.156/ is the root is / or the beginning. The index.html file is used to automatically route http traffic to the html file instead of folder view. http://192.3.134.156/index.html The primary page you are viewing. To view, you must download and open with a text editor. http://192.3.134.156/pages The target main variable is pointing to pages html. href="http://192.3.134.156/poster">http://192.3.134.156/poster A directory for drawings I'll upload later.

    html

    The primary file is index.html. If named index.html it or home.html the webserver normally uses it as the default html page to load. The page is using tables. Below is a simple drawing of what is this index.html you are looking at. +-----------------------------------------+ |TABLE | +----------------------------------------+ | |TABLE TOP | | +-----------------------------------------+ | +-0------+------+------------------------+ | |TABLE MIDDLE | | +---------+ +----------------- | | |TD | |TD | | |TABLE | | + | | | | | | | | | | | | | |____________| | | | | | | +-------+--------------- | | +------------------------------------- | |TABLE BOTTOM | +------------------------------------------- +--------------------------------------+ Why so many tables? I like the lines. It adds a quality of border that is not seen as much and light-weight. This is my own style I created using Microsoft Word in 1998 or 1999. Add tables in Word and allow a pixel of distance, and then save as html. From there you need to reverse engineer how the layout works. It's just logic how Word does it. It always works. The benefit of a table is that you can split a cell vertically and horizontally. So a td can be infinite td(s) if you make it into a table. Example:

    domain

    $config = @() $config += [PSCustomObject]@{ name = "divineyc.com" type = "A" host = "@" value = "192.3.134.156" ttl = "1 minute" } $config += [PSCustomObject]@{ name = "divineyc.com" type = "A" host = "www" value = "192.3.134.156" ttl = "1 minute" comments = @( "Why are there so many websites that you can buy a domain from?", "Who is the authorive answer for all domains why not just buy from them? Do we buy from a config that is not required?" ) }

    web server

    $config +=[PSCustomObject]@{ name = "HTML" code = "http://www.divineyc.com/index.txt" } $config += [PSCustomObject]@{ name = "nginx" file = "nginx.conf" content = ' worker_processes 1; events { worker_connections 1024; } http { autoindex on; include /etc/nginx/mime.types; default_type application/octet-stream; sendfile on; include /etc/nginx/conf.d/*.conf; keepalive_timeout 65; server { autoindex on; listen 80; listen 443; ssl_certificate /etc/ssl/divineyc_com.crt; ssl_certificate_key /etc/ssl/private.key; server_name www.divineyc.com divineyc.com 192.3.134.156; location / { root /usr/share/nginx/html; index index.html; } } }'.split("\n").trim()

    road map

    $config += [PSCustomObject]@{ name = "Echo Protocol" inbound_port = "7" status = "COMPLETED" comments = "echo is to ping.exe ICMP" } $config += [PSCustomObject]@{ name = "Secure Shell" inbound_port = "TCP 23" status = "not started" comments = "sshpass? or scp? or telnet? or ssh?" } $config += [PSCustomObject]@{ name = "Hypertext Transfer Protocol" port = "80" status = "COMPLETED" comments = "Is www requiring ssl certificate?" } $config += [PSCustomObject]@{ name = "File Transfer Protocol" port = "20" status = "in progress" comments = "FTP for root of /usr/share/nginx/" } $config += [PSCustomObject]@{ name = "TELNET" inbound_port = "TCP 23" status = "not started" comments = "same thing root of /usr/share/nginx or whatever is best suited for a single directory with all config info" } $config += [PSCustomObject]@{ name = "Simple Mail Transfer Protocol" port = 25 status = "in progress" comments = "yes @divineyc.com if I can get it working." } $config += [PSCustomObject]@{ name = "Domain Name config" inbound_port = "TCP 53" status = "not started" comments = "dns, approved. no forward or forward? 4.2.2.1?" } $config += [PSCustomObject]@{ name = "News Groups" inbound_port = "TCP 433" status = "not started" comments = "back in the day you can download programs, warez. AOL had one it as called 'Fate' MassMail" } $config += [PSCustomObject]@{ name = "Voice Over Internet Protocol (VOIP)" inbound_port = "UDP 5060" status = "not started" } $config += [PSCustomObject]@{ name = "Lightweight Directory Address Protocol" inbound_port = "TCP 389" status = "not started" } $config += [PSCustomObject]@{ name = "Server Message Block" inbound = "TCP 137" status = "Not Started" comments = "Ease of use." }

    Truth

    the following are the $action(s) $value(s) and $name(s) used.

    html

    Headings: <h>heading1 - subject</h1> <h2>heading2 - sub-subject</h2> <h3>heading3 - sub-sub-subject</h3> Lists: <ol> <li>list in ol format</li> </ol> <ul> <li>1 list in ul format</li> <li>2 list in ul format</il> </ul> Table: <table> <!--{X,Y} Python Down/Right--> <tr><!--{0,0}--><th><!--{0,1}--> table header</th></tr> <tr><!--{1,0}--><td><!--{1,1}--> 1 item</td></tr> <tr><!--{2,0}--><td><!--{2,2}--> 1 item</td></tr> </table>

    ascii art

    #ascii graph x=30 y=9 Up/Right# 9 8 7 6 5 4 3 2 1 @123456789112345678921234567893

    symbols used

    letters upper: qwertyuiopasdfghjklzxcvbnm letters lower: QWERTYUIOPASDFGHJKKLZXCVBNM one symbol numbers: 1234567890 one symbol numbers: 0123456789ABCDEF one symbol numbers: 1234567891123456

    writing style

    emphansize or literal : ' " empathy usage wording : ( ) subject done : . to let your mind wander: ? a humble joke : ! a broken thought : ... $name $action $value

    powershell manual

    nametypesearchspeedusage
    array@() trueforeach$array | where-object {$_.word -eq "word"}
    hash@{} falseinstant$hash['word']
    Has imbedded index values $array = @(@(1,2,3),@("a","b","c")) array[0] returns @(1,2,3) array[0][0] returns 1 array[1] returns @("A","B","C") array[1][0] returns "A" a string requires $stringorinteger = ("1") a interger does not $stringorinteger = (1) was the previous action successful not including itself history 1 Anything. history 2 &? was the last action successful? Returns $false history 3 &? will result in true as &? was successful. Returns $true history 4 $Error does not capture all errors ... sometimes I wonder when will you learn ...

    regular expression manual

    <b>#region comments</b> 10 BIT Processing. 0 values + 10 values = 1110 values 00 values + 100 values 000 values 1000 values Address based data 0 value represents a subject 00 value represents a subject of subject - redundant value but single value of subject like a reference 000 value represetns a subject of subject - this is equal to the concept of binary^infinite to infinite^unique Floating in Foundation is neither on or off. 1010, 1010. hi , hi . I personally have bad habit "words". grammar says to be "words." <- Does not make sense. <- shows an arrow to the left as my screen is screen of 2D {x,y} coords of pixels also known as resolution. -> shows an arrow pointing to the right. </pre></body></html>

    Truth

    the following are the $action(s) $value(s) and $name(s) used.

    html

    Headings: <h>heading1 - subject</h1> <h2>heading2 - sub-subject</h2> <h3>heading3 - sub-sub-subject</h3> Lists: <ol> <li>list in ol format</li> </ol> <ul> <li>1 list in ul format</li> <li>2 list in ul format</il> </ul> Table: <table> <!--{X,Y} Python Down/Right--> <tr><!--{0,0}--><th><!--{0,1}--> table header</th></tr> <tr><!--{1,0}--><td><!--{1,1}--> 1 item</td></tr> <tr><!--{2,0}--><td><!--{2,2}--> 1 item</td></tr> </table>

    ascii art

    #ascii graph x=30 y=9 Up/Right# 9 8 7 6 5 4 3 2 1 @123456789112345678921234567893

    symbols used

    letters upper: qwertyuiopasdfghjklzxcvbnm letters lower: QWERTYUIOPASDFGHJKKLZXCVBNM one symbol numbers: 1234567890 one symbol numbers: 0123456789ABCDEF one symbol numbers: 1234567891123456

    writing style

    emphansize or literal : ' " empathy usage wording : ( ) subject done : . to let your mind wander: ? a humble joke : ! a broken thought : ... $name $action $value

    powershell manual

    nametypesearchspeedusage
    array@() trueforeach$array | where-object {$_.word -eq "word"}
    hash@{} falseinstant$hash['word']
    Has imbedded index values $array = @(@(1,2,3),@("a","b","c")) array[0] returns @(1,2,3) array[0][0] returns 1 array[1] returns @("A","B","C") array[1][0] returns "A" a string requires $stringorinteger = ("1") a interger does not $stringorinteger = (1) was the previous action successful not including itself history 1 Anything. history 2 &? was the last action successful? Returns $false history 3 &? will result in true as &? was successful. Returns $true history 4 $Error does not capture all errors ... sometimes I wonder when will you learn ...

    regular expression manual

    <b>#region comments</b> 10 BIT Processing. 0 values + 10 values = 1110 values 00 values + 100 values 000 values 1000 values Address based data 0 value represents a subject 00 value represents a subject of subject - redundant value but single value of subject like a reference 000 value represetns a subject of subject - this is equal to the concept of binary^infinite to infinite^unique Floating in Foundation is neither on or off. 1010, 1010. hi , hi . I personally have bad habit "words". grammar says to be "words." <- Does not make sense. <- shows an arrow to the left as my screen is screen of 2D {x,y} coords of pixels also known as resolution. -> shows an arrow pointing to the right. </pre></body></html>