Commit b12f0c4
Changed files (24)
hwaaa
waiver
attachments
additional awards achievements etc
hwaaa/public/index.html
@@ -0,0 +1,25 @@
+<html>
+ <head>
+ <link href="/css/bootstrap.min.css" rel="stylesheet">
+ </head>
+ <body>
+ <div class="container">
+ <div class="page-title">
+ <h1>Markdown Generator</h1>
+ <p class="lead">Generate your markdown with Go</p>
+ <hr />
+ </div>
+
+ <form action="/markdown" method="POST">
+ <div class="form-group">
+ <textarea class="form-control" name="body" cols="30" rows="10"></textarea>
+ </div>
+
+ <div class="form-group">
+ <input type="submit" class="btn btn-primary pull-right" />
+ </div>
+ </form>
+ </div>
+ <script src="/js/bootstrap.min.js"></script>
+ </body>
+</html>
hwaaa/fileserver.go
@@ -0,0 +1,7 @@
+package main
+
+import "net/http"
+
+func main() {
+ http.ListenAndServe(":8080", http.FileServer(http.Dir(".")))
+}
hwaaa/index.html
@@ -0,0 +1,25 @@
+<html>
+ <head>
+ <link href="/css/bootstrap.min.css" rel="stylesheet">
+ </head>
+ <body>
+ <div class="container">
+ <div class="page-title">
+ <h1>Markdown Generator</h1>
+ <p class="lead">Generate your markdown with Go</p>
+ <hr />
+ </div>
+
+ <form action="/markdown" method="POST">
+ <div class="form-group">
+ <textarea class="form-control" name="body" cols="30" rows="10"></textarea>
+ </div>
+
+ <div class="form-group">
+ <input type="submit" class="btn btn-primary pull-right" />
+ </div>
+ </form>
+ </div>
+ <script src="/js/bootstrap.min.js"></script>
+ </body>
+</html>
hwaaa/markdown.go
@@ -0,0 +1,27 @@
+package main
+
+import (
+ "net/http"
+
+ "github.com/russross/blackfriday"
+)
+
+func main() {
+ http.Handle("/markdown", GenerateMarkdown())
+ http.Handle("/", http.FileServer(http.Dir("public")))
+ http.ListenAndServe(":8080", nil)
+}
+
+func GenerateMarkdown() http.Handler {
+ return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
+ switch r.Method {
+ case "POST":
+ markdown := blackfriday.MarkdownCommon([]byte(r.FormValue("body")))
+ w.Write(markdown)
+ return
+ case "GET":
+ http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
+ }
+
+ })
+}
hwaaa/markdown2.go
@@ -0,0 +1,28 @@
+package main
+
+import (
+ "net/http"
+
+ "github.com/russross/blackfriday"
+)
+
+func main() {
+ mux := http.NewServeMux()
+ http.Handle("/markdown", GenerateMarkdown())
+ http.Handle("/", http.FileServer(http.Dir("public")))
+ http.ListenAndServe(":8080", nil)
+}
+
+func GenerateMarkdown() http.Handler {
+ return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
+ switch r.Method {
+ case "POST":
+ markdown := blackfriday.MarkdownCommon([]byte(r.FormValue("body")))
+ w.Write(markdown)
+ return
+ case "GET":
+ http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
+ }
+
+ })
+}
waiver/attachments/additional awards achievements etc/2013-Letter_of_Commendation-2013_Cyber_Sumemr_Camp.pdf
Binary file
waiver/attachments/additional awards achievements etc/2013-Letter_of_reccomendation-Dir_RD.pdf
Binary file
waiver/attachments/additional awards achievements etc/2013_Research_Team_of_the_Year_Award.pdf
Binary file
waiver/attachments/additional awards achievements etc/2014-AF_Commendation_Medal.pdf
Binary file
waiver/attachments/additional awards achievements etc/2014-Joint_Service_Achievement_Medal.pdf
Binary file
waiver/attachments/.DS_Store
Binary file
waiver/attachments/00 All In One.pdf
Binary file
waiver/attachments/01 Undergraduate Transcript (USAFA).pdf
Binary file
waiver/attachments/02 Graduate Transcript (AFIT).pdf
Binary file
waiver/attachments/03 SURF.pdf
Binary file
waiver/attachments/04 Cyber SURF.pdf
Binary file
waiver/attachments/05 Last 3 OPRs.pdf
Binary file
waiver/attachments/06 Certificates (Linux+ Security+).pdf
Binary file
waiver/attachments/07 AFOCD for Cyberspace Operations 31 Oct 14.pdf
Binary file
waiver/attachments/08 AFI 36-2101 para 3.7 (27 Jun 2013).pdf
Binary file
waiver/attachments/09 AFI 36-2201 para 4.1.4 (15 Sept 2010).pdf
Binary file
waiver/.DS_Store
Binary file
waiver/mrf.md
@@ -0,0 +1,52 @@
+MEMORANDUM FOR NGB/ANG
+FROM
+SUBJECT Waiver recommendation for Capt Bryon Kent Fryer Jr.
+
+1. The purpose of this letter is to provide justification for awarding Capt Bryon Kent Fryer Jr. with 17D3X as a primary AFSC and waive all training requirements. Capt Fryer has already been awarded 17D3X as a secondary AFSC and fully qualifies for the upgrade without additional training expenditures.
+
+2. In compliance with AFI 36-2201, Air Force Training Program, para 4.1.4.2, Captain Fryer has the equivalent skills through civilian employment, education, and previous duty assignments to re-core as a 17D and waive specialty training for the X-shred to include Undergraduate Cyberspace Training (UCT) and Intermediate Network Warfare Training (INWT). This saves training resources without impacting career field progression or mission accomplishment.
+
+3. According to the Air Force Officer Classification Directory (AFOCD 31 Oct 2014), the award of 17D3X must satisfy criteria in the following qualifiers: Education, Training, Knowledge, Experience and Clearance. Captain Fryer exceeds the requirement in all five areas.
+
+a. Education.
+
+(1) Bachelors of Computer Science, US Air Force Academy. Courses in Advanced Computer Networking, Cryptography, Network Defense, Information Warfare, Compiler Design, Systems Analysis, Databases, Software Engineering, Advanced Algorithms, Operating Systems. This degree established a foundation to understand hardware, software, and networking with breadth and depth. Completed 3.20 GPA, Dean's Honors List.
+
+(2) Masters of Science in Cyber Operations, Air Force Institute of Technology. Courses in Cryptography, Cryptanalysis, Cyber Forensics, Cyber Attack, Cyber Defense and Exploitation, Software Design, and Artificial Intelligence. This degree advanced the foundation to understand specialized cyberspace topics with breadth and depth. Completed 3.69 GPA.
+
+b. Training.
+
+(1) Cyber Operations Transition Course. Material includes exposure into the operational approach of employing the cyberspace domain, presenting pertinent information focused primarily on: cyberspace fundamentals, doctrine, organizations, operations, laws and ethics, vulnerabilities, threats, capabilities, and tactics, techniques and procedures.
+
+(2) Linux+ Certification. Material includes fundamentals in installation, customization, scripting and data management, networking, management of essential system services, and security of Linux operating systems.
+
+(3) Security+ Certification. Material includes network security, compliance and operation security, threats and vulnerabilities as well as application, data, host security, access control, identity management, and cryptography. Fulfills DoD Directive 8570.
+
+(4) Reverse-Engineering Malware Course. Material includes exploration of malware analysis tools and techniques, x86 assembly language concepts, common malware characteristics, and practical skills for examining malicious programs.
+
+c. Experience.
+
+(1) Researcher, Laboratory for Telecommunication Sciences. Plans, executes, and advises research and transitions of technical capabilities into operational mission partners. 12 months experience.
+
+(2) NSA Research Liaison, Air Force Research Labs Information Directorate (AFRL/RI). Directed numerous collaboration efforts and operational efficiencies for capability enhancement, identification, and deployment. 24 months experience.
+
+(3) Chief instructor and developer for AFRL/RI 30-person training program and resident red-team. Increased cyber awareness across 1500 person directorate through annual operational exercises, research red-teaming, and in-house developed training courses. 12 months experience.
+
+d. Knowledge. In compliance with the AFOCD for Cyberspace Operations, Captain Fryer has in-depth knowledge of electronics theory, information technology, telecommunications and supervisory and control systems. He understands cryptography, vulnerability assessment and exploitation techniques in both theory and pratical apllication. Further Fryer is proficient in operational planning, governing cyberspace operations directives, procedures and tactics. (AFOCD para 3.1)
+
+e. Clearance. Capt Fryer retains an active Top Secret clearance and has completed a current Full Scope Background Investigation
+
+4. Bryon is a must-select for the 17D3X AFSC. He has a proven track record as an invaluable cyberspace operations expert and I am convinced he will become an invaluable asset to the 175 COG and the ANG. We need him in this career field now!
+
+
+Attachment:
+
+1. Undergraduate Transcript (UD)
+2. Graduate Transcript (AFIT)
+3. SURF
+4. Cyber SURF
+5. Last 3 OPRs
+6. Certificates (Linux+ Security+)
+6. AFOCD for Cyberspace Operations 31 Oct 14
+7. AFI 36-2101 para 3.7 (27 Jun 2013)
+8. AFI 36-2201 para 4.1.4 (15 Sept 2010)
.DS_Store
Binary file