├── .gitignore └── sp15 ├── 00_hello ├── hello.go ├── hello_reverse.go └── stringutil │ └── reverse.go ├── 00_math ├── average.go └── sum.go ├── 00_student_code ├── corey │ ├── .gitattributes │ ├── .gitignore │ ├── 2-11_assign │ │ ├── 2-11_assign.go │ │ └── diff_url_app │ │ │ ├── app.yaml │ │ │ └── diff_url.go │ ├── 2-18_assign │ │ └── 2-18_assign.go │ ├── 2-23_assign │ │ ├── 2-23_assign.go │ │ └── slice_methods │ │ │ └── slice_methods.go │ ├── 2-4_assign │ │ └── 2-4_assign.go │ ├── 2-9_assign │ │ └── 2-9_assign.go │ ├── 3-11_quiz │ │ └── 3-11_quiz.go │ ├── 3-16_assign │ │ ├── FormLetter │ │ │ ├── Alex_Taylor.txt │ │ │ ├── Brandy_Dihel.txt │ │ │ ├── FormLetter.go │ │ │ ├── James_Bengtson.txt │ │ │ ├── Megan_Newkirk.txt │ │ │ └── Taylor_Dihel.txt │ │ └── StaticPage │ │ │ ├── CharacterPDF │ │ │ ├── Cleric.pdf │ │ │ ├── Fighter.pdf │ │ │ ├── Rogue.pdf │ │ │ └── Wizard.pdf │ │ │ ├── Pictures │ │ │ ├── Cleric.jpg │ │ │ ├── Dungeons-and-Dragons-logo-box.png │ │ │ ├── Fighter.jpg │ │ │ ├── Rogue.jpg │ │ │ ├── Wizard.jpg │ │ │ └── favicon.ico │ │ │ ├── app.yaml │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ └── website.go │ ├── 3-18_assign │ │ ├── FormPage.go │ │ ├── app.yaml │ │ └── assets │ │ │ ├── guest.html │ │ │ ├── layout.css │ │ │ ├── layout.html │ │ │ ├── master.html │ │ │ └── root.html │ ├── 3-23_assign │ │ ├── GoogleAPI.go │ │ ├── app.yaml │ │ └── assets │ │ │ ├── apiQuery.html │ │ │ ├── client_secret_506452277892-llq9dpqoq9hu7h1ma13e6r7mahndil60.apps.googleusercontent.com.json │ │ │ ├── results.html │ │ │ └── style.css │ ├── 3-2_assign │ │ ├── Chapter 10 │ │ │ └── sleep.go │ │ ├── Chapter 4 │ │ │ ├── length.go │ │ │ └── temperature.go │ │ ├── Chapter 5 │ │ │ ├── even3.go │ │ │ └── fizz3buzz5.go │ │ ├── Chapter 6 │ │ │ └── smallest.go │ │ ├── Chapter 7 │ │ │ ├── fib.go │ │ │ ├── greatest.go │ │ │ ├── half.go │ │ │ └── oddgen.go │ │ ├── Chapter 8 │ │ │ └── swap.go │ │ ├── Chapter 9 │ │ │ └── perimeter.go │ │ ├── Chapter11 │ │ │ ├── main.go │ │ │ └── min_max │ │ │ │ └── min_max.go │ │ └── Chapter12 │ │ │ └── min_max │ │ │ ├── min_max.go │ │ │ └── min_max_test.go │ ├── 4-6_assign │ │ ├── BulletinBoard.go │ │ ├── app.yaml │ │ ├── assets │ │ │ ├── board.html │ │ │ ├── edit.html │ │ │ ├── entrance.html │ │ │ ├── post.html │ │ │ └── view.html │ │ ├── data.txt │ │ └── index.yaml │ ├── hello │ │ └── hello.go │ ├── myapp │ │ ├── app.yaml │ │ └── hello.go │ ├── practice │ │ └── practice.go │ ├── quiz1 │ │ └── quiz1.go │ ├── quiz2 │ │ └── quiz2.go │ ├── quiz3 │ │ └── quiz3.go │ ├── stringutil │ │ ├── reverse.go │ │ └── reverse_test.go │ └── test.txt └── shawn_b │ ├── .gitignore │ ├── golang-homework │ ├── ch10_p2_sleepByChan.go │ ├── ch11_p4_MinMax.go │ ├── ch13 │ │ ├── ch13_everything.go │ │ ├── test.txt │ │ └── testDir │ │ │ └── testFile1.txt │ ├── ch5_p1.go │ ├── ch5_p2.go │ ├── ch6_p2.go │ ├── ch7_p2_halving.go │ ├── ch7_p3_findVariadicLarge.go │ ├── ch7_p4_makeOddGenerator.go │ ├── ch7_p5_fibonacci.go │ ├── ch8_p5_swapByPtr.go │ ├── ch9_p3_shapePerimeterInterface.go │ ├── fToC.go │ ├── feetToMeters.go │ └── golang_math │ │ ├── math.go │ │ └── math_test.go │ ├── gowiki │ ├── ANewPage.txt │ ├── dogs.txt │ ├── edit.html │ ├── gowiki.go │ └── view.html │ ├── misc │ ├── geoweb.go │ └── text-template │ │ └── main.go │ ├── playground │ ├── app.yaml │ └── main.go │ ├── samples │ ├── class.go │ ├── geoweb.go │ ├── main1.go │ └── main2.go │ ├── serve pages │ ├── app.yaml │ └── src.go │ ├── shayhowe │ └── styles-conferences │ │ ├── assets │ │ └── stylesheets │ │ │ └── main.css │ │ ├── index.html │ │ ├── register.html │ │ ├── schedule.html │ │ ├── speakers.html │ │ └── venue.html │ ├── tmmath │ ├── average.go │ └── sum.go │ ├── types,pointers,structs │ ├── main.go │ ├── main2.go │ ├── main3.go │ ├── main4.go │ ├── main5.go │ └── main6.go │ └── websites │ ├── form-simple │ ├── app.yaml │ ├── form.go │ └── templates │ │ ├── prompt.html │ │ └── result.html │ ├── google-api-1 │ ├── app.yaml │ ├── config │ │ └── readme.txt │ ├── main.go │ ├── stylesheets │ │ └── goview.css │ └── templates │ │ ├── prompt.html │ │ └── result.html │ ├── social_news │ ├── app.yaml │ ├── config │ │ └── readme.txt │ ├── main.go │ ├── public │ │ ├── assets │ │ │ └── images │ │ │ │ └── favicon.ico │ │ └── templates │ │ │ ├── _base.html │ │ │ ├── _base_edit.html │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── storylist.html │ │ │ └── update.html │ └── webstructs.go │ └── static site │ ├── app.yaml │ ├── grunt │ ├── Gruntfile.js │ ├── css_reset.css │ ├── node_modules │ │ ├── grunt-autoprefixer │ │ │ ├── CHANGELOG │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── node_modules │ │ │ │ ├── autoprefixer-core │ │ │ │ │ ├── ChangeLog.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── data │ │ │ │ │ │ └── prefixes.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── at-rule.js │ │ │ │ │ │ ├── autoprefixer.js │ │ │ │ │ │ ├── browsers.js │ │ │ │ │ │ ├── declaration.js │ │ │ │ │ │ ├── hacks │ │ │ │ │ │ │ ├── align-content.js │ │ │ │ │ │ │ ├── align-items.js │ │ │ │ │ │ │ ├── align-self.js │ │ │ │ │ │ │ ├── background-size.js │ │ │ │ │ │ │ ├── block-logical.js │ │ │ │ │ │ │ ├── border-image.js │ │ │ │ │ │ │ ├── border-radius.js │ │ │ │ │ │ │ ├── break-inside.js │ │ │ │ │ │ │ ├── crisp-edges.js │ │ │ │ │ │ │ ├── display-flex.js │ │ │ │ │ │ │ ├── fill-available.js │ │ │ │ │ │ │ ├── filter-value.js │ │ │ │ │ │ │ ├── filter.js │ │ │ │ │ │ │ ├── flex-basis.js │ │ │ │ │ │ │ ├── flex-direction.js │ │ │ │ │ │ │ ├── flex-flow.js │ │ │ │ │ │ │ ├── flex-grow.js │ │ │ │ │ │ │ ├── flex-shrink.js │ │ │ │ │ │ │ ├── flex-spec.js │ │ │ │ │ │ │ ├── flex-values.js │ │ │ │ │ │ │ ├── flex-wrap.js │ │ │ │ │ │ │ ├── flex.js │ │ │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ │ │ ├── gradient.js │ │ │ │ │ │ │ ├── image-rendering.js │ │ │ │ │ │ │ ├── inline-logical.js │ │ │ │ │ │ │ ├── justify-content.js │ │ │ │ │ │ │ ├── order.js │ │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ │ ├── transform-decl.js │ │ │ │ │ │ │ └── transform-value.js │ │ │ │ │ │ ├── info.js │ │ │ │ │ │ ├── old-selector.js │ │ │ │ │ │ ├── old-value.js │ │ │ │ │ │ ├── prefixer.js │ │ │ │ │ │ ├── prefixes.js │ │ │ │ │ │ ├── processor.js │ │ │ │ │ │ ├── resolution.js │ │ │ │ │ │ ├── selector.js │ │ │ │ │ │ ├── supports.js │ │ │ │ │ │ ├── utils.js │ │ │ │ │ │ └── value.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── browserslist │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── ChangeLog.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── caniuse-db │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ │ ├── features-json │ │ │ │ │ │ │ │ ├── ambient-light.json │ │ │ │ │ │ │ │ ├── apng.json │ │ │ │ │ │ │ │ ├── atob-btoa.json │ │ │ │ │ │ │ │ ├── audio-api.json │ │ │ │ │ │ │ │ ├── audio.json │ │ │ │ │ │ │ │ ├── autofocus.json │ │ │ │ │ │ │ │ ├── background-attachment.json │ │ │ │ │ │ │ │ ├── background-img-opts.json │ │ │ │ │ │ │ │ ├── battery-status.json │ │ │ │ │ │ │ │ ├── blobbuilder.json │ │ │ │ │ │ │ │ ├── bloburls.json │ │ │ │ │ │ │ │ ├── border-image.json │ │ │ │ │ │ │ │ ├── border-radius.json │ │ │ │ │ │ │ │ ├── broadcastchannel.json │ │ │ │ │ │ │ │ ├── calc.json │ │ │ │ │ │ │ │ ├── canvas-blending.json │ │ │ │ │ │ │ │ ├── canvas-text.json │ │ │ │ │ │ │ │ ├── canvas.json │ │ │ │ │ │ │ │ ├── channel-messaging.json │ │ │ │ │ │ │ │ ├── classlist.json │ │ │ │ │ │ │ │ ├── clipboard.json │ │ │ │ │ │ │ │ ├── contenteditable.json │ │ │ │ │ │ │ │ ├── contentsecuritypolicy.json │ │ │ │ │ │ │ │ ├── cors.json │ │ │ │ │ │ │ │ ├── cryptography.json │ │ │ │ │ │ │ │ ├── css-animation.json │ │ │ │ │ │ │ │ ├── css-appearance.json │ │ │ │ │ │ │ │ ├── css-at-counter-style.json │ │ │ │ │ │ │ │ ├── css-background-offsets.json │ │ │ │ │ │ │ │ ├── css-backgroundblendmode.json │ │ │ │ │ │ │ │ ├── css-boxdecorationbreak.json │ │ │ │ │ │ │ │ ├── css-boxshadow.json │ │ │ │ │ │ │ │ ├── css-canvas.json │ │ │ │ │ │ │ │ ├── css-clip-path.json │ │ │ │ │ │ │ │ ├── css-counters.json │ │ │ │ │ │ │ │ ├── css-crisp-edges.json │ │ │ │ │ │ │ │ ├── css-deviceadaptation.json │ │ │ │ │ │ │ │ ├── css-featurequeries.json │ │ │ │ │ │ │ │ ├── css-filters.json │ │ │ │ │ │ │ │ ├── css-fixed.json │ │ │ │ │ │ │ │ ├── css-font-stretch.json │ │ │ │ │ │ │ │ ├── css-gencontent.json │ │ │ │ │ │ │ │ ├── css-gradients.json │ │ │ │ │ │ │ │ ├── css-grid.json │ │ │ │ │ │ │ │ ├── css-hyphens.json │ │ │ │ │ │ │ │ ├── css-image-orientation.json │ │ │ │ │ │ │ │ ├── css-image-set.json │ │ │ │ │ │ │ │ ├── css-logical-props.json │ │ │ │ │ │ │ │ ├── css-masks.json │ │ │ │ │ │ │ │ ├── css-media-resolution.json │ │ │ │ │ │ │ │ ├── css-mediaqueries.json │ │ │ │ │ │ │ │ ├── css-mixblendmode.json │ │ │ │ │ │ │ │ ├── css-opacity.json │ │ │ │ │ │ │ │ ├── css-placeholder.json │ │ │ │ │ │ │ │ ├── css-reflections.json │ │ │ │ │ │ │ │ ├── css-regions.json │ │ │ │ │ │ │ │ ├── css-repeating-gradients.json │ │ │ │ │ │ │ │ ├── css-resize.json │ │ │ │ │ │ │ │ ├── css-sel2.json │ │ │ │ │ │ │ │ ├── css-sel3.json │ │ │ │ │ │ │ │ ├── css-selection.json │ │ │ │ │ │ │ │ ├── css-shapes.json │ │ │ │ │ │ │ │ ├── css-sticky.json │ │ │ │ │ │ │ │ ├── css-supports-api.json │ │ │ │ │ │ │ │ ├── css-table.json │ │ │ │ │ │ │ │ ├── css-text-align-last.json │ │ │ │ │ │ │ │ ├── css-textshadow.json │ │ │ │ │ │ │ │ ├── css-touch-action.json │ │ │ │ │ │ │ │ ├── css-transitions.json │ │ │ │ │ │ │ │ ├── css-variables.json │ │ │ │ │ │ │ │ ├── css3-boxsizing.json │ │ │ │ │ │ │ │ ├── css3-colors.json │ │ │ │ │ │ │ │ ├── css3-cursors-newer.json │ │ │ │ │ │ │ │ ├── css3-cursors.json │ │ │ │ │ │ │ │ ├── css3-tabsize.json │ │ │ │ │ │ │ │ ├── currentcolor.json │ │ │ │ │ │ │ │ ├── custom-elements.json │ │ │ │ │ │ │ │ ├── datalist.json │ │ │ │ │ │ │ │ ├── dataset.json │ │ │ │ │ │ │ │ ├── datauri.json │ │ │ │ │ │ │ │ ├── details.json │ │ │ │ │ │ │ │ ├── deviceorientation.json │ │ │ │ │ │ │ │ ├── dialog.json │ │ │ │ │ │ │ │ ├── domcontentloaded.json │ │ │ │ │ │ │ │ ├── download.json │ │ │ │ │ │ │ │ ├── dragndrop.json │ │ │ │ │ │ │ │ ├── eot.json │ │ │ │ │ │ │ │ ├── eventsource.json │ │ │ │ │ │ │ │ ├── fetch.json │ │ │ │ │ │ │ │ ├── fileapi.json │ │ │ │ │ │ │ │ ├── filereader.json │ │ │ │ │ │ │ │ ├── filesystem.json │ │ │ │ │ │ │ │ ├── flexbox.json │ │ │ │ │ │ │ │ ├── font-feature.json │ │ │ │ │ │ │ │ ├── font-loading.json │ │ │ │ │ │ │ │ ├── font-size-adjust.json │ │ │ │ │ │ │ │ ├── font-unicode-range.json │ │ │ │ │ │ │ │ ├── fontface.json │ │ │ │ │ │ │ │ ├── form-validation.json │ │ │ │ │ │ │ │ ├── forms.json │ │ │ │ │ │ │ │ ├── fullscreen.json │ │ │ │ │ │ │ │ ├── gamepad.json │ │ │ │ │ │ │ │ ├── geolocation.json │ │ │ │ │ │ │ │ ├── getcomputedstyle.json │ │ │ │ │ │ │ │ ├── getelementsbyclassname.json │ │ │ │ │ │ │ │ ├── getrandomvalues.json │ │ │ │ │ │ │ │ ├── hashchange.json │ │ │ │ │ │ │ │ ├── hidden.json │ │ │ │ │ │ │ │ ├── high-resolution-time.json │ │ │ │ │ │ │ │ ├── history.json │ │ │ │ │ │ │ │ ├── html5semantic.json │ │ │ │ │ │ │ │ ├── iframe-sandbox.json │ │ │ │ │ │ │ │ ├── iframe-seamless.json │ │ │ │ │ │ │ │ ├── imports.json │ │ │ │ │ │ │ │ ├── indexeddb.json │ │ │ │ │ │ │ │ ├── inline-block.json │ │ │ │ │ │ │ │ ├── input-color.json │ │ │ │ │ │ │ │ ├── input-datetime.json │ │ │ │ │ │ │ │ ├── input-file-multiple.json │ │ │ │ │ │ │ │ ├── input-number.json │ │ │ │ │ │ │ │ ├── input-pattern.json │ │ │ │ │ │ │ │ ├── input-placeholder.json │ │ │ │ │ │ │ │ ├── input-range.json │ │ │ │ │ │ │ │ ├── internationalization.json │ │ │ │ │ │ │ │ ├── intrinsic-width.json │ │ │ │ │ │ │ │ ├── jpegxr.json │ │ │ │ │ │ │ │ ├── json.json │ │ │ │ │ │ │ │ ├── kerning-pairs-ligatures.json │ │ │ │ │ │ │ │ ├── link-icon-png.json │ │ │ │ │ │ │ │ ├── link-icon-svg.json │ │ │ │ │ │ │ │ ├── matchesselector.json │ │ │ │ │ │ │ │ ├── matchmedia.json │ │ │ │ │ │ │ │ ├── mathml.json │ │ │ │ │ │ │ │ ├── media-attribute.json │ │ │ │ │ │ │ │ ├── menu.json │ │ │ │ │ │ │ │ ├── midi.json │ │ │ │ │ │ │ │ ├── minmaxwh.json │ │ │ │ │ │ │ │ ├── mpeg4.json │ │ │ │ │ │ │ │ ├── multibackgrounds.json │ │ │ │ │ │ │ │ ├── multicolumn.json │ │ │ │ │ │ │ │ ├── mutationobserver.json │ │ │ │ │ │ │ │ ├── namevalue-storage.json │ │ │ │ │ │ │ │ ├── nav-timing.json │ │ │ │ │ │ │ │ ├── notifications.json │ │ │ │ │ │ │ │ ├── object-fit.json │ │ │ │ │ │ │ │ ├── object-observe.json │ │ │ │ │ │ │ │ ├── offline-apps.json │ │ │ │ │ │ │ │ ├── ogv.json │ │ │ │ │ │ │ │ ├── online-status.json │ │ │ │ │ │ │ │ ├── opus.json │ │ │ │ │ │ │ │ ├── outline.json │ │ │ │ │ │ │ │ ├── pagevisibility.json │ │ │ │ │ │ │ │ ├── picture.json │ │ │ │ │ │ │ │ ├── png-alpha.json │ │ │ │ │ │ │ │ ├── pointer-events.json │ │ │ │ │ │ │ │ ├── pointer.json │ │ │ │ │ │ │ │ ├── progressmeter.json │ │ │ │ │ │ │ │ ├── promises.json │ │ │ │ │ │ │ │ ├── proximity.json │ │ │ │ │ │ │ │ ├── queryselector.json │ │ │ │ │ │ │ │ ├── referrer-policy.json │ │ │ │ │ │ │ │ ├── registerprotocolhandler.json │ │ │ │ │ │ │ │ ├── rellist.json │ │ │ │ │ │ │ │ ├── rem.json │ │ │ │ │ │ │ │ ├── requestanimationframe.json │ │ │ │ │ │ │ │ ├── resource-timing.json │ │ │ │ │ │ │ │ ├── rtcpeerconnection.json │ │ │ │ │ │ │ │ ├── ruby.json │ │ │ │ │ │ │ │ ├── screen-orientation.json │ │ │ │ │ │ │ │ ├── script-async.json │ │ │ │ │ │ │ │ ├── script-defer.json │ │ │ │ │ │ │ │ ├── serviceworkers.json │ │ │ │ │ │ │ │ ├── shadowdom.json │ │ │ │ │ │ │ │ ├── sharedworkers.json │ │ │ │ │ │ │ │ ├── spdy.json │ │ │ │ │ │ │ │ ├── speech-synthesis.json │ │ │ │ │ │ │ │ ├── spellcheck-attribute.json │ │ │ │ │ │ │ │ ├── sql-storage.json │ │ │ │ │ │ │ │ ├── srcset.json │ │ │ │ │ │ │ │ ├── stream.json │ │ │ │ │ │ │ │ ├── stricttransportsecurity.json │ │ │ │ │ │ │ │ ├── style-scoped.json │ │ │ │ │ │ │ │ ├── svg-css.json │ │ │ │ │ │ │ │ ├── svg-filters.json │ │ │ │ │ │ │ │ ├── svg-fonts.json │ │ │ │ │ │ │ │ ├── svg-fragment.json │ │ │ │ │ │ │ │ ├── svg-html.json │ │ │ │ │ │ │ │ ├── svg-html5.json │ │ │ │ │ │ │ │ ├── svg-img.json │ │ │ │ │ │ │ │ ├── svg-smil.json │ │ │ │ │ │ │ │ ├── svg.json │ │ │ │ │ │ │ │ ├── template.json │ │ │ │ │ │ │ │ ├── testfeat.json │ │ │ │ │ │ │ │ ├── text-decoration.json │ │ │ │ │ │ │ │ ├── text-emphasis.json │ │ │ │ │ │ │ │ ├── text-overflow.json │ │ │ │ │ │ │ │ ├── text-size-adjust.json │ │ │ │ │ │ │ │ ├── text-stroke.json │ │ │ │ │ │ │ │ ├── touch.json │ │ │ │ │ │ │ │ ├── transforms2d.json │ │ │ │ │ │ │ │ ├── transforms3d.json │ │ │ │ │ │ │ │ ├── ttf.json │ │ │ │ │ │ │ │ ├── typedarrays.json │ │ │ │ │ │ │ │ ├── use-strict.json │ │ │ │ │ │ │ │ ├── user-select-none.json │ │ │ │ │ │ │ │ ├── user-timing.json │ │ │ │ │ │ │ │ ├── vibration.json │ │ │ │ │ │ │ │ ├── video.json │ │ │ │ │ │ │ │ ├── viewport-units.json │ │ │ │ │ │ │ │ ├── wai-aria.json │ │ │ │ │ │ │ │ ├── web-animation.json │ │ │ │ │ │ │ │ ├── web-speech.json │ │ │ │ │ │ │ │ ├── webgl.json │ │ │ │ │ │ │ │ ├── webm.json │ │ │ │ │ │ │ │ ├── webp.json │ │ │ │ │ │ │ │ ├── websockets.json │ │ │ │ │ │ │ │ ├── webvtt.json │ │ │ │ │ │ │ │ ├── webworkers.json │ │ │ │ │ │ │ │ ├── will-change.json │ │ │ │ │ │ │ │ ├── woff.json │ │ │ │ │ │ │ │ ├── woff2.json │ │ │ │ │ │ │ │ ├── word-break.json │ │ │ │ │ │ │ │ ├── wordwrap.json │ │ │ │ │ │ │ │ ├── x-doc-messaging.json │ │ │ │ │ │ │ │ ├── xhr2.json │ │ │ │ │ │ │ │ ├── xhtml.json │ │ │ │ │ │ │ │ ├── xhtmlsmil.json │ │ │ │ │ │ │ │ └── xml-serializer.json │ │ │ │ │ │ │ ├── fulldata-json │ │ │ │ │ │ │ │ ├── data-1.0.json │ │ │ │ │ │ │ │ └── data-2.0.json │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── region-usage-json │ │ │ │ │ │ │ │ ├── AD.json │ │ │ │ │ │ │ │ ├── AE.json │ │ │ │ │ │ │ │ ├── AF.json │ │ │ │ │ │ │ │ ├── AG.json │ │ │ │ │ │ │ │ ├── AI.json │ │ │ │ │ │ │ │ ├── AL.json │ │ │ │ │ │ │ │ ├── AM.json │ │ │ │ │ │ │ │ ├── AN.json │ │ │ │ │ │ │ │ ├── AO.json │ │ │ │ │ │ │ │ ├── AR.json │ │ │ │ │ │ │ │ ├── AS.json │ │ │ │ │ │ │ │ ├── AT.json │ │ │ │ │ │ │ │ ├── AU.json │ │ │ │ │ │ │ │ ├── AW.json │ │ │ │ │ │ │ │ ├── AX.json │ │ │ │ │ │ │ │ ├── AZ.json │ │ │ │ │ │ │ │ ├── BA.json │ │ │ │ │ │ │ │ ├── BB.json │ │ │ │ │ │ │ │ ├── BD.json │ │ │ │ │ │ │ │ ├── BE.json │ │ │ │ │ │ │ │ ├── BF.json │ │ │ │ │ │ │ │ ├── BG.json │ │ │ │ │ │ │ │ ├── BH.json │ │ │ │ │ │ │ │ ├── BI.json │ │ │ │ │ │ │ │ ├── BJ.json │ │ │ │ │ │ │ │ ├── BM.json │ │ │ │ │ │ │ │ ├── BN.json │ │ │ │ │ │ │ │ ├── BO.json │ │ │ │ │ │ │ │ ├── BR.json │ │ │ │ │ │ │ │ ├── BS.json │ │ │ │ │ │ │ │ ├── BT.json │ │ │ │ │ │ │ │ ├── BW.json │ │ │ │ │ │ │ │ ├── BY.json │ │ │ │ │ │ │ │ ├── BZ.json │ │ │ │ │ │ │ │ ├── CA.json │ │ │ │ │ │ │ │ ├── CD.json │ │ │ │ │ │ │ │ ├── CF.json │ │ │ │ │ │ │ │ ├── CG.json │ │ │ │ │ │ │ │ ├── CH.json │ │ │ │ │ │ │ │ ├── CI.json │ │ │ │ │ │ │ │ ├── CK.json │ │ │ │ │ │ │ │ ├── CL.json │ │ │ │ │ │ │ │ ├── CM.json │ │ │ │ │ │ │ │ ├── CN.json │ │ │ │ │ │ │ │ ├── CO.json │ │ │ │ │ │ │ │ ├── CR.json │ │ │ │ │ │ │ │ ├── CU.json │ │ │ │ │ │ │ │ ├── CV.json │ │ │ │ │ │ │ │ ├── CY.json │ │ │ │ │ │ │ │ ├── CZ.json │ │ │ │ │ │ │ │ ├── DE.json │ │ │ │ │ │ │ │ ├── DJ.json │ │ │ │ │ │ │ │ ├── DK.json │ │ │ │ │ │ │ │ ├── DM.json │ │ │ │ │ │ │ │ ├── DO.json │ │ │ │ │ │ │ │ ├── DZ.json │ │ │ │ │ │ │ │ ├── EC.json │ │ │ │ │ │ │ │ ├── EE.json │ │ │ │ │ │ │ │ ├── EG.json │ │ │ │ │ │ │ │ ├── ER.json │ │ │ │ │ │ │ │ ├── ES.json │ │ │ │ │ │ │ │ ├── ET.json │ │ │ │ │ │ │ │ ├── FI.json │ │ │ │ │ │ │ │ ├── FJ.json │ │ │ │ │ │ │ │ ├── FK.json │ │ │ │ │ │ │ │ ├── FM.json │ │ │ │ │ │ │ │ ├── FO.json │ │ │ │ │ │ │ │ ├── FR.json │ │ │ │ │ │ │ │ ├── GA.json │ │ │ │ │ │ │ │ ├── GB.json │ │ │ │ │ │ │ │ ├── GD.json │ │ │ │ │ │ │ │ ├── GE.json │ │ │ │ │ │ │ │ ├── GF.json │ │ │ │ │ │ │ │ ├── GG.json │ │ │ │ │ │ │ │ ├── GH.json │ │ │ │ │ │ │ │ ├── GI.json │ │ │ │ │ │ │ │ ├── GL.json │ │ │ │ │ │ │ │ ├── GM.json │ │ │ │ │ │ │ │ ├── GN.json │ │ │ │ │ │ │ │ ├── GP.json │ │ │ │ │ │ │ │ ├── GQ.json │ │ │ │ │ │ │ │ ├── GR.json │ │ │ │ │ │ │ │ ├── GT.json │ │ │ │ │ │ │ │ ├── GU.json │ │ │ │ │ │ │ │ ├── GW.json │ │ │ │ │ │ │ │ ├── GY.json │ │ │ │ │ │ │ │ ├── HK.json │ │ │ │ │ │ │ │ ├── HN.json │ │ │ │ │ │ │ │ ├── HR.json │ │ │ │ │ │ │ │ ├── HT.json │ │ │ │ │ │ │ │ ├── HU.json │ │ │ │ │ │ │ │ ├── ID.json │ │ │ │ │ │ │ │ ├── IE.json │ │ │ │ │ │ │ │ ├── IL.json │ │ │ │ │ │ │ │ ├── IM.json │ │ │ │ │ │ │ │ ├── IN.json │ │ │ │ │ │ │ │ ├── IQ.json │ │ │ │ │ │ │ │ ├── IR.json │ │ │ │ │ │ │ │ ├── IS.json │ │ │ │ │ │ │ │ ├── IT.json │ │ │ │ │ │ │ │ ├── JE.json │ │ │ │ │ │ │ │ ├── JM.json │ │ │ │ │ │ │ │ ├── JO.json │ │ │ │ │ │ │ │ ├── JP.json │ │ │ │ │ │ │ │ ├── KE.json │ │ │ │ │ │ │ │ ├── KG.json │ │ │ │ │ │ │ │ ├── KH.json │ │ │ │ │ │ │ │ ├── KI.json │ │ │ │ │ │ │ │ ├── KM.json │ │ │ │ │ │ │ │ ├── KN.json │ │ │ │ │ │ │ │ ├── KP.json │ │ │ │ │ │ │ │ ├── KR.json │ │ │ │ │ │ │ │ ├── KW.json │ │ │ │ │ │ │ │ ├── KY.json │ │ │ │ │ │ │ │ ├── KZ.json │ │ │ │ │ │ │ │ ├── LA.json │ │ │ │ │ │ │ │ ├── LB.json │ │ │ │ │ │ │ │ ├── LC.json │ │ │ │ │ │ │ │ ├── LI.json │ │ │ │ │ │ │ │ ├── LK.json │ │ │ │ │ │ │ │ ├── LR.json │ │ │ │ │ │ │ │ ├── LS.json │ │ │ │ │ │ │ │ ├── LT.json │ │ │ │ │ │ │ │ ├── LU.json │ │ │ │ │ │ │ │ ├── LV.json │ │ │ │ │ │ │ │ ├── LY.json │ │ │ │ │ │ │ │ ├── MA.json │ │ │ │ │ │ │ │ ├── MC.json │ │ │ │ │ │ │ │ ├── MD.json │ │ │ │ │ │ │ │ ├── ME.json │ │ │ │ │ │ │ │ ├── MG.json │ │ │ │ │ │ │ │ ├── MH.json │ │ │ │ │ │ │ │ ├── MK.json │ │ │ │ │ │ │ │ ├── ML.json │ │ │ │ │ │ │ │ ├── MM.json │ │ │ │ │ │ │ │ ├── MN.json │ │ │ │ │ │ │ │ ├── MO.json │ │ │ │ │ │ │ │ ├── MP.json │ │ │ │ │ │ │ │ ├── MQ.json │ │ │ │ │ │ │ │ ├── MR.json │ │ │ │ │ │ │ │ ├── MS.json │ │ │ │ │ │ │ │ ├── MT.json │ │ │ │ │ │ │ │ ├── MU.json │ │ │ │ │ │ │ │ ├── MV.json │ │ │ │ │ │ │ │ ├── MW.json │ │ │ │ │ │ │ │ ├── MX.json │ │ │ │ │ │ │ │ ├── MY.json │ │ │ │ │ │ │ │ ├── MZ.json │ │ │ │ │ │ │ │ ├── NA.json │ │ │ │ │ │ │ │ ├── NC.json │ │ │ │ │ │ │ │ ├── NE.json │ │ │ │ │ │ │ │ ├── NF.json │ │ │ │ │ │ │ │ ├── NG.json │ │ │ │ │ │ │ │ ├── NI.json │ │ │ │ │ │ │ │ ├── NL.json │ │ │ │ │ │ │ │ ├── NO.json │ │ │ │ │ │ │ │ ├── NP.json │ │ │ │ │ │ │ │ ├── NR.json │ │ │ │ │ │ │ │ ├── NU.json │ │ │ │ │ │ │ │ ├── NZ.json │ │ │ │ │ │ │ │ ├── OM.json │ │ │ │ │ │ │ │ ├── PA.json │ │ │ │ │ │ │ │ ├── PE.json │ │ │ │ │ │ │ │ ├── PF.json │ │ │ │ │ │ │ │ ├── PG.json │ │ │ │ │ │ │ │ ├── PH.json │ │ │ │ │ │ │ │ ├── PK.json │ │ │ │ │ │ │ │ ├── PL.json │ │ │ │ │ │ │ │ ├── PM.json │ │ │ │ │ │ │ │ ├── PR.json │ │ │ │ │ │ │ │ ├── PS.json │ │ │ │ │ │ │ │ ├── PT.json │ │ │ │ │ │ │ │ ├── PW.json │ │ │ │ │ │ │ │ ├── PY.json │ │ │ │ │ │ │ │ ├── QA.json │ │ │ │ │ │ │ │ ├── RE.json │ │ │ │ │ │ │ │ ├── RO.json │ │ │ │ │ │ │ │ ├── RS.json │ │ │ │ │ │ │ │ ├── RU.json │ │ │ │ │ │ │ │ ├── RW.json │ │ │ │ │ │ │ │ ├── SA.json │ │ │ │ │ │ │ │ ├── SB.json │ │ │ │ │ │ │ │ ├── SC.json │ │ │ │ │ │ │ │ ├── SD.json │ │ │ │ │ │ │ │ ├── SE.json │ │ │ │ │ │ │ │ ├── SG.json │ │ │ │ │ │ │ │ ├── SH.json │ │ │ │ │ │ │ │ ├── SI.json │ │ │ │ │ │ │ │ ├── SK.json │ │ │ │ │ │ │ │ ├── SL.json │ │ │ │ │ │ │ │ ├── SM.json │ │ │ │ │ │ │ │ ├── SN.json │ │ │ │ │ │ │ │ ├── SO.json │ │ │ │ │ │ │ │ ├── SR.json │ │ │ │ │ │ │ │ ├── ST.json │ │ │ │ │ │ │ │ ├── SV.json │ │ │ │ │ │ │ │ ├── SY.json │ │ │ │ │ │ │ │ ├── SZ.json │ │ │ │ │ │ │ │ ├── TC.json │ │ │ │ │ │ │ │ ├── TD.json │ │ │ │ │ │ │ │ ├── TG.json │ │ │ │ │ │ │ │ ├── TH.json │ │ │ │ │ │ │ │ ├── TJ.json │ │ │ │ │ │ │ │ ├── TK.json │ │ │ │ │ │ │ │ ├── TL.json │ │ │ │ │ │ │ │ ├── TM.json │ │ │ │ │ │ │ │ ├── TN.json │ │ │ │ │ │ │ │ ├── TO.json │ │ │ │ │ │ │ │ ├── TR.json │ │ │ │ │ │ │ │ ├── TT.json │ │ │ │ │ │ │ │ ├── TV.json │ │ │ │ │ │ │ │ ├── TW.json │ │ │ │ │ │ │ │ ├── TZ.json │ │ │ │ │ │ │ │ ├── UA.json │ │ │ │ │ │ │ │ ├── UG.json │ │ │ │ │ │ │ │ ├── US.json │ │ │ │ │ │ │ │ ├── UY.json │ │ │ │ │ │ │ │ ├── UZ.json │ │ │ │ │ │ │ │ ├── VA.json │ │ │ │ │ │ │ │ ├── VC.json │ │ │ │ │ │ │ │ ├── VE.json │ │ │ │ │ │ │ │ ├── VG.json │ │ │ │ │ │ │ │ ├── VI.json │ │ │ │ │ │ │ │ ├── VN.json │ │ │ │ │ │ │ │ ├── VU.json │ │ │ │ │ │ │ │ ├── WF.json │ │ │ │ │ │ │ │ ├── WS.json │ │ │ │ │ │ │ │ ├── YE.json │ │ │ │ │ │ │ │ ├── YT.json │ │ │ │ │ │ │ │ ├── ZA.json │ │ │ │ │ │ │ │ ├── ZM.json │ │ │ │ │ │ │ │ ├── ZW.json │ │ │ │ │ │ │ │ ├── alt-af.json │ │ │ │ │ │ │ │ ├── alt-an.json │ │ │ │ │ │ │ │ ├── alt-as.json │ │ │ │ │ │ │ │ ├── alt-eu.json │ │ │ │ │ │ │ │ ├── alt-na.json │ │ │ │ │ │ │ │ ├── alt-oc.json │ │ │ │ │ │ │ │ ├── alt-sa.json │ │ │ │ │ │ │ │ └── alt-ww.json │ │ │ │ │ │ ├── num2fraction │ │ │ │ │ │ │ ├── .editorconfig │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── postcss │ │ │ │ │ │ │ ├── API.md │ │ │ │ │ │ │ ├── ChangeLog.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── at-rule.js │ │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ │ ├── container.js │ │ │ │ │ │ │ ├── css-syntax-error.js │ │ │ │ │ │ │ ├── declaration.js │ │ │ │ │ │ │ ├── input.js │ │ │ │ │ │ │ ├── list.js │ │ │ │ │ │ │ ├── map-generator.js │ │ │ │ │ │ │ ├── node.js │ │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ │ ├── postcss.js │ │ │ │ │ │ │ ├── previous-map.js │ │ │ │ │ │ │ ├── result.js │ │ │ │ │ │ │ ├── root.js │ │ │ │ │ │ │ ├── rule.js │ │ │ │ │ │ │ ├── tokenize.js │ │ │ │ │ │ │ └── vendor.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── js-base64 │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── base64.html │ │ │ │ │ │ │ │ ├── base64.js │ │ │ │ │ │ │ │ ├── base64.min.js │ │ │ │ │ │ │ │ ├── base64_utf8 │ │ │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ │ │ ├── old │ │ │ │ │ │ │ │ │ └── base64-1.7.js │ │ │ │ │ │ │ │ ├── package.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── dankogai.js │ │ │ │ │ │ │ │ │ ├── es5.js │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── large.js │ │ │ │ │ │ │ │ │ └── yoshinoya.js │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── Makefile.dryice.js │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ ├── assert-shim.js │ │ │ │ │ │ │ │ ├── mini-require.js │ │ │ │ │ │ │ │ ├── prefix-source-map.jsm │ │ │ │ │ │ │ │ ├── prefix-utils.jsm │ │ │ │ │ │ │ │ ├── suffix-browser.js │ │ │ │ │ │ │ │ ├── suffix-source-map.jsm │ │ │ │ │ │ │ │ ├── suffix-utils.jsm │ │ │ │ │ │ │ │ ├── test-prefix.js │ │ │ │ │ │ │ │ └── test-suffix.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── source-map.js │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ │ ├── array-set.js │ │ │ │ │ │ │ │ │ ├── base64-vlq.js │ │ │ │ │ │ │ │ │ ├── base64.js │ │ │ │ │ │ │ │ │ ├── basic-source-map-consumer.js │ │ │ │ │ │ │ │ │ ├── binary-search.js │ │ │ │ │ │ │ │ │ ├── mapping-list.js │ │ │ │ │ │ │ │ │ ├── source-map-consumer.js │ │ │ │ │ │ │ │ │ ├── source-map-generator.js │ │ │ │ │ │ │ │ │ ├── source-node.js │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── amdefine │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── amdefine.js │ │ │ │ │ │ │ │ │ ├── intercept.js │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── run-tests.js │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ ├── test-api.js │ │ │ │ │ │ │ │ ├── test-array-set.js │ │ │ │ │ │ │ │ ├── test-base64-vlq.js │ │ │ │ │ │ │ │ ├── test-base64.js │ │ │ │ │ │ │ │ ├── test-binary-search.js │ │ │ │ │ │ │ │ ├── test-dog-fooding.js │ │ │ │ │ │ │ │ ├── test-source-map-consumer.js │ │ │ │ │ │ │ │ ├── test-source-map-generator.js │ │ │ │ │ │ │ │ ├── test-source-node.js │ │ │ │ │ │ │ │ ├── test-util.js │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── chalk │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── .bin │ │ │ │ │ │ │ ├── has-ansi │ │ │ │ │ │ │ ├── has-ansi.cmd │ │ │ │ │ │ │ ├── strip-ansi │ │ │ │ │ │ │ ├── strip-ansi.cmd │ │ │ │ │ │ │ ├── supports-color │ │ │ │ │ │ │ └── supports-color.cmd │ │ │ │ │ │ ├── ansi-styles │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ │ ├── escape-string-regexp │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ │ ├── has-ansi │ │ │ │ │ │ │ ├── cli.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── ansi-regex │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ │ ├── strip-ansi │ │ │ │ │ │ │ ├── cli.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── ansi-regex │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ │ └── supports-color │ │ │ │ │ │ │ ├── cli.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ └── diff │ │ │ │ │ ├── README.md │ │ │ │ │ ├── diff.js │ │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── tasks │ │ │ │ └── autoprefixer.js │ │ ├── grunt-contrib-watch │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── tiny-lr-fork │ │ │ │ │ └── tiny-lr-fork.cmd │ │ │ │ ├── async │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── component.json │ │ │ │ │ ├── lib │ │ │ │ │ │ └── async.js │ │ │ │ │ └── package.json │ │ │ │ ├── gaze │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── gaze.js │ │ │ │ │ │ └── helper.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── globule │ │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── globule.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── glob │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ │ ├── g.js │ │ │ │ │ │ │ │ │ └── usr-local.js │ │ │ │ │ │ │ │ ├── glob.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ ├── graceful-fs │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── graceful-fs.js │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ ├── open.js │ │ │ │ │ │ │ │ │ │ │ └── ulimit.js │ │ │ │ │ │ │ │ │ └── inherits │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── inherits.js │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── 00-setup.js │ │ │ │ │ │ │ │ │ ├── bash-comparison.js │ │ │ │ │ │ │ │ │ ├── bash-results.json │ │ │ │ │ │ │ │ │ ├── cwd-test.js │ │ │ │ │ │ │ │ │ ├── mark.js │ │ │ │ │ │ │ │ │ ├── nocase-nomagic.js │ │ │ │ │ │ │ │ │ ├── pause-resume.js │ │ │ │ │ │ │ │ │ ├── root-nomount.js │ │ │ │ │ │ │ │ │ ├── root.js │ │ │ │ │ │ │ │ │ └── zz-cleanup.js │ │ │ │ │ │ │ ├── lodash │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── dist │ │ │ │ │ │ │ │ │ ├── lodash.compat.js │ │ │ │ │ │ │ │ │ ├── lodash.compat.min.js │ │ │ │ │ │ │ │ │ ├── lodash.js │ │ │ │ │ │ │ │ │ ├── lodash.min.js │ │ │ │ │ │ │ │ │ ├── lodash.underscore.js │ │ │ │ │ │ │ │ │ └── lodash.underscore.min.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── minimatch │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── minimatch.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── lru-cache │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ └── lru-cache.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ │ │ │ │ └── memory-leak.js │ │ │ │ │ │ │ │ └── sigmund │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ ├── sigmund.js │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ └── basic.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ │ ├── brace-expand.js │ │ │ │ │ │ │ │ ├── caching.js │ │ │ │ │ │ │ │ ├── defaults.js │ │ │ │ │ │ │ │ └── extglob-ending-with-state-char.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ └── expand │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── baz.css │ │ │ │ │ │ │ │ └── qux.css │ │ │ │ │ │ │ │ ├── deep │ │ │ │ │ │ │ │ ├── deep.txt │ │ │ │ │ │ │ │ └── deeper │ │ │ │ │ │ │ │ │ ├── deeper.txt │ │ │ │ │ │ │ │ │ └── deepest │ │ │ │ │ │ │ │ │ └── deepest.txt │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ │ │ └── foo.js │ │ │ │ │ │ │ └── globule_test.js │ │ │ │ │ └── package.json │ │ │ │ ├── lodash │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── lodash.compat.js │ │ │ │ │ │ ├── lodash.compat.min.js │ │ │ │ │ │ ├── lodash.js │ │ │ │ │ │ ├── lodash.min.js │ │ │ │ │ │ ├── lodash.underscore.js │ │ │ │ │ │ └── lodash.underscore.min.js │ │ │ │ │ ├── lodash.js │ │ │ │ │ └── package.json │ │ │ │ └── tiny-lr-fork │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ ├── bin │ │ │ │ │ ├── tiny-lr │ │ │ │ │ └── update-livereload │ │ │ │ │ ├── lib │ │ │ │ │ ├── client.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── public │ │ │ │ │ │ └── livereload.js │ │ │ │ │ └── server.js │ │ │ │ │ ├── node_modules │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── faye-websocket │ │ │ │ │ │ ├── CHANGELOG.txt │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── autobahn_client.js │ │ │ │ │ │ │ ├── client.js │ │ │ │ │ │ │ ├── haproxy.conf │ │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ │ ├── sse.html │ │ │ │ │ │ │ └── ws.html │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── faye │ │ │ │ │ │ │ │ ├── eventsource.js │ │ │ │ │ │ │ │ ├── websocket.js │ │ │ │ │ │ │ │ └── websocket │ │ │ │ │ │ │ │ ├── api.js │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── event.js │ │ │ │ │ │ │ │ └── event_target.js │ │ │ │ │ │ │ │ ├── client.js │ │ │ │ │ │ │ │ ├── draft75_parser.js │ │ │ │ │ │ │ │ ├── draft76_parser.js │ │ │ │ │ │ │ │ ├── hybi_parser.js │ │ │ │ │ │ │ │ └── hybi_parser │ │ │ │ │ │ │ │ ├── handshake.js │ │ │ │ │ │ │ │ └── stream_reader.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── spec │ │ │ │ │ │ │ ├── faye │ │ │ │ │ │ │ └── websocket │ │ │ │ │ │ │ │ ├── client_spec.js │ │ │ │ │ │ │ │ ├── draft75parser_spec.js │ │ │ │ │ │ │ │ ├── draft76parser_spec.js │ │ │ │ │ │ │ │ └── hybi_parser_spec.js │ │ │ │ │ │ │ ├── runner.js │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ └── server.key │ │ │ │ │ ├── noptify │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── collectable.js │ │ │ │ │ │ │ └── commandable.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── .bin │ │ │ │ │ │ │ │ ├── nopt │ │ │ │ │ │ │ │ └── nopt.cmd │ │ │ │ │ │ │ └── nopt │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ └── nopt.js │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ └── my-program.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── nopt.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── abbrev │ │ │ │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── abbrev.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.md │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ ├── api.js │ │ │ │ │ │ │ ├── collectable.js │ │ │ │ │ │ │ ├── commandable.js │ │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ │ │ └── b.js │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── extend.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── qs │ │ │ │ │ │ ├── .gitmodules │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── benchmark.js │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── examples.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── browser │ │ │ │ │ │ ├── expect.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── mocha.css │ │ │ │ │ │ ├── mocha.js │ │ │ │ │ │ ├── qs.css │ │ │ │ │ │ └── qs.js │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ └── stringify.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── tasks │ │ │ │ │ ├── tiny-lr.js │ │ │ │ │ └── tiny-lr.mk │ │ │ │ │ └── test │ │ │ │ │ ├── client.js │ │ │ │ │ ├── middleware.js │ │ │ │ │ └── server.js │ │ │ ├── package.json │ │ │ └── tasks │ │ │ │ ├── lib │ │ │ │ ├── livereload.js │ │ │ │ ├── taskrun.js │ │ │ │ └── taskrunner.js │ │ │ │ └── watch.js │ │ └── grunt │ │ │ ├── .npmignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── internal-tasks │ │ │ ├── bump.js │ │ │ └── subgrunt.js │ │ │ ├── lib │ │ │ ├── grunt.js │ │ │ ├── grunt │ │ │ │ ├── cli.js │ │ │ │ ├── config.js │ │ │ │ ├── event.js │ │ │ │ ├── fail.js │ │ │ │ ├── file.js │ │ │ │ ├── help.js │ │ │ │ ├── option.js │ │ │ │ ├── task.js │ │ │ │ └── template.js │ │ │ └── util │ │ │ │ └── task.js │ │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── cake │ │ │ │ ├── cake.cmd │ │ │ │ ├── coffee │ │ │ │ ├── coffee.cmd │ │ │ │ ├── js-yaml │ │ │ │ ├── js-yaml.cmd │ │ │ │ ├── nopt │ │ │ │ ├── nopt.cmd │ │ │ │ ├── rimraf │ │ │ │ ├── rimraf.cmd │ │ │ │ ├── which │ │ │ │ └── which.cmd │ │ │ ├── async │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── async.js │ │ │ │ └── package.json │ │ │ ├── coffee-script │ │ │ │ ├── .npmignore │ │ │ │ ├── CNAME │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── Rakefile │ │ │ │ ├── bin │ │ │ │ │ ├── cake │ │ │ │ │ └── coffee │ │ │ │ ├── extras │ │ │ │ │ └── jsl.conf │ │ │ │ ├── lib │ │ │ │ │ └── coffee-script │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── cake.js │ │ │ │ │ │ ├── coffee-script.js │ │ │ │ │ │ ├── command.js │ │ │ │ │ │ ├── grammar.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lexer.js │ │ │ │ │ │ ├── nodes.js │ │ │ │ │ │ ├── optparse.js │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ ├── repl.js │ │ │ │ │ │ ├── rewriter.js │ │ │ │ │ │ └── scope.js │ │ │ │ └── package.json │ │ │ ├── colors │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ ├── ReadMe.md │ │ │ │ ├── colors.js │ │ │ │ ├── example.html │ │ │ │ ├── example.js │ │ │ │ ├── package.json │ │ │ │ ├── test.js │ │ │ │ └── themes │ │ │ │ │ ├── winston-dark.js │ │ │ │ │ └── winston-light.js │ │ │ ├── dateformat │ │ │ │ ├── Readme.md │ │ │ │ ├── lib │ │ │ │ │ └── dateformat.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── test_weekofyear.js │ │ │ │ │ └── test_weekofyear.sh │ │ │ ├── eventemitter2 │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── eventemitter2.js │ │ │ │ └── package.json │ │ │ ├── exit │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── exit.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── exit_test.js │ │ │ │ │ └── fixtures │ │ │ │ │ ├── 10-stderr.txt │ │ │ │ │ ├── 10-stdout-stderr.txt │ │ │ │ │ ├── 10-stdout.txt │ │ │ │ │ ├── 100-stderr.txt │ │ │ │ │ ├── 100-stdout-stderr.txt │ │ │ │ │ ├── 100-stdout.txt │ │ │ │ │ ├── 1000-stderr.txt │ │ │ │ │ ├── 1000-stdout-stderr.txt │ │ │ │ │ ├── 1000-stdout.txt │ │ │ │ │ ├── create-files.sh │ │ │ │ │ ├── log-broken.js │ │ │ │ │ └── log.js │ │ │ ├── findup-sync │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── findup-sync.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── glob │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── g.js │ │ │ │ │ │ │ └── usr-local.js │ │ │ │ │ │ ├── glob.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── inherits │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── inherits.js │ │ │ │ │ │ │ │ ├── inherits_browser.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ └── minimatch │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── minimatch.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── lru-cache │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ └── lru-cache.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ │ │ │ │ └── memory-leak.js │ │ │ │ │ │ │ │ └── sigmund │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ ├── sigmund.js │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ └── basic.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ │ ├── brace-expand.js │ │ │ │ │ │ │ │ ├── caching.js │ │ │ │ │ │ │ │ ├── defaults.js │ │ │ │ │ │ │ │ └── extglob-ending-with-state-char.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── 00-setup.js │ │ │ │ │ │ │ ├── bash-comparison.js │ │ │ │ │ │ │ ├── bash-results.json │ │ │ │ │ │ │ ├── cwd-test.js │ │ │ │ │ │ │ ├── globstar-match.js │ │ │ │ │ │ │ ├── mark.js │ │ │ │ │ │ │ ├── new-glob-optional-options.js │ │ │ │ │ │ │ ├── nocase-nomagic.js │ │ │ │ │ │ │ ├── pause-resume.js │ │ │ │ │ │ │ ├── readme-issue.js │ │ │ │ │ │ │ ├── root-nomount.js │ │ │ │ │ │ │ ├── root.js │ │ │ │ │ │ │ ├── stat.js │ │ │ │ │ │ │ └── zz-cleanup.js │ │ │ │ │ └── lodash │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── lodash.compat.js │ │ │ │ │ │ ├── lodash.compat.min.js │ │ │ │ │ │ ├── lodash.js │ │ │ │ │ │ ├── lodash.min.js │ │ │ │ │ │ ├── lodash.underscore.js │ │ │ │ │ │ └── lodash.underscore.min.js │ │ │ │ │ │ ├── lodash.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── findup-sync_test.js │ │ │ │ │ └── fixtures │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── a │ │ │ │ │ ├── b │ │ │ │ │ │ └── bar.txt │ │ │ │ │ └── foo.txt │ │ │ │ │ └── aaa.txt │ │ │ ├── getobject │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── getobject.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── namespace_test.js │ │ │ ├── glob │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ ├── g.js │ │ │ │ │ └── usr-local.js │ │ │ │ ├── glob.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── graceful-fs │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── graceful-fs.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── open.js │ │ │ │ │ │ │ └── ulimit.js │ │ │ │ │ └── inherits │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── inherits.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── 00-setup.js │ │ │ │ │ ├── bash-comparison.js │ │ │ │ │ ├── bash-results.json │ │ │ │ │ ├── cwd-test.js │ │ │ │ │ ├── mark.js │ │ │ │ │ ├── nocase-nomagic.js │ │ │ │ │ ├── pause-resume.js │ │ │ │ │ ├── root-nomount.js │ │ │ │ │ ├── root.js │ │ │ │ │ └── zz-cleanup.js │ │ │ ├── grunt-legacy-log │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── examples.js │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── lodash │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── dist │ │ │ │ │ │ │ ├── lodash.compat.js │ │ │ │ │ │ │ ├── lodash.compat.min.js │ │ │ │ │ │ │ ├── lodash.js │ │ │ │ │ │ │ ├── lodash.min.js │ │ │ │ │ │ │ ├── lodash.underscore.js │ │ │ │ │ │ │ └── lodash.underscore.min.js │ │ │ │ │ │ ├── lodash.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── underscore.string │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── Gemfile │ │ │ │ │ │ ├── Gemfile.lock │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ ├── Rakefile │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── dist │ │ │ │ │ │ └── underscore.string.min.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── underscore.string.js │ │ │ │ │ │ ├── libpeerconnection.log │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── run-qunit.js │ │ │ │ │ │ ├── speed.js │ │ │ │ │ │ ├── strings.js │ │ │ │ │ │ ├── strings_standalone.js │ │ │ │ │ │ ├── test.html │ │ │ │ │ │ ├── test_standalone.html │ │ │ │ │ │ ├── test_underscore │ │ │ │ │ │ ├── arrays.js │ │ │ │ │ │ ├── chaining.js │ │ │ │ │ │ ├── collections.js │ │ │ │ │ │ ├── functions.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── objects.js │ │ │ │ │ │ ├── speed.js │ │ │ │ │ │ ├── utility.js │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── jslitmus.js │ │ │ │ │ │ │ ├── qunit.css │ │ │ │ │ │ │ └── qunit.js │ │ │ │ │ │ └── underscore.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── grunt-legacy-util │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── fixtures │ │ │ │ │ ├── Gruntfile-execArgv-child.js │ │ │ │ │ ├── Gruntfile-execArgv.js │ │ │ │ │ ├── Gruntfile-print-text.js │ │ │ │ │ ├── exec.cmd │ │ │ │ │ ├── exec.sh │ │ │ │ │ ├── spawn-multibyte.js │ │ │ │ │ └── spawn.js │ │ │ │ │ └── index.js │ │ │ ├── hooker │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── child.js │ │ │ │ ├── dist │ │ │ │ │ ├── ba-hooker.js │ │ │ │ │ └── ba-hooker.min.js │ │ │ │ ├── grunt.js │ │ │ │ ├── lib │ │ │ │ │ └── hooker.js │ │ │ │ ├── package.json │ │ │ │ ├── parent.js │ │ │ │ └── test │ │ │ │ │ └── hooker_test.js │ │ │ ├── iconv-lite │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── README.md~ │ │ │ │ ├── encodings │ │ │ │ │ ├── big5.js │ │ │ │ │ ├── gbk.js │ │ │ │ │ ├── singlebyte.js │ │ │ │ │ └── table │ │ │ │ │ │ ├── big5.js │ │ │ │ │ │ └── gbk.js │ │ │ │ ├── generation │ │ │ │ │ ├── generate-big5-table.js │ │ │ │ │ └── generate-singlebyte.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── big5-test.js │ │ │ │ │ ├── big5File.txt │ │ │ │ │ ├── cyrillic-test.js │ │ │ │ │ ├── gbk-test.js │ │ │ │ │ ├── gbkFile.txt │ │ │ │ │ ├── greek-test.js │ │ │ │ │ ├── main-test.js │ │ │ │ │ ├── performance.js │ │ │ │ │ └── turkish-test.js │ │ │ ├── js-yaml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ │ └── js-yaml.js │ │ │ │ ├── examples │ │ │ │ │ ├── custom_types.js │ │ │ │ │ ├── custom_types.yaml │ │ │ │ │ ├── dumper.js │ │ │ │ │ ├── dumper.json │ │ │ │ │ ├── sample_document.js │ │ │ │ │ └── sample_document.yaml │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── js-yaml.js │ │ │ │ │ └── js-yaml │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── dumper.js │ │ │ │ │ │ ├── exception.js │ │ │ │ │ │ ├── loader.js │ │ │ │ │ │ ├── mark.js │ │ │ │ │ │ ├── require.js │ │ │ │ │ │ ├── schema.js │ │ │ │ │ │ ├── schema │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ ├── minimal.js │ │ │ │ │ │ └── safe.js │ │ │ │ │ │ ├── type.js │ │ │ │ │ │ └── type │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ ├── bool.js │ │ │ │ │ │ ├── float.js │ │ │ │ │ │ ├── int.js │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── function.js │ │ │ │ │ │ ├── regexp.js │ │ │ │ │ │ └── undefined.js │ │ │ │ │ │ ├── map.js │ │ │ │ │ │ ├── merge.js │ │ │ │ │ │ ├── null.js │ │ │ │ │ │ ├── omap.js │ │ │ │ │ │ ├── pairs.js │ │ │ │ │ │ ├── seq.js │ │ │ │ │ │ ├── set.js │ │ │ │ │ │ ├── str.js │ │ │ │ │ │ └── timestamp.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── .bin │ │ │ │ │ │ ├── esparse │ │ │ │ │ │ ├── esparse.cmd │ │ │ │ │ │ ├── esvalidate │ │ │ │ │ │ └── esvalidate.cmd │ │ │ │ │ ├── argparse │ │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── arguments.js │ │ │ │ │ │ │ ├── choice.js │ │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ │ ├── help.js │ │ │ │ │ │ │ ├── nargs.js │ │ │ │ │ │ │ ├── parents.js │ │ │ │ │ │ │ ├── prefix_chars.js │ │ │ │ │ │ │ ├── sub_commands.js │ │ │ │ │ │ │ ├── sum.js │ │ │ │ │ │ │ └── testformatters.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── action.js │ │ │ │ │ │ │ ├── action │ │ │ │ │ │ │ │ ├── append.js │ │ │ │ │ │ │ │ ├── append │ │ │ │ │ │ │ │ │ └── constant.js │ │ │ │ │ │ │ │ ├── count.js │ │ │ │ │ │ │ │ ├── help.js │ │ │ │ │ │ │ │ ├── store.js │ │ │ │ │ │ │ │ ├── store │ │ │ │ │ │ │ │ │ ├── constant.js │ │ │ │ │ │ │ │ │ ├── false.js │ │ │ │ │ │ │ │ │ └── true.js │ │ │ │ │ │ │ │ ├── subparsers.js │ │ │ │ │ │ │ │ └── version.js │ │ │ │ │ │ │ ├── action_container.js │ │ │ │ │ │ │ ├── argparse.js │ │ │ │ │ │ │ ├── argument │ │ │ │ │ │ │ │ ├── error.js │ │ │ │ │ │ │ │ ├── exclusive.js │ │ │ │ │ │ │ │ └── group.js │ │ │ │ │ │ │ ├── argument_parser.js │ │ │ │ │ │ │ ├── const.js │ │ │ │ │ │ │ ├── help │ │ │ │ │ │ │ │ ├── added_formatters.js │ │ │ │ │ │ │ │ └── formatter.js │ │ │ │ │ │ │ └── namespace.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── underscore.string │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ │ │ ├── gulpfile.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── underscore.string.js │ │ │ │ │ │ │ │ ├── libpeerconnection.log │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── underscore │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── underscore-min.js │ │ │ │ │ │ │ │ └── underscore.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── esprima │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bin │ │ │ │ │ │ ├── esparse.js │ │ │ │ │ │ └── esvalidate.js │ │ │ │ │ │ ├── esprima.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── compat.js │ │ │ │ │ │ ├── reflect.js │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ ├── runner.js │ │ │ │ │ │ └── test.js │ │ │ │ └── package.json │ │ │ ├── lodash │ │ │ │ ├── README.md │ │ │ │ ├── lodash.js │ │ │ │ ├── lodash.min.js │ │ │ │ ├── lodash.underscore.js │ │ │ │ ├── lodash.underscore.min.js │ │ │ │ └── package.json │ │ │ ├── minimatch │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── minimatch.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── lru-cache │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── lru-cache.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ │ └── memory-leak.js │ │ │ │ │ └── sigmund │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── sigmund.js │ │ │ │ │ │ └── test │ │ │ │ │ │ └── basic.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── basic.js │ │ │ │ │ ├── brace-expand.js │ │ │ │ │ ├── caching.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ └── extglob-ending-with-state-char.js │ │ │ ├── nopt │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ │ └── nopt.js │ │ │ │ ├── examples │ │ │ │ │ └── my-program.js │ │ │ │ ├── lib │ │ │ │ │ └── nopt.js │ │ │ │ ├── node_modules │ │ │ │ │ └── abbrev │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── abbrev.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test.js │ │ │ │ └── package.json │ │ │ ├── rimraf │ │ │ │ ├── AUTHORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin.js │ │ │ │ ├── package.json │ │ │ │ ├── rimraf.js │ │ │ │ └── test │ │ │ │ │ ├── run.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── test-async.js │ │ │ │ │ └── test-sync.js │ │ │ ├── underscore.string │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gemfile │ │ │ │ ├── Gemfile.lock │ │ │ │ ├── README.markdown │ │ │ │ ├── Rakefile │ │ │ │ ├── dist │ │ │ │ │ └── underscore.string.min.js │ │ │ │ ├── lib │ │ │ │ │ └── underscore.string.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── run-qunit.js │ │ │ │ │ ├── speed.js │ │ │ │ │ ├── strings.js │ │ │ │ │ ├── strings_standalone.js │ │ │ │ │ ├── test.html │ │ │ │ │ ├── test_standalone.html │ │ │ │ │ ├── test_underscore │ │ │ │ │ ├── arrays.js │ │ │ │ │ ├── chaining.js │ │ │ │ │ ├── collections.js │ │ │ │ │ ├── functions.js │ │ │ │ │ ├── objects.js │ │ │ │ │ ├── speed.js │ │ │ │ │ ├── temp.js │ │ │ │ │ ├── temp_tests.html │ │ │ │ │ ├── test.html │ │ │ │ │ ├── utility.js │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── jslitmus.js │ │ │ │ │ │ ├── qunit.css │ │ │ │ │ │ └── qunit.js │ │ │ │ │ └── underscore.js │ │ │ └── which │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── which │ │ │ │ ├── package.json │ │ │ │ └── which.js │ │ │ └── package.json │ └── package.json │ ├── public │ ├── assets │ │ ├── build │ │ │ └── main.css │ │ ├── images │ │ │ ├── favicon.ico │ │ │ └── kara1.jpg │ │ └── stylesheets │ │ │ └── main.css │ └── index.html │ └── static1.go ├── 01_samples ├── .idea │ ├── .name │ ├── 01_samples.iml │ ├── libraries │ │ ├── GOPATH__01_samples_.xml │ │ └── Go_SDK.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── 00_READ_ME.txt ├── 01_declare_variable_Print.go ├── 02_declare_variable_Println.go ├── 03_declare_many_at_once.go ├── 04_init_many_at_once.go ├── 05_infer_type.go ├── 06_infer_mixed_up_types.go ├── 07_init_shorthand.go ├── 08_POINTERS.go ├── 09_asterik_switch.go ├── 10_pass_by_reference.go ├── 11_TYPES.go ├── 12_STRUCTS.go ├── 13_explicitly_pass_args.go ├── 14_dot_notation.go ├── 15_CONSTANTS.go ├── 16_IOTA.go ├── 17_iota_on_own.go ├── 18_iota_shorthand.go ├── 19_FUNCTIONS.go ├── 20_functions_multiple_structs_and_calls.go ├── 21_returns.go ├── 22_multiple_returns.go ├── 23_escaped_characters.go ├── 24_multiple_returns_mas.go ├── 25_unused_return_is_error.go ├── 26_ignore_unused_variable.go ├── 27_unused_variable_is_error.go ├── 28_naming_return_value.go ├── 29_VARIADIC_functions.go ├── 30_ERROR_variadic_must_be_last_parameter.go ├── 31_ERROR_only_one_variadic_per_function.go ├── 32_len.go ├── 33_FUNCTION_TYPES.go ├── 34_functions_declared_as_types.go ├── 35_funcs_that_return_funcs.go ├── 35_wrong_way.go ├── 36_CONDITIONALS_if.go ├── 37_if.go ├── 38_if_variable_scope.go ├── 39_if_else.go ├── 40_switch.go ├── 41_switch_fall_through.go ├── 42_switch_multiple_evals.go ├── 43_switch_expression_not_needed.go ├── 44_switching_on_type.go ├── 45_LOOP_for.go ├── 46_loop_for_condition_while-ish.go ├── 47_loop_infinite_listener.go ├── 48_loop_break.go ├── 49_loop_continue.go ├── 50_loop_range_slice.go ├── 51_loop_range_slice_mas.go ├── 52_loop_range_slice_of_structs.go ├── 53_loop_range_slice_of_structs_mas.go ├── 54_MAPS.go ├── 55_maps_insert.go ├── 56_maps_update.go ├── 57_maps_delete_entry.go ├── 58_maps_loop_range.go ├── 59_maps_long_way.go ├── 60_SLICES.go ├── 61_slices_mas.go ├── 62_slices_weird_error.go ├── 63_slices_slicing.go ├── 64_SLICING_string.go ├── 65_slices_long_way.go ├── 66_slices_long_way_strings.go ├── 67_slices_append.go ├── 68_slices_exploring_capacity.go ├── 69_slices_append_slice_to_slice.go ├── 70_slices_append_string.go ├── 71_slices_delete.go ├── 72_PACKAGES.go ├── 73_packages_average.go ├── 74_packages_aliases.go ├── 75_packages_grouped_imports.go ├── 76_packages_math-package.go ├── 77_packages_same_names_imported.go ├── 78_METHODS_type_struct.go ├── 79_methods_type_string.go ├── 80_methods_type_string_mas.go ├── 81_methods_with_returns.go ├── 82_methods_type_int.go ├── 83_methods_type_int_mas.go ├── 84_methods_pointers.go ├── 84_methods_pointers_MAS.go ├── 85_methods_interfaces.go ├── 86_methods_empty_interfaces.go ├── 87_CONCURRENCY_none.go ├── 88_concurrency_just_go.go ├── 89_concurrency_channel.go ├── xx_87_CONCURRENCY_none.go ├── xx_88_concurrency_just_go.go └── xx_89_concurrency_channel.go ├── 02_golang-book ├── 00_READ_ME.txt ├── 01_chp02_Println.go ├── 02_chp02_DOCS_Println.go ├── 03_chp02_Println_returns.go ├── 04_chp02_Println_multiple_params.go ├── 05_chp02_Println_multiple_param_types.go ├── 06_chp03_TYPES_integers.go ├── 07_chp03_types_floating_point.go ├── 08_chp03_types_strings.go ├── 09_chp03_types_bool.go ├── 10_chp04_VARIABLES.go ├── 11_chp04_variables_constants.go ├── 12_chp04_SCANF.go ├── 13_chp05_LOOP.go ├── 14_chp05_SWITCH.go ├── 15_chp06_ARRAYS.go ├── 16_chp06_SLICES.go ├── 17_chp06_slices_append..go ├── 18_chp06_slices_copy.go ├── 19_chp06_MAPS.go ├── 20_chp06_maps_arrays_slices.go ├── 21_chp06_maps_length_dynamic.go ├── 22_chp06_maps_printing_map_elements.go ├── 23_chp06_maps_map_in_map.go ├── 24_chp07_FUNCTIONS.go ├── 25_chp07_functions_multiple_returns.go ├── 26_chp07_functions_variadic.go ├── 27_chp07_functions_funcs-in-funcs.go ├── 28_chp07_functions_closure.go ├── 28_chp07_functions_closure_GOBYEXAMPLE.go ├── 29_chp07_functions_funcs-return-funcs.go ├── 30_chp07_functions_recursion.go ├── 31_chp07_functions_defer.go ├── 32_chp07_functions_panic-recover.go ├── 33_chp08_POINTERS_pass_by_value.go ├── 34_chp08_pointers_pass_by_reference.go ├── 35_chp09_STRUCTS_passing.go ├── 36_chp09_structs_methods.go ├── 37_chp09_structs_embedded_types.go ├── 38_chp09_structs_interfaces.go ├── 39_chp10_CONCURRENCY_step_01.go ├── 40_chp10_CONCURRENCY_step_02.go ├── 41_chp10_CONCURRENCY_step_03.go ├── 42_chp10_CONCURRENCY_channels_01.go ├── 43_chp10_CONCURRENCY_channels_02.go ├── 44_chp10_CONCURRENCY_channels_select_01.go ├── 45_chp10_CONCURRENCY_channels_select_02.go ├── 46_chp10_CONCURRENCY_channels_select_03.go ├── 47_chp10_CONCURRENCY_channels_buffered.go ├── 48_chp11_PACKAGES.txt ├── 49_chp11_PACKAGES_doc.txt ├── 50_chp12_TESTING.txt ├── 51_chp13_CORE_PACKAGES_string.go ├── 52_chp13_CORE_PACKAGES_strings_byte_slices.go ├── 52_chp13_CORE_PACKAGES_strings_byte_slices_mas.go ├── 53_chp13_CORE_PACKAGES_read_file.go ├── 54_chp13_CORE_PACKAGES_create_file.go ├── 55_chp13_CORE_PACKAGES_dir_contents.go ├── 56_chp13_CORE_PACKAGES_dir_contents.go ├── 57_chp13_CORE_PACKAGES_dir_contents_all.go ├── 58_chp13_CORE_PACKAGES_errors.go ├── 59_chp13_CORE_PACKAGES_sort.go ├── 60_chp13_CORE_PACKAGES_hash.go ├── 61_chp13_CORE_PACKAGES_crypto.go ├── 62_chp13_CORE_PACKAGES_TCP.go ├── 63_chp13_CORE_PACKAGES_HTTP.go ├── 64_chp13_CORE_PACKAGES_flags.go ├── PACKAGES │ ├── main.go │ └── math │ │ ├── math.go │ │ └── math_test.go ├── test.txt ├── test1.txt ├── test2.txt ├── testCreated.txt └── testReadFrom.txt ├── 03_gowiki ├── 00_READ_ME.txt ├── 01_wiki.go ├── 02_wiki_with_notes.go ├── 03_01_net-http_package_simple_web_server.go ├── 03_02_net-http_package_simple_web_server.go ├── 04_net-http_package_web_server_multiple_pages.go ├── 05_01_net-http_package_simple_web_server_Printf.go ├── 05_02_net-http_package_simple_web_server_Printf_NOTES.go ├── 05_03_r-url_explored.go ├── 05_04_r-url_explored_mas.go ├── 06_01_string_formatting.go ├── 06_02_string_formatting.go ├── 07_net-http_package_load_page.go ├── 08_net-http_package_web_server_multiple_pages_MAS.go ├── 10_01_html-template_package.go ├── 10_02_html-template_package_NOTES.go ├── 10_03_TEXT-TEMPLATE_simple.go ├── 10_04_TEXT-TEMPLATE_output.go ├── 10_05_TEXT-TEMPLATE_letter.go ├── 10_06_TEXT-TEMPLATE_func.go ├── 10_06_TEXT-TEMPLATE_func_NOTES.go ├── 11_handling_404.go ├── 12_saving_pages.go ├── 13_error_handling.go ├── 14_template_caching.go ├── 15_path_validation.go ├── 16_func-literals_closures.go ├── TestPage.txt ├── canine │ └── dog.txt ├── cat.txt ├── dog.txt ├── edit.html ├── mouse.txt ├── view.html └── xxxx_edit_pages.go ├── 04_bwpwg-master ├── 00_READ_ME.txt ├── 01_webapp.go ├── 02_webtime.go ├── 03_dosasite │ ├── dosasite.go │ └── public │ │ ├── images │ │ └── dosa.jpg │ │ ├── index.html │ │ ├── index_copy.html │ │ └── stylesheets │ │ └── dosasite.css ├── 04_radon_mitigation │ ├── app.yaml │ ├── notes-PAGE-SPEED.txt │ ├── public │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── css_reset.css │ │ │ │ └── main.css │ │ │ └── images │ │ │ │ ├── fam.jpg │ │ │ │ ├── fam_blur.jpg │ │ │ │ ├── fam_blur_under_600_web_medium.jpg │ │ │ │ ├── fam_smaller_medium_web.jpg │ │ │ │ ├── favicon.ico │ │ │ │ ├── radon_house.jpg │ │ │ │ ├── us_16_9_smaller_web_30.jpg │ │ │ │ └── us_left_web_30.jpg │ │ └── index.html │ └── radon_mitigation.go ├── 05_fcc_web_conf │ ├── README.md │ ├── app.yaml │ ├── colors.ai │ ├── public │ │ ├── assets │ │ │ ├── images │ │ │ │ ├── favicon.ico │ │ │ │ ├── home │ │ │ │ │ ├── dev_fest-as-Smart-Object-1.jpg │ │ │ │ │ ├── dev_fest.jpeg │ │ │ │ │ ├── dev_fest2.jpeg │ │ │ │ │ ├── fcc_old_building.jpeg │ │ │ │ │ ├── imgres.html │ │ │ │ │ ├── library.jpeg │ │ │ │ │ ├── library_ceiling.jpeg │ │ │ │ │ ├── ray_villalobos.jpeg │ │ │ │ │ ├── ray_villalobos.jpg │ │ │ │ │ └── speakers.jpg │ │ │ │ └── speakers │ │ │ │ │ ├── andrew_rota.jpeg │ │ │ │ │ ├── caleb_doxsey.jpeg │ │ │ │ │ ├── ray_villalobos.jpeg │ │ │ │ │ ├── ryan_bonhardt.jpeg │ │ │ │ │ └── zeno_rocha.jpeg │ │ │ └── stylesheets │ │ │ │ └── main.css │ │ ├── button.html │ │ ├── floats_in_practice.html │ │ ├── index.html │ │ ├── register.html │ │ ├── schedule.html │ │ ├── speakers.html │ │ ├── sponsors.html │ │ └── venue.html │ ├── test.html │ ├── test_test.html │ └── web_conference.go ├── 06_ipweb.go ├── 07_stud_struct.go ├── 08_person.go ├── 09_new_person.go ├── 10_wedding_form_letter.go ├── 11_dosasite │ ├── dosasite.go │ └── public │ │ ├── images │ │ └── dosa.jpg │ │ ├── index.html │ │ └── stylesheets │ │ └── dosasite.css ├── 12_dosasite │ ├── dosasite.go │ ├── public │ │ ├── images │ │ │ └── dosa.jpg │ │ └── stylesheets │ │ │ └── dosasite.css │ └── templates │ │ ├── indexnew.html │ │ └── layout.html ├── 13_stringupper │ ├── css │ │ └── upper.css │ └── stringupper.go ├── 14_forms.go ├── 15_geoweb │ ├── app.yaml │ ├── geoweb.go │ └── stylesheets │ │ └── goview.css ├── Procfile ├── README.md ├── blobstrex.go ├── experiment │ ├── 03_env_variables.go │ └── 06_ipweb_query-escape.go ├── geoweb_gap.go ├── getcapital.go ├── gomongohq.go ├── message.go ├── mongohqconnect.go ├── msgmartini.go ├── mytext.go ├── mytext.ico ├── photo_with_loc.jpg ├── photo_without_loc.jpg ├── server.go ├── style.css ├── table.css ├── trails.go ├── upperstring.go ├── weather.go ├── weatherui.go └── webgmail.go ├── 05_guestbook ├── .idea │ ├── .name │ ├── 05_guestbook.iml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── 00_READ_ME.txt ├── 01_hello_world │ ├── app.yaml │ └── hello.go ├── 02_using_users │ ├── app.yaml │ └── hello.go ├── 03_handling_forms │ ├── .idea │ │ ├── .name │ │ ├── 03_handling_forms.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── app.yaml │ ├── guestbook.html │ ├── guestbookform.html │ └── hello.go └── 04_using_datastore │ ├── app.yaml │ ├── hello.go │ └── index.yaml ├── 06_ps_go_web.zip ├── xx_in_process ├── 07_mcleod_web_app │ ├── .idea │ │ ├── .name │ │ ├── 07_mcleod_web_app.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── 01_multiple_pages │ │ ├── app.yaml │ │ ├── guestbook.html │ │ ├── guestbookform.html │ │ └── hello.go │ ├── 02_file_structure │ │ ├── app.yaml │ │ ├── hello.go │ │ └── templates │ │ │ ├── guestbook.html │ │ │ └── guestbookform.html │ ├── 03_exploring_ParseFiles │ │ ├── app.yaml │ │ ├── hello.go │ │ └── templates │ │ │ ├── guestbook.html │ │ │ └── guestbookform.html │ ├── 04_add_error_checking │ │ ├── app.yaml │ │ ├── hello.go │ │ └── templates │ │ │ ├── guestbook.html │ │ │ └── guestbookform.html │ ├── 05_exploring_template │ │ ├── main.go │ │ └── templates │ │ │ ├── file1.html │ │ │ └── partial.html │ ├── 06_exploring_user_auth │ │ └── 00_READ_ME.txt │ ├── 07_static_dirs_files │ │ ├── myapp │ │ │ ├── .idea │ │ │ │ ├── .name │ │ │ │ ├── misc.xml │ │ │ │ ├── modules.xml │ │ │ │ ├── myapp.iml │ │ │ │ └── vcs.xml │ │ │ ├── app.yaml │ │ │ └── hello.go │ │ ├── myapp02 │ │ │ ├── .idea │ │ │ │ ├── .name │ │ │ │ ├── misc.xml │ │ │ │ ├── modules.xml │ │ │ │ ├── myapp.iml │ │ │ │ └── vcs.xml │ │ │ ├── app.yaml │ │ │ ├── hello.go │ │ │ ├── index.html │ │ │ └── ugh2.png │ │ └── myapp03 │ │ │ ├── .idea │ │ │ ├── .name │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── myapp03.iml │ │ │ └── vcs.xml │ │ │ ├── app.yaml │ │ │ ├── hello.go │ │ │ └── site │ │ │ ├── images │ │ │ └── ugh4.png │ │ │ └── index.html │ ├── 08_access_control │ │ ├── .idea │ │ │ ├── .name │ │ │ ├── 07_access_control.iml │ │ │ ├── encodings.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── scopes │ │ │ │ └── scope_settings.xml │ │ │ └── vcs.xml │ │ ├── app.yaml │ │ ├── server.go │ │ └── site │ │ │ ├── admin │ │ │ └── admin_panel.html │ │ │ ├── authorized │ │ │ └── user_account.html │ │ │ ├── images │ │ │ └── three.png │ │ │ ├── includes │ │ │ ├── document_bottom.html │ │ │ └── document_top.html │ │ │ ├── index.html │ │ │ └── stylesheets │ │ │ └── main.css │ └── 09_blog │ │ ├── .idea │ │ ├── .name │ │ ├── 07_access_control.iml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ │ ├── app.yaml │ │ ├── server.go │ │ └── site │ │ ├── admin │ │ └── admin_panel.html │ │ ├── authorized │ │ └── user_account.html │ │ ├── images │ │ ├── admin.jpeg │ │ ├── authorized.jpeg │ │ ├── beach.jpeg │ │ └── three.png │ │ ├── includes │ │ ├── document_bottom.html │ │ └── document_top.html │ │ ├── index.html │ │ ├── old_DELETE │ │ ├── guestbook.html │ │ ├── guestbookform.html │ │ ├── index.html │ │ ├── index2.html │ │ └── victory.jpeg │ │ └── stylesheets │ │ └── main.css ├── 08_caleb │ ├── LICENSE │ ├── README.md │ ├── appengine │ │ ├── cms │ │ │ ├── api.go │ │ │ ├── api_test.go │ │ │ ├── app.yaml │ │ │ ├── routes.go │ │ │ ├── session.go │ │ │ ├── static │ │ │ │ ├── scripts │ │ │ │ │ ├── hyperscript.js │ │ │ │ │ ├── main.js │ │ │ │ │ └── views.js │ │ │ │ └── styles │ │ │ │ │ └── main.css │ │ │ └── users.go │ │ └── toddModifiedCMS │ │ │ ├── api.go │ │ │ ├── app.yaml │ │ │ ├── routes.go │ │ │ ├── session.go │ │ │ ├── static │ │ │ ├── scripts │ │ │ │ ├── hyperscript.js │ │ │ │ ├── main.js │ │ │ │ └── views.js │ │ │ └── styles │ │ │ │ └── main.css │ │ │ └── users.go │ ├── integration │ │ ├── asm │ │ │ ├── sum.go │ │ │ ├── sum_amd64.s │ │ │ └── sum_test.go │ │ ├── cgo │ │ │ ├── gcc │ │ │ │ ├── build.sh │ │ │ │ ├── main.go │ │ │ │ └── sum.c │ │ │ └── main.go │ │ ├── mq │ │ │ ├── main.go │ │ │ └── mq.go │ │ ├── namedpipes │ │ │ ├── rot13 │ │ │ │ └── main.go │ │ │ └── run.sh │ │ ├── net │ │ │ └── main.go │ │ ├── pipes │ │ │ ├── rot13 │ │ │ │ └── main.go │ │ │ └── run.sh │ │ ├── shm │ │ │ ├── main.go │ │ │ ├── sem.go │ │ │ └── shm.go │ │ ├── swig │ │ │ ├── gsl │ │ │ │ ├── gsl.go │ │ │ │ └── gsl.swig │ │ │ ├── main.go │ │ │ └── run.sh │ │ ├── syso │ │ │ ├── c │ │ │ │ └── sum.c │ │ │ ├── main.go │ │ │ ├── sum.go │ │ │ ├── sum_amd64.Conflict.S │ │ │ ├── sum_amd64.S │ │ │ ├── sum_amd64.c │ │ │ ├── sum_amd64.syso │ │ │ ├── sum_amd64_src.S │ │ │ └── syso │ │ ├── sysv_mq │ │ │ ├── main.go │ │ │ └── python │ │ │ │ └── main.py │ │ └── unixsocket │ │ │ ├── main.go │ │ │ └── python │ │ │ └── main.py │ └── trie │ │ ├── trie.go │ │ └── trie_test.go ├── 09_from_scratch_webapp │ ├── api.go │ ├── app.yaml │ ├── form.html │ ├── formhandler.html │ └── link1.html ├── 10_URL │ ├── api.go │ ├── app.yaml │ ├── form.html │ ├── formhandler.html │ ├── link1.html │ ├── link2.html │ ├── link3.html │ └── link4.html ├── 11_cookie │ ├── api.go │ ├── app.yaml │ ├── form.html │ ├── formhandler.html │ ├── link1.html │ └── link2.html ├── 12_step_by_step │ ├── 00_guestbook │ │ ├── app.go │ │ ├── app.yaml │ │ └── index.yaml │ ├── 01_datastore_WR_entity │ │ ├── app.yaml │ │ ├── ds_WR.go │ │ └── temp_datastore_code.txt │ └── 02_ancestor │ │ ├── app.yaml │ │ └── ds_ancestor.go └── 13_go_web_shanghai │ ├── 02 │ ├── 06 │ │ ├── 01_interface │ │ │ └── main.go │ │ ├── 02_interface │ │ │ └── main.go │ │ ├── 03_interface │ │ │ └── main.go │ │ ├── 04_assertion │ │ │ └── main.go │ │ ├── 05_assertion │ │ │ └── main.go │ │ ├── 06_performance │ │ │ └── main.go │ │ └── 07_reflection │ │ │ └── main.go │ └── 07 │ │ ├── 01_concurrency │ │ └── main.go │ │ ├── 02_channels │ │ └── main.go │ │ └── 03_buffered │ │ └── main.go │ ├── 03 │ └── 02 │ │ ├── 01_server │ │ └── main.go │ │ ├── 02_edwards_01 │ │ └── main.go │ │ ├── 03_edwards_02 │ │ └── main.go │ │ ├── 04_edwards_03 │ │ └── main.go │ │ ├── 05_edwards_04 │ │ └── main.go │ │ ├── 06_edwards_05 │ │ └── main.go │ │ ├── 07_edwards_06 │ │ └── main.go │ │ ├── 08_mcleod_01 │ │ └── main.go │ │ ├── 09_edwards_07 │ │ └── main.go │ │ ├── 10_edwards_08 │ │ └── main.go │ │ ├── 11_edwards_serve_static │ │ ├── app.go │ │ └── static │ │ │ ├── example.html │ │ │ └── stylesheets │ │ │ └── main.css │ │ ├── 12_edwards_serve_static │ │ ├── app.go │ │ └── static │ │ │ ├── deeper │ │ │ └── deep.html │ │ │ ├── example.html │ │ │ └── stylesheets │ │ │ └── main.css │ │ ├── 13_edwards_serve_static │ │ ├── app.go │ │ ├── static │ │ │ ├── example.html │ │ │ └── stylesheets │ │ │ │ └── main.css │ │ └── templates │ │ │ ├── example.html │ │ │ └── layout.html │ │ ├── 14_edwards_serve_static │ │ ├── app.go │ │ ├── static │ │ │ ├── example.html │ │ │ └── stylesheets │ │ │ │ └── main.css │ │ └── templates │ │ │ ├── example.html │ │ │ └── layout.html │ │ ├── 15_headers │ │ └── main.go │ │ ├── 16_rendering_text │ │ └── main.go │ │ ├── 17_JSON │ │ └── main.go │ │ ├── 18_XML │ │ └── main.go │ │ ├── 19_serving_file │ │ ├── images │ │ │ └── foo.png │ │ └── main.go │ │ ├── 20_html_template │ │ ├── main.go │ │ └── templates │ │ │ └── index.html │ │ ├── 21_template_to_string │ │ ├── main.go │ │ └── templates │ │ │ └── index.html │ │ ├── 22_layouts_nested_templates │ │ ├── main.go │ │ └── templates │ │ │ ├── index.html │ │ │ └── layout.html │ │ ├── 23_schmidt_router │ │ └── main.go │ │ ├── 24_schmidt_auth │ │ └── main.go │ │ ├── 25_form │ │ ├── main.go │ │ └── templates │ │ │ ├── confirmation.html │ │ │ └── index.html │ │ ├── 26_form_validate │ │ ├── main.go │ │ └── templates │ │ │ ├── confirmation.html │ │ │ └── index.html │ │ ├── 27_form_email │ │ ├── main.go │ │ └── templates │ │ │ ├── confirmation.html │ │ │ └── index.html │ │ └── 28_cookie │ │ ├── flash.go │ │ └── main.go │ └── 04 │ ├── 01_form │ ├── 01_form_inputs │ │ ├── login.gtpl │ │ └── main.go │ └── 02_url_encoding │ │ └── main.go │ ├── 02_validation │ ├── 01_form_validation │ │ ├── login.gtpl │ │ └── main.go │ ├── 02_validate_number │ │ ├── login.gtpl │ │ └── main.go │ ├── 03_validate_email │ │ ├── login.gtpl │ │ └── main.go │ ├── 04_validate_select │ │ ├── login.gtpl │ │ └── main.go │ ├── 05_validate_radio_buttons │ │ ├── login.gtpl │ │ └── main.go │ └── 06_validate_checkboxes │ │ ├── login.gtpl │ │ └── main.go │ ├── 03_xss │ ├── index.gtpl │ └── main.go │ └── 04_duplicate_submission │ └── 01 │ ├── login.gtpl │ └── main.go └── xx_misc ├── renamer ├── read_dir.go ├── read_dir_show_index.go └── rename_dir.go ├── saturday └── pointers.go ├── simple └── hello.go ├── uuid └── uuid.go └── youtube-embed └── embed.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/.gitignore -------------------------------------------------------------------------------- /sp15/00_hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_hello/hello.go -------------------------------------------------------------------------------- /sp15/00_hello/hello_reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_hello/hello_reverse.go -------------------------------------------------------------------------------- /sp15/00_hello/stringutil/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_hello/stringutil/reverse.go -------------------------------------------------------------------------------- /sp15/00_math/average.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_math/average.go -------------------------------------------------------------------------------- /sp15/00_math/sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_math/sum.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/.gitattributes -------------------------------------------------------------------------------- /sp15/00_student_code/corey/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/.gitignore -------------------------------------------------------------------------------- /sp15/00_student_code/corey/2-11_assign/2-11_assign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/2-11_assign/2-11_assign.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/2-11_assign/diff_url_app/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/2-11_assign/diff_url_app/app.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/corey/2-11_assign/diff_url_app/diff_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/2-11_assign/diff_url_app/diff_url.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/2-18_assign/2-18_assign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/2-18_assign/2-18_assign.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/2-23_assign/2-23_assign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/2-23_assign/2-23_assign.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/2-23_assign/slice_methods/slice_methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/2-23_assign/slice_methods/slice_methods.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/2-4_assign/2-4_assign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/2-4_assign/2-4_assign.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/2-9_assign/2-9_assign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/2-9_assign/2-9_assign.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-11_quiz/3-11_quiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-11_quiz/3-11_quiz.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/FormLetter/Alex_Taylor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/FormLetter/Alex_Taylor.txt -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/FormLetter/Brandy_Dihel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/FormLetter/Brandy_Dihel.txt -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/FormLetter/FormLetter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/FormLetter/FormLetter.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/FormLetter/James_Bengtson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/FormLetter/James_Bengtson.txt -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/FormLetter/Megan_Newkirk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/FormLetter/Megan_Newkirk.txt -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/FormLetter/Taylor_Dihel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/FormLetter/Taylor_Dihel.txt -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/CharacterPDF/Cleric.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/CharacterPDF/Cleric.pdf -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/CharacterPDF/Fighter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/CharacterPDF/Fighter.pdf -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/CharacterPDF/Rogue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/CharacterPDF/Rogue.pdf -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/CharacterPDF/Wizard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/CharacterPDF/Wizard.pdf -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/Pictures/Cleric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/Pictures/Cleric.jpg -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/Pictures/Fighter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/Pictures/Fighter.jpg -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/Pictures/Rogue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/Pictures/Rogue.jpg -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/Pictures/Wizard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/Pictures/Wizard.jpg -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/Pictures/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/Pictures/favicon.ico -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/app.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/index.css -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/index.html -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-16_assign/StaticPage/website.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-16_assign/StaticPage/website.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-18_assign/FormPage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-18_assign/FormPage.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-18_assign/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-18_assign/app.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-18_assign/assets/guest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-18_assign/assets/guest.html -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-18_assign/assets/layout.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: Verdana, sans-serif; 3 | } 4 | -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-18_assign/assets/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-18_assign/assets/layout.html -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-18_assign/assets/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-18_assign/assets/master.html -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-18_assign/assets/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-18_assign/assets/root.html -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-23_assign/GoogleAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-23_assign/GoogleAPI.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-23_assign/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-23_assign/app.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-23_assign/assets/apiQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-23_assign/assets/apiQuery.html -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-23_assign/assets/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-23_assign/assets/results.html -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-23_assign/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-23_assign/assets/style.css -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter 10/sleep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter 10/sleep.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter 4/length.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter 4/length.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter 4/temperature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter 4/temperature.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter 5/even3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter 5/even3.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter 5/fizz3buzz5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter 5/fizz3buzz5.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter 6/smallest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter 6/smallest.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter 7/fib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter 7/fib.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter 7/greatest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter 7/greatest.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter 7/half.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter 7/half.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter 7/oddgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter 7/oddgen.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter 8/swap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter 8/swap.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter 9/perimeter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter 9/perimeter.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter11/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter11/main.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter11/min_max/min_max.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter11/min_max/min_max.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter12/min_max/min_max.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter12/min_max/min_max.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/3-2_assign/Chapter12/min_max/min_max_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/3-2_assign/Chapter12/min_max/min_max_test.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/4-6_assign/BulletinBoard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/4-6_assign/BulletinBoard.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/4-6_assign/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/4-6_assign/app.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/corey/4-6_assign/assets/board.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/4-6_assign/assets/board.html -------------------------------------------------------------------------------- /sp15/00_student_code/corey/4-6_assign/assets/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/4-6_assign/assets/edit.html -------------------------------------------------------------------------------- /sp15/00_student_code/corey/4-6_assign/assets/entrance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/4-6_assign/assets/entrance.html -------------------------------------------------------------------------------- /sp15/00_student_code/corey/4-6_assign/assets/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/4-6_assign/assets/post.html -------------------------------------------------------------------------------- /sp15/00_student_code/corey/4-6_assign/assets/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/4-6_assign/assets/view.html -------------------------------------------------------------------------------- /sp15/00_student_code/corey/4-6_assign/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/4-6_assign/data.txt -------------------------------------------------------------------------------- /sp15/00_student_code/corey/4-6_assign/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/4-6_assign/index.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/corey/hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/hello/hello.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/myapp/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/myapp/app.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/corey/myapp/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/myapp/hello.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/practice/practice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/practice/practice.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/quiz1/quiz1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/quiz1/quiz1.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/quiz2/quiz2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/quiz2/quiz2.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/quiz3/quiz3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/quiz3/quiz3.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/stringutil/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/stringutil/reverse.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/stringutil/reverse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/corey/stringutil/reverse_test.go -------------------------------------------------------------------------------- /sp15/00_student_code/corey/test.txt: -------------------------------------------------------------------------------- 1 | test 2 -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/.gitignore -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch10_p2_sleepByChan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/ch10_p2_sleepByChan.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch11_p4_MinMax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/ch11_p4_MinMax.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch13/ch13_everything.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/ch13/ch13_everything.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch13/test.txt: -------------------------------------------------------------------------------- 1 | Lorem ipsum -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch13/testDir/testFile1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch5_p1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/ch5_p1.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch5_p2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/ch5_p2.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch6_p2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/ch6_p2.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch7_p2_halving.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/ch7_p2_halving.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch7_p3_findVariadicLarge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/ch7_p3_findVariadicLarge.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch7_p4_makeOddGenerator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/ch7_p4_makeOddGenerator.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch7_p5_fibonacci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/ch7_p5_fibonacci.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch8_p5_swapByPtr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/ch8_p5_swapByPtr.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/ch9_p3_shapePerimeterInterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/ch9_p3_shapePerimeterInterface.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/fToC.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/fToC.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/feetToMeters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/feetToMeters.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/golang_math/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/golang_math/math.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/golang-homework/golang_math/math_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/golang-homework/golang_math/math_test.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/gowiki/ANewPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/gowiki/ANewPage.txt -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/gowiki/dogs.txt: -------------------------------------------------------------------------------- 1 | Woof! -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/gowiki/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/gowiki/edit.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/gowiki/gowiki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/gowiki/gowiki.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/gowiki/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/gowiki/view.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/misc/geoweb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/misc/geoweb.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/misc/text-template/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/misc/text-template/main.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/playground/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/playground/app.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/playground/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/playground/main.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/samples/class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/samples/class.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/samples/geoweb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/samples/geoweb.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/samples/main1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/samples/main1.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/samples/main2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/samples/main2.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/serve pages/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/serve pages/app.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/serve pages/src.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/serve pages/src.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/shayhowe/styles-conferences/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/shayhowe/styles-conferences/index.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/shayhowe/styles-conferences/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/shayhowe/styles-conferences/register.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/shayhowe/styles-conferences/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/shayhowe/styles-conferences/schedule.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/shayhowe/styles-conferences/speakers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/shayhowe/styles-conferences/speakers.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/shayhowe/styles-conferences/venue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/shayhowe/styles-conferences/venue.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/tmmath/average.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/tmmath/average.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/tmmath/sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/tmmath/sum.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/types,pointers,structs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/types,pointers,structs/main.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/types,pointers,structs/main2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/types,pointers,structs/main2.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/types,pointers,structs/main3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/types,pointers,structs/main3.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/types,pointers,structs/main4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/types,pointers,structs/main4.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/types,pointers,structs/main5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/types,pointers,structs/main5.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/types,pointers,structs/main6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/types,pointers,structs/main6.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/form-simple/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/form-simple/app.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/form-simple/form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/form-simple/form.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/form-simple/templates/prompt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/form-simple/templates/prompt.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/form-simple/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/form-simple/templates/result.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/google-api-1/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/google-api-1/app.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/google-api-1/config/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/google-api-1/config/readme.txt -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/google-api-1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/google-api-1/main.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/google-api-1/stylesheets/goview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/google-api-1/stylesheets/goview.css -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/google-api-1/templates/prompt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/google-api-1/templates/prompt.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/google-api-1/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/google-api-1/templates/result.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/social_news/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/social_news/app.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/social_news/config/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/social_news/config/readme.txt -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/social_news/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/social_news/main.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/social_news/public/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/social_news/public/assets/images/favicon.ico -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/social_news/public/templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/social_news/public/templates/_base.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/social_news/public/templates/_base_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/social_news/public/templates/_base_edit.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/social_news/public/templates/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/social_news/public/templates/create.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/social_news/public/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/social_news/public/templates/edit.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/social_news/public/templates/storylist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/social_news/public/templates/storylist.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/social_news/public/templates/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/social_news/public/templates/update.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/social_news/webstructs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/social_news/webstructs.go -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/static site/app.yaml -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/static site/grunt/Gruntfile.js -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/css_reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/static site/grunt/css_reset.css -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-autoprefixer/node_modules/autoprefixer-core/node_modules/postcss/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/node_modules/glob/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | test/a/ 3 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/node_modules/glob/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/node_modules/minimatch/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/node_modules/minimatch/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/test/fixtures/expand/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/test/fixtures/expand/css/baz.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/test/fixtures/expand/css/qux.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/test/fixtures/expand/deep/deep.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/test/fixtures/expand/deep/deeper/deeper.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/test/fixtures/expand/deep/deeper/deepest/deepest.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/test/fixtures/expand/js/bar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/globule/test/fixtures/expand/js/foo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/tiny-lr-fork/.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/tiny-lr-fork/node_modules/noptify/.npmignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/tiny-lr-fork/node_modules/noptify/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/tiny-lr-fork/node_modules/noptify/test/fixtures/a.js: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/tiny-lr-fork/node_modules/noptify/test/fixtures/b.js: -------------------------------------------------------------------------------- 1 | b 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/tiny-lr-fork/node_modules/qs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt-contrib-watch/node_modules/tiny-lr-fork/node_modules/qs/test/browser/qs.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/async/.npmignore: -------------------------------------------------------------------------------- 1 | deps 2 | dist 3 | test 4 | nodelint.cfg -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/coffee-script/CNAME: -------------------------------------------------------------------------------- 1 | coffeescript.org -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/eventemitter2/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/eventemitter2'); 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/exit/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/findup-sync/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/findup-sync/node_modules/glob/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | test/a/ 3 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/findup-sync/node_modules/glob/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/findup-sync/node_modules/glob/node_modules/minimatch/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/findup-sync/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/findup-sync/test/fixtures/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/findup-sync/test/fixtures/a/b/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/findup-sync/test/fixtures/a/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/findup-sync/test/fixtures/aaa.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/getobject/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/glob/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | test/a/ 3 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/glob/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/grunt-legacy-log/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/grunt-legacy-log/node_modules/underscore.string/libpeerconnection.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/grunt-legacy-util/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/grunt-legacy-util/test/fixtures/exec.cmd: -------------------------------------------------------------------------------- 1 | @echo done 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/grunt-legacy-util/test/fixtures/exec.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "done" 3 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/iconv-lite/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *~ 3 | *sublime-* 4 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/js-yaml/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/js-yaml.js'); 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/argparse'); 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | dist 3 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/libpeerconnection.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/minimatch/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/minimatch/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/node_modules/grunt/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/grunt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/static site/grunt/package.json -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/public/assets/build/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/static site/public/assets/build/main.css -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/public/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/static site/public/assets/images/favicon.ico -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/public/assets/images/kara1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/static site/public/assets/images/kara1.jpg -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/static site/public/index.html -------------------------------------------------------------------------------- /sp15/00_student_code/shawn_b/websites/static site/static1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/00_student_code/shawn_b/websites/static site/static1.go -------------------------------------------------------------------------------- /sp15/01_samples/.idea/.name: -------------------------------------------------------------------------------- 1 | 01_samples -------------------------------------------------------------------------------- /sp15/01_samples/.idea/01_samples.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/.idea/01_samples.iml -------------------------------------------------------------------------------- /sp15/01_samples/.idea/libraries/GOPATH__01_samples_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/.idea/libraries/GOPATH__01_samples_.xml -------------------------------------------------------------------------------- /sp15/01_samples/.idea/libraries/Go_SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/.idea/libraries/Go_SDK.xml -------------------------------------------------------------------------------- /sp15/01_samples/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/.idea/misc.xml -------------------------------------------------------------------------------- /sp15/01_samples/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/.idea/modules.xml -------------------------------------------------------------------------------- /sp15/01_samples/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/.idea/vcs.xml -------------------------------------------------------------------------------- /sp15/01_samples/00_READ_ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/00_READ_ME.txt -------------------------------------------------------------------------------- /sp15/01_samples/01_declare_variable_Print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/01_declare_variable_Print.go -------------------------------------------------------------------------------- /sp15/01_samples/02_declare_variable_Println.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/02_declare_variable_Println.go -------------------------------------------------------------------------------- /sp15/01_samples/03_declare_many_at_once.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/03_declare_many_at_once.go -------------------------------------------------------------------------------- /sp15/01_samples/04_init_many_at_once.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/04_init_many_at_once.go -------------------------------------------------------------------------------- /sp15/01_samples/05_infer_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/05_infer_type.go -------------------------------------------------------------------------------- /sp15/01_samples/06_infer_mixed_up_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/06_infer_mixed_up_types.go -------------------------------------------------------------------------------- /sp15/01_samples/07_init_shorthand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/07_init_shorthand.go -------------------------------------------------------------------------------- /sp15/01_samples/08_POINTERS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/08_POINTERS.go -------------------------------------------------------------------------------- /sp15/01_samples/09_asterik_switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/09_asterik_switch.go -------------------------------------------------------------------------------- /sp15/01_samples/10_pass_by_reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/10_pass_by_reference.go -------------------------------------------------------------------------------- /sp15/01_samples/11_TYPES.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/11_TYPES.go -------------------------------------------------------------------------------- /sp15/01_samples/12_STRUCTS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/12_STRUCTS.go -------------------------------------------------------------------------------- /sp15/01_samples/13_explicitly_pass_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/13_explicitly_pass_args.go -------------------------------------------------------------------------------- /sp15/01_samples/14_dot_notation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/14_dot_notation.go -------------------------------------------------------------------------------- /sp15/01_samples/15_CONSTANTS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/15_CONSTANTS.go -------------------------------------------------------------------------------- /sp15/01_samples/16_IOTA.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/16_IOTA.go -------------------------------------------------------------------------------- /sp15/01_samples/17_iota_on_own.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/17_iota_on_own.go -------------------------------------------------------------------------------- /sp15/01_samples/18_iota_shorthand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/18_iota_shorthand.go -------------------------------------------------------------------------------- /sp15/01_samples/19_FUNCTIONS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/19_FUNCTIONS.go -------------------------------------------------------------------------------- /sp15/01_samples/20_functions_multiple_structs_and_calls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/20_functions_multiple_structs_and_calls.go -------------------------------------------------------------------------------- /sp15/01_samples/21_returns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/21_returns.go -------------------------------------------------------------------------------- /sp15/01_samples/22_multiple_returns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/22_multiple_returns.go -------------------------------------------------------------------------------- /sp15/01_samples/23_escaped_characters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/23_escaped_characters.go -------------------------------------------------------------------------------- /sp15/01_samples/24_multiple_returns_mas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/24_multiple_returns_mas.go -------------------------------------------------------------------------------- /sp15/01_samples/25_unused_return_is_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/25_unused_return_is_error.go -------------------------------------------------------------------------------- /sp15/01_samples/26_ignore_unused_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/26_ignore_unused_variable.go -------------------------------------------------------------------------------- /sp15/01_samples/27_unused_variable_is_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/27_unused_variable_is_error.go -------------------------------------------------------------------------------- /sp15/01_samples/28_naming_return_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/28_naming_return_value.go -------------------------------------------------------------------------------- /sp15/01_samples/29_VARIADIC_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/29_VARIADIC_functions.go -------------------------------------------------------------------------------- /sp15/01_samples/30_ERROR_variadic_must_be_last_parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/30_ERROR_variadic_must_be_last_parameter.go -------------------------------------------------------------------------------- /sp15/01_samples/31_ERROR_only_one_variadic_per_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/31_ERROR_only_one_variadic_per_function.go -------------------------------------------------------------------------------- /sp15/01_samples/32_len.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/32_len.go -------------------------------------------------------------------------------- /sp15/01_samples/33_FUNCTION_TYPES.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/33_FUNCTION_TYPES.go -------------------------------------------------------------------------------- /sp15/01_samples/34_functions_declared_as_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/34_functions_declared_as_types.go -------------------------------------------------------------------------------- /sp15/01_samples/35_funcs_that_return_funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/35_funcs_that_return_funcs.go -------------------------------------------------------------------------------- /sp15/01_samples/35_wrong_way.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/35_wrong_way.go -------------------------------------------------------------------------------- /sp15/01_samples/36_CONDITIONALS_if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/36_CONDITIONALS_if.go -------------------------------------------------------------------------------- /sp15/01_samples/37_if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/37_if.go -------------------------------------------------------------------------------- /sp15/01_samples/38_if_variable_scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/38_if_variable_scope.go -------------------------------------------------------------------------------- /sp15/01_samples/39_if_else.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/39_if_else.go -------------------------------------------------------------------------------- /sp15/01_samples/40_switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/40_switch.go -------------------------------------------------------------------------------- /sp15/01_samples/41_switch_fall_through.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/41_switch_fall_through.go -------------------------------------------------------------------------------- /sp15/01_samples/42_switch_multiple_evals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/42_switch_multiple_evals.go -------------------------------------------------------------------------------- /sp15/01_samples/43_switch_expression_not_needed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/43_switch_expression_not_needed.go -------------------------------------------------------------------------------- /sp15/01_samples/44_switching_on_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/44_switching_on_type.go -------------------------------------------------------------------------------- /sp15/01_samples/45_LOOP_for.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/45_LOOP_for.go -------------------------------------------------------------------------------- /sp15/01_samples/46_loop_for_condition_while-ish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/46_loop_for_condition_while-ish.go -------------------------------------------------------------------------------- /sp15/01_samples/47_loop_infinite_listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/47_loop_infinite_listener.go -------------------------------------------------------------------------------- /sp15/01_samples/48_loop_break.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/48_loop_break.go -------------------------------------------------------------------------------- /sp15/01_samples/49_loop_continue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/49_loop_continue.go -------------------------------------------------------------------------------- /sp15/01_samples/50_loop_range_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/50_loop_range_slice.go -------------------------------------------------------------------------------- /sp15/01_samples/51_loop_range_slice_mas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/51_loop_range_slice_mas.go -------------------------------------------------------------------------------- /sp15/01_samples/52_loop_range_slice_of_structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/52_loop_range_slice_of_structs.go -------------------------------------------------------------------------------- /sp15/01_samples/53_loop_range_slice_of_structs_mas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/53_loop_range_slice_of_structs_mas.go -------------------------------------------------------------------------------- /sp15/01_samples/54_MAPS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/54_MAPS.go -------------------------------------------------------------------------------- /sp15/01_samples/55_maps_insert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/55_maps_insert.go -------------------------------------------------------------------------------- /sp15/01_samples/56_maps_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/56_maps_update.go -------------------------------------------------------------------------------- /sp15/01_samples/57_maps_delete_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/57_maps_delete_entry.go -------------------------------------------------------------------------------- /sp15/01_samples/58_maps_loop_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/58_maps_loop_range.go -------------------------------------------------------------------------------- /sp15/01_samples/59_maps_long_way.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/59_maps_long_way.go -------------------------------------------------------------------------------- /sp15/01_samples/60_SLICES.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/60_SLICES.go -------------------------------------------------------------------------------- /sp15/01_samples/61_slices_mas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/61_slices_mas.go -------------------------------------------------------------------------------- /sp15/01_samples/62_slices_weird_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/62_slices_weird_error.go -------------------------------------------------------------------------------- /sp15/01_samples/63_slices_slicing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/63_slices_slicing.go -------------------------------------------------------------------------------- /sp15/01_samples/64_SLICING_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/64_SLICING_string.go -------------------------------------------------------------------------------- /sp15/01_samples/65_slices_long_way.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/65_slices_long_way.go -------------------------------------------------------------------------------- /sp15/01_samples/66_slices_long_way_strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/66_slices_long_way_strings.go -------------------------------------------------------------------------------- /sp15/01_samples/67_slices_append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/67_slices_append.go -------------------------------------------------------------------------------- /sp15/01_samples/68_slices_exploring_capacity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/68_slices_exploring_capacity.go -------------------------------------------------------------------------------- /sp15/01_samples/69_slices_append_slice_to_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/69_slices_append_slice_to_slice.go -------------------------------------------------------------------------------- /sp15/01_samples/70_slices_append_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/70_slices_append_string.go -------------------------------------------------------------------------------- /sp15/01_samples/71_slices_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/71_slices_delete.go -------------------------------------------------------------------------------- /sp15/01_samples/72_PACKAGES.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/72_PACKAGES.go -------------------------------------------------------------------------------- /sp15/01_samples/73_packages_average.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/73_packages_average.go -------------------------------------------------------------------------------- /sp15/01_samples/74_packages_aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/74_packages_aliases.go -------------------------------------------------------------------------------- /sp15/01_samples/75_packages_grouped_imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/75_packages_grouped_imports.go -------------------------------------------------------------------------------- /sp15/01_samples/76_packages_math-package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/76_packages_math-package.go -------------------------------------------------------------------------------- /sp15/01_samples/77_packages_same_names_imported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/77_packages_same_names_imported.go -------------------------------------------------------------------------------- /sp15/01_samples/78_METHODS_type_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/78_METHODS_type_struct.go -------------------------------------------------------------------------------- /sp15/01_samples/79_methods_type_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/79_methods_type_string.go -------------------------------------------------------------------------------- /sp15/01_samples/80_methods_type_string_mas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/80_methods_type_string_mas.go -------------------------------------------------------------------------------- /sp15/01_samples/81_methods_with_returns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/81_methods_with_returns.go -------------------------------------------------------------------------------- /sp15/01_samples/82_methods_type_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/82_methods_type_int.go -------------------------------------------------------------------------------- /sp15/01_samples/83_methods_type_int_mas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/83_methods_type_int_mas.go -------------------------------------------------------------------------------- /sp15/01_samples/84_methods_pointers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/84_methods_pointers.go -------------------------------------------------------------------------------- /sp15/01_samples/84_methods_pointers_MAS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/84_methods_pointers_MAS.go -------------------------------------------------------------------------------- /sp15/01_samples/85_methods_interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/85_methods_interfaces.go -------------------------------------------------------------------------------- /sp15/01_samples/86_methods_empty_interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/86_methods_empty_interfaces.go -------------------------------------------------------------------------------- /sp15/01_samples/87_CONCURRENCY_none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/87_CONCURRENCY_none.go -------------------------------------------------------------------------------- /sp15/01_samples/88_concurrency_just_go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/88_concurrency_just_go.go -------------------------------------------------------------------------------- /sp15/01_samples/89_concurrency_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/89_concurrency_channel.go -------------------------------------------------------------------------------- /sp15/01_samples/xx_87_CONCURRENCY_none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/xx_87_CONCURRENCY_none.go -------------------------------------------------------------------------------- /sp15/01_samples/xx_88_concurrency_just_go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/xx_88_concurrency_just_go.go -------------------------------------------------------------------------------- /sp15/01_samples/xx_89_concurrency_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/01_samples/xx_89_concurrency_channel.go -------------------------------------------------------------------------------- /sp15/02_golang-book/00_READ_ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/00_READ_ME.txt -------------------------------------------------------------------------------- /sp15/02_golang-book/01_chp02_Println.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/01_chp02_Println.go -------------------------------------------------------------------------------- /sp15/02_golang-book/02_chp02_DOCS_Println.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/02_chp02_DOCS_Println.go -------------------------------------------------------------------------------- /sp15/02_golang-book/03_chp02_Println_returns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/03_chp02_Println_returns.go -------------------------------------------------------------------------------- /sp15/02_golang-book/04_chp02_Println_multiple_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/04_chp02_Println_multiple_params.go -------------------------------------------------------------------------------- /sp15/02_golang-book/05_chp02_Println_multiple_param_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/05_chp02_Println_multiple_param_types.go -------------------------------------------------------------------------------- /sp15/02_golang-book/06_chp03_TYPES_integers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/06_chp03_TYPES_integers.go -------------------------------------------------------------------------------- /sp15/02_golang-book/07_chp03_types_floating_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/07_chp03_types_floating_point.go -------------------------------------------------------------------------------- /sp15/02_golang-book/08_chp03_types_strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/08_chp03_types_strings.go -------------------------------------------------------------------------------- /sp15/02_golang-book/09_chp03_types_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/09_chp03_types_bool.go -------------------------------------------------------------------------------- /sp15/02_golang-book/10_chp04_VARIABLES.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/10_chp04_VARIABLES.go -------------------------------------------------------------------------------- /sp15/02_golang-book/11_chp04_variables_constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/11_chp04_variables_constants.go -------------------------------------------------------------------------------- /sp15/02_golang-book/12_chp04_SCANF.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/12_chp04_SCANF.go -------------------------------------------------------------------------------- /sp15/02_golang-book/13_chp05_LOOP.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/13_chp05_LOOP.go -------------------------------------------------------------------------------- /sp15/02_golang-book/14_chp05_SWITCH.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/14_chp05_SWITCH.go -------------------------------------------------------------------------------- /sp15/02_golang-book/15_chp06_ARRAYS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/15_chp06_ARRAYS.go -------------------------------------------------------------------------------- /sp15/02_golang-book/16_chp06_SLICES.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/16_chp06_SLICES.go -------------------------------------------------------------------------------- /sp15/02_golang-book/17_chp06_slices_append..go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/17_chp06_slices_append..go -------------------------------------------------------------------------------- /sp15/02_golang-book/18_chp06_slices_copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/18_chp06_slices_copy.go -------------------------------------------------------------------------------- /sp15/02_golang-book/19_chp06_MAPS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/19_chp06_MAPS.go -------------------------------------------------------------------------------- /sp15/02_golang-book/20_chp06_maps_arrays_slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/20_chp06_maps_arrays_slices.go -------------------------------------------------------------------------------- /sp15/02_golang-book/21_chp06_maps_length_dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/21_chp06_maps_length_dynamic.go -------------------------------------------------------------------------------- /sp15/02_golang-book/22_chp06_maps_printing_map_elements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/22_chp06_maps_printing_map_elements.go -------------------------------------------------------------------------------- /sp15/02_golang-book/23_chp06_maps_map_in_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/23_chp06_maps_map_in_map.go -------------------------------------------------------------------------------- /sp15/02_golang-book/24_chp07_FUNCTIONS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/24_chp07_FUNCTIONS.go -------------------------------------------------------------------------------- /sp15/02_golang-book/25_chp07_functions_multiple_returns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/25_chp07_functions_multiple_returns.go -------------------------------------------------------------------------------- /sp15/02_golang-book/26_chp07_functions_variadic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/26_chp07_functions_variadic.go -------------------------------------------------------------------------------- /sp15/02_golang-book/27_chp07_functions_funcs-in-funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/27_chp07_functions_funcs-in-funcs.go -------------------------------------------------------------------------------- /sp15/02_golang-book/28_chp07_functions_closure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/28_chp07_functions_closure.go -------------------------------------------------------------------------------- /sp15/02_golang-book/28_chp07_functions_closure_GOBYEXAMPLE.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/28_chp07_functions_closure_GOBYEXAMPLE.go -------------------------------------------------------------------------------- /sp15/02_golang-book/29_chp07_functions_funcs-return-funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/29_chp07_functions_funcs-return-funcs.go -------------------------------------------------------------------------------- /sp15/02_golang-book/30_chp07_functions_recursion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/30_chp07_functions_recursion.go -------------------------------------------------------------------------------- /sp15/02_golang-book/31_chp07_functions_defer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/31_chp07_functions_defer.go -------------------------------------------------------------------------------- /sp15/02_golang-book/32_chp07_functions_panic-recover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/32_chp07_functions_panic-recover.go -------------------------------------------------------------------------------- /sp15/02_golang-book/33_chp08_POINTERS_pass_by_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/33_chp08_POINTERS_pass_by_value.go -------------------------------------------------------------------------------- /sp15/02_golang-book/34_chp08_pointers_pass_by_reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/34_chp08_pointers_pass_by_reference.go -------------------------------------------------------------------------------- /sp15/02_golang-book/35_chp09_STRUCTS_passing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/35_chp09_STRUCTS_passing.go -------------------------------------------------------------------------------- /sp15/02_golang-book/36_chp09_structs_methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/36_chp09_structs_methods.go -------------------------------------------------------------------------------- /sp15/02_golang-book/37_chp09_structs_embedded_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/37_chp09_structs_embedded_types.go -------------------------------------------------------------------------------- /sp15/02_golang-book/38_chp09_structs_interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/38_chp09_structs_interfaces.go -------------------------------------------------------------------------------- /sp15/02_golang-book/39_chp10_CONCURRENCY_step_01.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/39_chp10_CONCURRENCY_step_01.go -------------------------------------------------------------------------------- /sp15/02_golang-book/40_chp10_CONCURRENCY_step_02.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/40_chp10_CONCURRENCY_step_02.go -------------------------------------------------------------------------------- /sp15/02_golang-book/41_chp10_CONCURRENCY_step_03.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/41_chp10_CONCURRENCY_step_03.go -------------------------------------------------------------------------------- /sp15/02_golang-book/42_chp10_CONCURRENCY_channels_01.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/42_chp10_CONCURRENCY_channels_01.go -------------------------------------------------------------------------------- /sp15/02_golang-book/43_chp10_CONCURRENCY_channels_02.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/43_chp10_CONCURRENCY_channels_02.go -------------------------------------------------------------------------------- /sp15/02_golang-book/44_chp10_CONCURRENCY_channels_select_01.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/44_chp10_CONCURRENCY_channels_select_01.go -------------------------------------------------------------------------------- /sp15/02_golang-book/45_chp10_CONCURRENCY_channels_select_02.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/45_chp10_CONCURRENCY_channels_select_02.go -------------------------------------------------------------------------------- /sp15/02_golang-book/46_chp10_CONCURRENCY_channels_select_03.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/46_chp10_CONCURRENCY_channels_select_03.go -------------------------------------------------------------------------------- /sp15/02_golang-book/47_chp10_CONCURRENCY_channels_buffered.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/47_chp10_CONCURRENCY_channels_buffered.go -------------------------------------------------------------------------------- /sp15/02_golang-book/48_chp11_PACKAGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/48_chp11_PACKAGES.txt -------------------------------------------------------------------------------- /sp15/02_golang-book/49_chp11_PACKAGES_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/49_chp11_PACKAGES_doc.txt -------------------------------------------------------------------------------- /sp15/02_golang-book/50_chp12_TESTING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/50_chp12_TESTING.txt -------------------------------------------------------------------------------- /sp15/02_golang-book/51_chp13_CORE_PACKAGES_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/51_chp13_CORE_PACKAGES_string.go -------------------------------------------------------------------------------- /sp15/02_golang-book/52_chp13_CORE_PACKAGES_strings_byte_slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/52_chp13_CORE_PACKAGES_strings_byte_slices.go -------------------------------------------------------------------------------- /sp15/02_golang-book/52_chp13_CORE_PACKAGES_strings_byte_slices_mas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/52_chp13_CORE_PACKAGES_strings_byte_slices_mas.go -------------------------------------------------------------------------------- /sp15/02_golang-book/53_chp13_CORE_PACKAGES_read_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/53_chp13_CORE_PACKAGES_read_file.go -------------------------------------------------------------------------------- /sp15/02_golang-book/54_chp13_CORE_PACKAGES_create_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/54_chp13_CORE_PACKAGES_create_file.go -------------------------------------------------------------------------------- /sp15/02_golang-book/55_chp13_CORE_PACKAGES_dir_contents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/55_chp13_CORE_PACKAGES_dir_contents.go -------------------------------------------------------------------------------- /sp15/02_golang-book/56_chp13_CORE_PACKAGES_dir_contents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/56_chp13_CORE_PACKAGES_dir_contents.go -------------------------------------------------------------------------------- /sp15/02_golang-book/57_chp13_CORE_PACKAGES_dir_contents_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/57_chp13_CORE_PACKAGES_dir_contents_all.go -------------------------------------------------------------------------------- /sp15/02_golang-book/58_chp13_CORE_PACKAGES_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/58_chp13_CORE_PACKAGES_errors.go -------------------------------------------------------------------------------- /sp15/02_golang-book/59_chp13_CORE_PACKAGES_sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/59_chp13_CORE_PACKAGES_sort.go -------------------------------------------------------------------------------- /sp15/02_golang-book/60_chp13_CORE_PACKAGES_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/60_chp13_CORE_PACKAGES_hash.go -------------------------------------------------------------------------------- /sp15/02_golang-book/61_chp13_CORE_PACKAGES_crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/61_chp13_CORE_PACKAGES_crypto.go -------------------------------------------------------------------------------- /sp15/02_golang-book/62_chp13_CORE_PACKAGES_TCP.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/62_chp13_CORE_PACKAGES_TCP.go -------------------------------------------------------------------------------- /sp15/02_golang-book/63_chp13_CORE_PACKAGES_HTTP.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/63_chp13_CORE_PACKAGES_HTTP.go -------------------------------------------------------------------------------- /sp15/02_golang-book/64_chp13_CORE_PACKAGES_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/64_chp13_CORE_PACKAGES_flags.go -------------------------------------------------------------------------------- /sp15/02_golang-book/PACKAGES/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/PACKAGES/main.go -------------------------------------------------------------------------------- /sp15/02_golang-book/PACKAGES/math/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/PACKAGES/math/math.go -------------------------------------------------------------------------------- /sp15/02_golang-book/PACKAGES/math/math_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/PACKAGES/math/math_test.go -------------------------------------------------------------------------------- /sp15/02_golang-book/test.txt: -------------------------------------------------------------------------------- 1 | this was read from a file - yay!!! 2 | -------------------------------------------------------------------------------- /sp15/02_golang-book/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/test1.txt -------------------------------------------------------------------------------- /sp15/02_golang-book/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/test2.txt -------------------------------------------------------------------------------- /sp15/02_golang-book/testCreated.txt: -------------------------------------------------------------------------------- 1 | This file was created in a program!!! -------------------------------------------------------------------------------- /sp15/02_golang-book/testReadFrom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/02_golang-book/testReadFrom.txt -------------------------------------------------------------------------------- /sp15/03_gowiki/00_READ_ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/00_READ_ME.txt -------------------------------------------------------------------------------- /sp15/03_gowiki/01_wiki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/01_wiki.go -------------------------------------------------------------------------------- /sp15/03_gowiki/02_wiki_with_notes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/02_wiki_with_notes.go -------------------------------------------------------------------------------- /sp15/03_gowiki/03_01_net-http_package_simple_web_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/03_01_net-http_package_simple_web_server.go -------------------------------------------------------------------------------- /sp15/03_gowiki/03_02_net-http_package_simple_web_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/03_02_net-http_package_simple_web_server.go -------------------------------------------------------------------------------- /sp15/03_gowiki/04_net-http_package_web_server_multiple_pages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/04_net-http_package_web_server_multiple_pages.go -------------------------------------------------------------------------------- /sp15/03_gowiki/05_01_net-http_package_simple_web_server_Printf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/05_01_net-http_package_simple_web_server_Printf.go -------------------------------------------------------------------------------- /sp15/03_gowiki/05_02_net-http_package_simple_web_server_Printf_NOTES.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/05_02_net-http_package_simple_web_server_Printf_NOTES.go -------------------------------------------------------------------------------- /sp15/03_gowiki/05_03_r-url_explored.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/05_03_r-url_explored.go -------------------------------------------------------------------------------- /sp15/03_gowiki/05_04_r-url_explored_mas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/05_04_r-url_explored_mas.go -------------------------------------------------------------------------------- /sp15/03_gowiki/06_01_string_formatting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/06_01_string_formatting.go -------------------------------------------------------------------------------- /sp15/03_gowiki/06_02_string_formatting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/06_02_string_formatting.go -------------------------------------------------------------------------------- /sp15/03_gowiki/07_net-http_package_load_page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/07_net-http_package_load_page.go -------------------------------------------------------------------------------- /sp15/03_gowiki/08_net-http_package_web_server_multiple_pages_MAS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/08_net-http_package_web_server_multiple_pages_MAS.go -------------------------------------------------------------------------------- /sp15/03_gowiki/10_01_html-template_package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/10_01_html-template_package.go -------------------------------------------------------------------------------- /sp15/03_gowiki/10_02_html-template_package_NOTES.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/10_02_html-template_package_NOTES.go -------------------------------------------------------------------------------- /sp15/03_gowiki/10_03_TEXT-TEMPLATE_simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/10_03_TEXT-TEMPLATE_simple.go -------------------------------------------------------------------------------- /sp15/03_gowiki/10_04_TEXT-TEMPLATE_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/10_04_TEXT-TEMPLATE_output.go -------------------------------------------------------------------------------- /sp15/03_gowiki/10_05_TEXT-TEMPLATE_letter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/10_05_TEXT-TEMPLATE_letter.go -------------------------------------------------------------------------------- /sp15/03_gowiki/10_06_TEXT-TEMPLATE_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/10_06_TEXT-TEMPLATE_func.go -------------------------------------------------------------------------------- /sp15/03_gowiki/10_06_TEXT-TEMPLATE_func_NOTES.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/10_06_TEXT-TEMPLATE_func_NOTES.go -------------------------------------------------------------------------------- /sp15/03_gowiki/11_handling_404.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/11_handling_404.go -------------------------------------------------------------------------------- /sp15/03_gowiki/12_saving_pages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/12_saving_pages.go -------------------------------------------------------------------------------- /sp15/03_gowiki/13_error_handling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/13_error_handling.go -------------------------------------------------------------------------------- /sp15/03_gowiki/14_template_caching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/14_template_caching.go -------------------------------------------------------------------------------- /sp15/03_gowiki/15_path_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/15_path_validation.go -------------------------------------------------------------------------------- /sp15/03_gowiki/16_func-literals_closures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/16_func-literals_closures.go -------------------------------------------------------------------------------- /sp15/03_gowiki/TestPage.txt: -------------------------------------------------------------------------------- 1 | This is a sample Page. -------------------------------------------------------------------------------- /sp15/03_gowiki/canine/dog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/canine/dog.txt -------------------------------------------------------------------------------- /sp15/03_gowiki/cat.txt: -------------------------------------------------------------------------------- 1 | I don't like cats 2 | -------------------------------------------------------------------------------- /sp15/03_gowiki/dog.txt: -------------------------------------------------------------------------------- 1 | I like dogs 2 | -------------------------------------------------------------------------------- /sp15/03_gowiki/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/edit.html -------------------------------------------------------------------------------- /sp15/03_gowiki/mouse.txt: -------------------------------------------------------------------------------- 1 | Mice are small 2 | -------------------------------------------------------------------------------- /sp15/03_gowiki/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/view.html -------------------------------------------------------------------------------- /sp15/03_gowiki/xxxx_edit_pages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/03_gowiki/xxxx_edit_pages.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/00_READ_ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/00_READ_ME.txt -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/01_webapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/01_webapp.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/02_webtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/02_webtime.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/03_dosasite/dosasite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/03_dosasite/dosasite.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/03_dosasite/public/images/dosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/03_dosasite/public/images/dosa.jpg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/03_dosasite/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/03_dosasite/public/index.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/03_dosasite/public/index_copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/03_dosasite/public/index_copy.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/03_dosasite/public/stylesheets/dosasite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/03_dosasite/public/stylesheets/dosasite.css -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/04_radon_mitigation/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/04_radon_mitigation/app.yaml -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/04_radon_mitigation/notes-PAGE-SPEED.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/04_radon_mitigation/notes-PAGE-SPEED.txt -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/04_radon_mitigation/public/assets/css/css_reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/04_radon_mitigation/public/assets/css/css_reset.css -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/04_radon_mitigation/public/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/04_radon_mitigation/public/assets/css/main.css -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/04_radon_mitigation/public/assets/images/fam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/04_radon_mitigation/public/assets/images/fam.jpg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/04_radon_mitigation/public/assets/images/fam_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/04_radon_mitigation/public/assets/images/fam_blur.jpg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/04_radon_mitigation/public/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/04_radon_mitigation/public/assets/images/favicon.ico -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/04_radon_mitigation/public/assets/images/radon_house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/04_radon_mitigation/public/assets/images/radon_house.jpg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/04_radon_mitigation/public/assets/images/us_left_web_30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/04_radon_mitigation/public/assets/images/us_left_web_30.jpg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/04_radon_mitigation/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/04_radon_mitigation/public/index.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/04_radon_mitigation/radon_mitigation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/04_radon_mitigation/radon_mitigation.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/README.md: -------------------------------------------------------------------------------- 1 | # CreatingWebsites 2 | CIT 85 Class 3 | -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/app.yaml -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/colors.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/colors.ai -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/favicon.ico -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/dev_fest.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/dev_fest.jpeg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/dev_fest2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/dev_fest2.jpeg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/imgres.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/imgres.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/library.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/library.jpeg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/ray_villalobos.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/ray_villalobos.jpeg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/ray_villalobos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/ray_villalobos.jpg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/speakers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/home/speakers.jpg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/speakers/zeno_rocha.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/images/speakers/zeno_rocha.jpeg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/assets/stylesheets/main.css -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/button.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/floats_in_practice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/floats_in_practice.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/index.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/register.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/schedule.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/speakers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/speakers.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/sponsors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/sponsors.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/public/venue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/public/venue.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/test.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/test_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/test_test.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/05_fcc_web_conf/web_conference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/05_fcc_web_conf/web_conference.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/06_ipweb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/06_ipweb.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/07_stud_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/07_stud_struct.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/08_person.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/08_person.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/09_new_person.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/09_new_person.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/10_wedding_form_letter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/10_wedding_form_letter.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/11_dosasite/dosasite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/11_dosasite/dosasite.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/11_dosasite/public/images/dosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/11_dosasite/public/images/dosa.jpg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/11_dosasite/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/11_dosasite/public/index.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/11_dosasite/public/stylesheets/dosasite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/11_dosasite/public/stylesheets/dosasite.css -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/12_dosasite/dosasite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/12_dosasite/dosasite.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/12_dosasite/public/images/dosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/12_dosasite/public/images/dosa.jpg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/12_dosasite/public/stylesheets/dosasite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/12_dosasite/public/stylesheets/dosasite.css -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/12_dosasite/templates/indexnew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/12_dosasite/templates/indexnew.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/12_dosasite/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/12_dosasite/templates/layout.html -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/13_stringupper/css/upper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/13_stringupper/css/upper.css -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/13_stringupper/stringupper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/13_stringupper/stringupper.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/14_forms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/14_forms.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/15_geoweb/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/15_geoweb/app.yaml -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/15_geoweb/geoweb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/15_geoweb/geoweb.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/15_geoweb/stylesheets/goview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/15_geoweb/stylesheets/goview.css -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/Procfile: -------------------------------------------------------------------------------- 1 | web: webapp 2 | -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/README.md -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/blobstrex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/blobstrex.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/experiment/03_env_variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/experiment/03_env_variables.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/experiment/06_ipweb_query-escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/experiment/06_ipweb_query-escape.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/geoweb_gap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/geoweb_gap.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/getcapital.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/getcapital.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/gomongohq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/gomongohq.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/message.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/mongohqconnect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/mongohqconnect.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/msgmartini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/msgmartini.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/mytext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/mytext.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/mytext.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/mytext.ico -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/photo_with_loc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/photo_with_loc.jpg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/photo_without_loc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/photo_without_loc.jpg -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/server.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/style.css -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/table.css -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/trails.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/trails.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/upperstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/upperstring.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/weather.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/weather.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/weatherui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/weatherui.go -------------------------------------------------------------------------------- /sp15/04_bwpwg-master/webgmail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/04_bwpwg-master/webgmail.go -------------------------------------------------------------------------------- /sp15/05_guestbook/.idea/.name: -------------------------------------------------------------------------------- 1 | 05_guestbook -------------------------------------------------------------------------------- /sp15/05_guestbook/.idea/05_guestbook.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/.idea/05_guestbook.iml -------------------------------------------------------------------------------- /sp15/05_guestbook/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/.idea/misc.xml -------------------------------------------------------------------------------- /sp15/05_guestbook/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/.idea/modules.xml -------------------------------------------------------------------------------- /sp15/05_guestbook/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/.idea/vcs.xml -------------------------------------------------------------------------------- /sp15/05_guestbook/00_READ_ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/00_READ_ME.txt -------------------------------------------------------------------------------- /sp15/05_guestbook/01_hello_world/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/01_hello_world/app.yaml -------------------------------------------------------------------------------- /sp15/05_guestbook/01_hello_world/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/01_hello_world/hello.go -------------------------------------------------------------------------------- /sp15/05_guestbook/02_using_users/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/02_using_users/app.yaml -------------------------------------------------------------------------------- /sp15/05_guestbook/02_using_users/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/02_using_users/hello.go -------------------------------------------------------------------------------- /sp15/05_guestbook/03_handling_forms/.idea/.name: -------------------------------------------------------------------------------- 1 | 03_handling_forms -------------------------------------------------------------------------------- /sp15/05_guestbook/03_handling_forms/.idea/03_handling_forms.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/03_handling_forms/.idea/03_handling_forms.iml -------------------------------------------------------------------------------- /sp15/05_guestbook/03_handling_forms/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/03_handling_forms/.idea/misc.xml -------------------------------------------------------------------------------- /sp15/05_guestbook/03_handling_forms/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/03_handling_forms/.idea/modules.xml -------------------------------------------------------------------------------- /sp15/05_guestbook/03_handling_forms/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/03_handling_forms/.idea/vcs.xml -------------------------------------------------------------------------------- /sp15/05_guestbook/03_handling_forms/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/03_handling_forms/app.yaml -------------------------------------------------------------------------------- /sp15/05_guestbook/03_handling_forms/guestbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/03_handling_forms/guestbook.html -------------------------------------------------------------------------------- /sp15/05_guestbook/03_handling_forms/guestbookform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/03_handling_forms/guestbookform.html -------------------------------------------------------------------------------- /sp15/05_guestbook/03_handling_forms/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/03_handling_forms/hello.go -------------------------------------------------------------------------------- /sp15/05_guestbook/04_using_datastore/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/04_using_datastore/app.yaml -------------------------------------------------------------------------------- /sp15/05_guestbook/04_using_datastore/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/04_using_datastore/hello.go -------------------------------------------------------------------------------- /sp15/05_guestbook/04_using_datastore/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/05_guestbook/04_using_datastore/index.yaml -------------------------------------------------------------------------------- /sp15/06_ps_go_web.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/06_ps_go_web.zip -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/.idea/.name: -------------------------------------------------------------------------------- 1 | 07_mcleod_web_app -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/.idea/07_mcleod_web_app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/.idea/07_mcleod_web_app.iml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/.idea/misc.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/.idea/modules.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/.idea/vcs.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/01_multiple_pages/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/01_multiple_pages/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/01_multiple_pages/guestbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/01_multiple_pages/guestbook.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/01_multiple_pages/guestbookform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/01_multiple_pages/guestbookform.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/01_multiple_pages/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/01_multiple_pages/hello.go -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/02_file_structure/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/02_file_structure/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/02_file_structure/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/02_file_structure/hello.go -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/02_file_structure/templates/guestbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/02_file_structure/templates/guestbook.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/03_exploring_ParseFiles/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/03_exploring_ParseFiles/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/03_exploring_ParseFiles/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/03_exploring_ParseFiles/hello.go -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/04_add_error_checking/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/04_add_error_checking/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/04_add_error_checking/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/04_add_error_checking/hello.go -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/05_exploring_template/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/05_exploring_template/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/05_exploring_template/templates/file1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/05_exploring_template/templates/file1.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/05_exploring_template/templates/partial.html: -------------------------------------------------------------------------------- 1 | Partial!!! {{.}} 2 | -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/06_exploring_user_auth/00_READ_ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/06_exploring_user_auth/00_READ_ME.txt -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/.idea/.name: -------------------------------------------------------------------------------- 1 | myapp -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/.idea/misc.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/.idea/modules.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/.idea/myapp.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/.idea/myapp.iml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/.idea/vcs.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp/hello.go -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/.idea/.name: -------------------------------------------------------------------------------- 1 | myapp -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/.idea/misc.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/.idea/myapp.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/.idea/myapp.iml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/.idea/vcs.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/hello.go -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/index.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/ugh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp02/ugh2.png -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp03/.idea/.name: -------------------------------------------------------------------------------- 1 | myapp03 -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp03/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp03/.idea/misc.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp03/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp03/.idea/vcs.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp03/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp03/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp03/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp03/hello.go -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp03/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/07_static_dirs_files/myapp03/site/index.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/08_access_control/.idea/.name: -------------------------------------------------------------------------------- 1 | 07_access_control -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/08_access_control/.idea/07_access_control.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/08_access_control/.idea/07_access_control.iml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/08_access_control/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/08_access_control/.idea/encodings.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/08_access_control/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/08_access_control/.idea/misc.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/08_access_control/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/08_access_control/.idea/modules.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/08_access_control/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/08_access_control/.idea/vcs.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/08_access_control/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/08_access_control/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/08_access_control/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/08_access_control/server.go -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/08_access_control/site/admin/admin_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/08_access_control/site/admin/admin_panel.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/08_access_control/site/images/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/08_access_control/site/images/three.png -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/08_access_control/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/08_access_control/site/index.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/08_access_control/site/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/08_access_control/site/stylesheets/main.css -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/.name: -------------------------------------------------------------------------------- 1 | 07_access_control -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/07_access_control.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/07_access_control.iml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/encodings.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/misc.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/modules.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/.idea/vcs.xml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/server.go -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/admin/admin_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/admin/admin_panel.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/authorized/user_account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/authorized/user_account.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/images/admin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/images/admin.jpeg -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/images/authorized.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/images/authorized.jpeg -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/images/beach.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/images/beach.jpeg -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/images/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/images/three.png -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/includes/document_bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/includes/document_bottom.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/includes/document_top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/includes/document_top.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/index.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/old_DELETE/guestbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/old_DELETE/guestbook.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/old_DELETE/guestbookform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/old_DELETE/guestbookform.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/old_DELETE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/old_DELETE/index.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/old_DELETE/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/old_DELETE/index2.html -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/old_DELETE/victory.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/old_DELETE/victory.jpeg -------------------------------------------------------------------------------- /sp15/xx_in_process/07_mcleod_web_app/09_blog/site/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/07_mcleod_web_app/09_blog/site/stylesheets/main.css -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/LICENSE -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/README.md -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/cms/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/cms/api.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/cms/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/cms/api_test.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/cms/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/cms/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/cms/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/cms/routes.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/cms/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/cms/session.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/hyperscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/hyperscript.js -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/main.js -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/cms/static/scripts/views.js -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/cms/static/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/cms/static/styles/main.css -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/cms/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/cms/users.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/api.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/routes.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/session.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/scripts/main.js -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/scripts/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/scripts/views.js -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/static/styles/main.css -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/appengine/toddModifiedCMS/users.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/asm/sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/asm/sum.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/asm/sum_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/asm/sum_amd64.s -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/asm/sum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/asm/sum_test.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/cgo/gcc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/cgo/gcc/build.sh -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/cgo/gcc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/cgo/gcc/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/cgo/gcc/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/cgo/gcc/sum.c -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/cgo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/cgo/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/mq/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/mq/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/mq/mq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/mq/mq.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/namedpipes/rot13/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/namedpipes/rot13/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/namedpipes/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/namedpipes/run.sh -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/net/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/net/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/pipes/rot13/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/pipes/rot13/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/pipes/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/pipes/run.sh -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/shm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/shm/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/shm/sem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/shm/sem.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/shm/shm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/shm/shm.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/swig/gsl/gsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/swig/gsl/gsl.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/swig/gsl/gsl.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/swig/gsl/gsl.swig -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/swig/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/swig/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/swig/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | go run main.go 3 | -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/syso/c/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/syso/c/sum.c -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/syso/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/syso/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/syso/sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/syso/sum.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/syso/sum_amd64.Conflict.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/syso/sum_amd64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/syso/sum_amd64.S -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/syso/sum_amd64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/syso/sum_amd64.c -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/syso/sum_amd64.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/syso/sum_amd64.syso -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/syso/sum_amd64_src.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/syso/sum_amd64_src.S -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/syso/syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/syso/syso -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/sysv_mq/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/sysv_mq/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/sysv_mq/python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/sysv_mq/python/main.py -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/unixsocket/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/unixsocket/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/integration/unixsocket/python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/integration/unixsocket/python/main.py -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/trie/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/trie/trie.go -------------------------------------------------------------------------------- /sp15/xx_in_process/08_caleb/trie/trie_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/08_caleb/trie/trie_test.go -------------------------------------------------------------------------------- /sp15/xx_in_process/09_from_scratch_webapp/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/09_from_scratch_webapp/api.go -------------------------------------------------------------------------------- /sp15/xx_in_process/09_from_scratch_webapp/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/09_from_scratch_webapp/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/09_from_scratch_webapp/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/09_from_scratch_webapp/form.html -------------------------------------------------------------------------------- /sp15/xx_in_process/09_from_scratch_webapp/formhandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/09_from_scratch_webapp/formhandler.html -------------------------------------------------------------------------------- /sp15/xx_in_process/09_from_scratch_webapp/link1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/09_from_scratch_webapp/link1.html -------------------------------------------------------------------------------- /sp15/xx_in_process/10_URL/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/10_URL/api.go -------------------------------------------------------------------------------- /sp15/xx_in_process/10_URL/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/10_URL/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/10_URL/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/10_URL/form.html -------------------------------------------------------------------------------- /sp15/xx_in_process/10_URL/formhandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/10_URL/formhandler.html -------------------------------------------------------------------------------- /sp15/xx_in_process/10_URL/link1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/10_URL/link1.html -------------------------------------------------------------------------------- /sp15/xx_in_process/10_URL/link2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/10_URL/link2.html -------------------------------------------------------------------------------- /sp15/xx_in_process/10_URL/link3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/10_URL/link3.html -------------------------------------------------------------------------------- /sp15/xx_in_process/10_URL/link4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/10_URL/link4.html -------------------------------------------------------------------------------- /sp15/xx_in_process/11_cookie/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/11_cookie/api.go -------------------------------------------------------------------------------- /sp15/xx_in_process/11_cookie/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/11_cookie/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/11_cookie/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/11_cookie/form.html -------------------------------------------------------------------------------- /sp15/xx_in_process/11_cookie/formhandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/11_cookie/formhandler.html -------------------------------------------------------------------------------- /sp15/xx_in_process/11_cookie/link1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/11_cookie/link1.html -------------------------------------------------------------------------------- /sp15/xx_in_process/11_cookie/link2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/11_cookie/link2.html -------------------------------------------------------------------------------- /sp15/xx_in_process/12_step_by_step/00_guestbook/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/12_step_by_step/00_guestbook/app.go -------------------------------------------------------------------------------- /sp15/xx_in_process/12_step_by_step/00_guestbook/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/12_step_by_step/00_guestbook/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/12_step_by_step/00_guestbook/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/12_step_by_step/00_guestbook/index.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/12_step_by_step/01_datastore_WR_entity/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/12_step_by_step/01_datastore_WR_entity/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/12_step_by_step/01_datastore_WR_entity/ds_WR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/12_step_by_step/01_datastore_WR_entity/ds_WR.go -------------------------------------------------------------------------------- /sp15/xx_in_process/12_step_by_step/01_datastore_WR_entity/temp_datastore_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/12_step_by_step/01_datastore_WR_entity/temp_datastore_code.txt -------------------------------------------------------------------------------- /sp15/xx_in_process/12_step_by_step/02_ancestor/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/12_step_by_step/02_ancestor/app.yaml -------------------------------------------------------------------------------- /sp15/xx_in_process/12_step_by_step/02_ancestor/ds_ancestor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/12_step_by_step/02_ancestor/ds_ancestor.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/02/06/01_interface/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/02/06/01_interface/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/02/06/02_interface/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/02/06/02_interface/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/02/06/03_interface/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/02/06/03_interface/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/02/06/04_assertion/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/02/06/04_assertion/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/02/06/05_assertion/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/02/06/05_assertion/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/02/06/06_performance/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/02/06/06_performance/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/02/06/07_reflection/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/02/06/07_reflection/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/02/07/01_concurrency/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/02/07/01_concurrency/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/02/07/02_channels/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/02/07/02_channels/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/02/07/03_buffered/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/02/07/03_buffered/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/01_server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/01_server/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/02_edwards_01/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/02_edwards_01/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/03_edwards_02/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/03_edwards_02/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/04_edwards_03/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/04_edwards_03/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/05_edwards_04/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/05_edwards_04/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/06_edwards_05/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/06_edwards_05/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/07_edwards_06/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/07_edwards_06/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/08_mcleod_01/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/08_mcleod_01/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/09_edwards_07/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/09_edwards_07/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/10_edwards_08/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/10_edwards_08/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/11_edwards_serve_static/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/11_edwards_serve_static/app.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/11_edwards_serve_static/static/stylesheets/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #c0392b; 3 | } -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/12_edwards_serve_static/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/12_edwards_serve_static/app.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/12_edwards_serve_static/static/stylesheets/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #c0392b; 3 | } -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/13_edwards_serve_static/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/13_edwards_serve_static/app.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/13_edwards_serve_static/static/stylesheets/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #c0392b; 3 | } -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/14_edwards_serve_static/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/14_edwards_serve_static/app.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/14_edwards_serve_static/static/stylesheets/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #c0392b; 3 | } -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/15_headers/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/15_headers/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/16_rendering_text/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/16_rendering_text/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/17_JSON/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/17_JSON/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/18_XML/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/18_XML/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/19_serving_file/images/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/19_serving_file/images/foo.png -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/19_serving_file/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/19_serving_file/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/20_html_template/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/20_html_template/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/20_html_template/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/20_html_template/templates/index.html -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/21_template_to_string/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/21_template_to_string/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/22_layouts_nested_templates/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/22_layouts_nested_templates/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/23_schmidt_router/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/23_schmidt_router/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/24_schmidt_auth/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/24_schmidt_auth/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/25_form/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/25_form/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/25_form/templates/confirmation.html: -------------------------------------------------------------------------------- 1 |

Confirmation

2 |

Your message has been sent!

-------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/25_form/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/25_form/templates/index.html -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/26_form_validate/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/26_form_validate/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/26_form_validate/templates/confirmation.html: -------------------------------------------------------------------------------- 1 |

Confirmation

2 |

Your message has been sent!

-------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/26_form_validate/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/26_form_validate/templates/index.html -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/27_form_email/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/27_form_email/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/27_form_email/templates/confirmation.html: -------------------------------------------------------------------------------- 1 |

Confirmation

2 |

Your message has been sent!

-------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/27_form_email/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/27_form_email/templates/index.html -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/28_cookie/flash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/28_cookie/flash.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/03/02/28_cookie/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/03/02/28_cookie/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/04/01_form/01_form_inputs/login.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/04/01_form/01_form_inputs/login.gtpl -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/04/01_form/01_form_inputs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/04/01_form/01_form_inputs/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/04/01_form/02_url_encoding/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/04/01_form/02_url_encoding/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/04/02_validation/03_validate_email/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/04/02_validation/03_validate_email/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/04/03_xss/index.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/04/03_xss/index.gtpl -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/04/03_xss/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/04/03_xss/main.go -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/04/04_duplicate_submission/01/login.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/04/04_duplicate_submission/01/login.gtpl -------------------------------------------------------------------------------- /sp15/xx_in_process/13_go_web_shanghai/04/04_duplicate_submission/01/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_in_process/13_go_web_shanghai/04/04_duplicate_submission/01/main.go -------------------------------------------------------------------------------- /sp15/xx_misc/renamer/read_dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_misc/renamer/read_dir.go -------------------------------------------------------------------------------- /sp15/xx_misc/renamer/read_dir_show_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_misc/renamer/read_dir_show_index.go -------------------------------------------------------------------------------- /sp15/xx_misc/renamer/rename_dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_misc/renamer/rename_dir.go -------------------------------------------------------------------------------- /sp15/xx_misc/saturday/pointers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_misc/saturday/pointers.go -------------------------------------------------------------------------------- /sp15/xx_misc/simple/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_misc/simple/hello.go -------------------------------------------------------------------------------- /sp15/xx_misc/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_misc/uuid/uuid.go -------------------------------------------------------------------------------- /sp15/xx_misc/youtube-embed/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoesToEleven/csuf/HEAD/sp15/xx_misc/youtube-embed/embed.html --------------------------------------------------------------------------------