├── .clang-format ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .net ├── HelloWorld.sln ├── README.md ├── hello │ ├── Program.cs │ └── hello.csproj ├── logic │ ├── .vs │ │ └── logic │ │ │ └── v15 │ │ │ └── .suo │ ├── HelloWorld.cs │ └── logic.csproj ├── tests │ ├── UnitTest1.cs │ └── tests.csproj └── web │ ├── Program.cs │ ├── Startup.cs │ └── web.csproj ├── AI └── GeneticAlgorithms │ └── Knapsack │ ├── items.yaml │ ├── knapsack.rb │ └── main.rb ├── C# ├── LinkLabelDemo │ ├── LinkLabelDemo.sln │ ├── LinkLabelDemo.suo │ └── LinkLabelDemo │ │ ├── LinkLabelDemo.cs │ │ ├── LinkLabelDemo.csproj │ │ └── LinkLabelDemo.csproj.user ├── MessageButtonLib │ ├── MessageButtonLib.sln │ ├── MessageButtonLib.suo │ ├── MessageButtonLib │ │ ├── MessageButtonLib.cs │ │ ├── MessageButtonLib.csproj │ │ └── MessageButtonLib.csproj.user │ └── ProgramUsingLibrary │ │ ├── ProgramUsingLibrary.cs │ │ └── ProgramUsingLibrary.csproj └── WhichMonitorWPF │ ├── .gitignore │ ├── WhichMonitorWPF.sln │ └── WhichMonitorWPF │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── WhichMonitorWPF.csproj │ └── Win32.cs ├── C++ ├── .clang_complete ├── .gitignore ├── .vscode │ ├── launch.json │ └── tasks.json ├── BufferedIO │ ├── .gitignore │ ├── Makefile │ ├── io_test.cc │ ├── run.sh │ └── test_runner.sh ├── Makefile ├── README.md ├── VC │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── hello.cc │ ├── instruction_set.cc │ └── intrinsics.cc ├── access_specifiers.cc ├── array.cc ├── atomics.cc ├── attributes.cc ├── auto_decltype.cc ├── bigsort.cc ├── casting.cc ├── chrono.cc ├── concepts.cc ├── condition.cc ├── const.cc ├── containers │ ├── .gitignore │ ├── Makefile │ ├── circular_buffer.hpp │ ├── circular_buffer_driver.cc │ ├── hash_table.hpp │ ├── hash_table_driver.cc │ ├── list.hpp │ ├── list_driver.cc │ ├── queue.hpp │ ├── queue_driver.cc │ ├── stack.hpp │ ├── stack_driver.cc │ ├── vector.hpp │ ├── vector_driver.cc │ └── vector_resize_stress.cc ├── copying.cc ├── crash.cc ├── ctor-init-list.cc ├── ctor.cc ├── destructors.cc ├── function.cc ├── glog.cc ├── graph.cc ├── hash.cc ├── heap.h ├── heap_main.cc ├── ifstream.cc ├── inheritance.cc ├── initialization.cc ├── io.cc ├── iterator.cc ├── list.cc ├── literals.cc ├── max_subarray.cc ├── namespaces.cc ├── numeric_limits.cc ├── ofstream_test.cc ├── operators.cc ├── override.cc ├── permuation.cc ├── placement_new.cc ├── playground.cc ├── pointers.cc ├── power.cc ├── prime_factorization.cc ├── primes.cc ├── priority_q.cc ├── random.cc ├── references.cc ├── rod_cutting.cc ├── scoped_enums.cc ├── sort.h ├── sort_main.cc ├── stack_protector.cc ├── strings.cc ├── switch.cc ├── system_error.cc ├── template_convertible.cc ├── template_curiously_recurring_template_pattern.cc ├── template_forward_decl.cc ├── template_meta_programming.cc ├── template_specialization.cc ├── templates.cc ├── templates1 │ ├── Makefile │ ├── main.cc │ ├── templates.cc │ ├── templates.h │ └── templates2.cc ├── typeid.cc ├── unordered_map.cc ├── vector.cc └── virtual.cc ├── C ├── .gitignore ├── Makefile ├── README.md ├── binary-tree.c ├── btree │ ├── .gitignore │ ├── Makefile │ └── btree.c ├── const-structs.c ├── const.c ├── fixed-size-arrays-other-module.c ├── fixed-size-arrays.c ├── flexible-array-member.c ├── gcov │ ├── .gitignore │ ├── Makefile │ └── test.c ├── gprof │ ├── .gitignore │ ├── Makefile │ └── test.c ├── initialization.c ├── libcurl-test.c ├── linker │ ├── Makefile │ ├── foo.c │ └── main.c ├── setjmp.c ├── simd │ ├── .gitignore │ ├── Makefile │ └── loop.c ├── thread-local.c └── time │ ├── Makefile │ ├── localtime.c │ └── utc_time.c ├── D ├── The D Programming Language Book Examples │ ├── book_1_2_us_to_metric.d │ ├── book_1_3_fun.d │ ├── book_1_4_3_lambda_v1.d │ ├── book_1_4_3_lambda_v2.d │ ├── book_1_4_assoc.d │ ├── book_1_5_struct.d │ ├── book_1_hello.d │ └── hamlet.txt └── hello.d ├── DSP └── BookExamples │ ├── 6-convolution.c │ ├── 6-convolution.h │ ├── Makefile │ └── main.c ├── Erlang ├── .gitignore ├── ErlangProgrammingBook │ ├── boolean.erl │ ├── db.erl │ ├── db_lists.erl │ ├── echo.erl │ ├── examples.erl │ ├── exercises3.erl │ ├── expression_parser.erl │ ├── frequency.erl │ ├── frequency_runner.erl │ ├── indexing.erl │ ├── juliuscaesar.txt │ ├── list_comprehensions.erl │ ├── my_db.erl │ ├── phone_fsm.erl │ ├── process_ring.erl │ ├── recursive.erl │ ├── shapes.erl │ ├── test.txt │ └── text_processing.erl ├── ets_test.erl ├── mancala │ ├── README.md │ ├── ai.erl │ ├── board.erl │ ├── debug_logging.hrl │ ├── mancala.erl │ └── moves.erl ├── programming_erlang │ ├── Makefile │ ├── afile_client.erl │ ├── afile_runner.erl │ ├── afile_server.erl │ ├── geometry.erl │ ├── hello.erl │ ├── kvs.erl │ ├── lib_misc.erl │ └── shopping.erl ├── records.erl ├── tut1.erl ├── tut2.erl ├── tut3.erl ├── tut4.erl ├── tut5.erl ├── tut6.erl └── tut8.erl ├── GoogleCloudPlatform ├── CloudBuild │ ├── PersistentVolume │ │ ├── build.sh │ │ └── cloudbuild.yaml │ └── Substitutions │ │ ├── build.sh │ │ └── cloudbuild.yaml ├── CloudFunctions │ └── go │ │ ├── .gcloudignore │ │ ├── README.md │ │ ├── cleanup.sh │ │ ├── common.sh │ │ ├── deploy.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── logging.go │ │ ├── logging_test.go │ │ └── setup.sh ├── CloudRun │ └── hello │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build.sh │ │ ├── cleanup.sh │ │ ├── cloudbuild.yaml │ │ ├── deploy.sh │ │ ├── local-build-and-run.sh │ │ └── src │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go └── GoogleAppEngine │ ├── datastore │ ├── app.yaml │ └── helloworld.py │ ├── forms │ ├── app.yaml │ └── helloworld.py │ ├── go │ └── myapp │ │ ├── app.yaml │ │ └── hello │ │ └── hello.go │ ├── helloworld │ ├── app.yaml │ └── helloworld.py │ ├── helloworld_webapp │ ├── app.yaml │ └── helloworld.py │ ├── helloworld_webapp_users │ ├── app.yaml │ └── helloworld.py │ ├── static_content │ ├── app.yaml │ ├── helloworld.py │ ├── index.html │ └── stylesheets │ │ └── main.css │ └── templates │ ├── app.yaml │ ├── helloworld.py │ └── index.html ├── ImageMagick └── Composition │ ├── Background.jpg │ ├── generateCommands.rb │ ├── overlays │ ├── T1.png │ ├── T2.png │ ├── T3.png │ └── T4.png │ └── run.sh ├── Java ├── .gitignore ├── README ├── build.xml └── src │ ├── HelloWorld.java │ └── Shapes.java ├── LICENSE ├── Lucene ├── .gitignore ├── HelloLucene.java ├── lucene-core-3.3.0.jar └── run.sh ├── Mac ├── 15MinuteTextEditor │ ├── 15MinuteTextEditor.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── 15MinuteTextEditor_Prefix.pch │ ├── English.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── MainMenu~.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── MyDocument.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── MyDocument~.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MyDocument.h │ ├── MyDocument.m │ └── main.m ├── AVFoundation │ ├── Animation │ │ ├── Animation.xcodeproj │ │ │ └── project.pbxproj │ │ └── Animation │ │ │ ├── Animation-Prefix.pch │ │ │ └── main.m │ ├── Mosaic │ │ ├── Mosaic.xcodeproj │ │ │ └── project.pbxproj │ │ └── Mosaic │ │ │ ├── Mosaic-Prefix.pch │ │ │ └── main.m │ ├── SimplePlayer │ │ ├── Classes │ │ │ ├── Player.h │ │ │ ├── Player.m │ │ │ ├── SimplePlayerAppDelegate.h │ │ │ ├── SimplePlayerAppDelegate.m │ │ │ ├── SimplePlayerViewController.h │ │ │ └── SimplePlayerViewController.m │ │ ├── MainWindow.xib │ │ ├── SimplePlayer-Info.plist │ │ ├── SimplePlayer.xcodeproj │ │ │ ├── doug.mode1v3 │ │ │ ├── doug.pbxuser │ │ │ ├── doug.perspectivev3 │ │ │ └── project.pbxproj │ │ ├── SimplePlayerViewController.xib │ │ ├── SimplePlayer_Prefix.pch │ │ └── main.m │ └── VideoCapture │ │ ├── VideoCapture.xcodeproj │ │ └── project.pbxproj │ │ └── VideoCapture │ │ ├── VideoCapture-Prefix.pch │ │ └── main.m ├── AlgorithmsAndDataStructures │ ├── AlgorithmsAndDataStructures.1 │ ├── AlgorithmsAndDataStructures.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── BinarySearchTreeArray.h │ ├── BinarySearchTreeArray.m │ ├── Comparable.h │ ├── Graph.h │ ├── Graph.m │ ├── HashTable.h │ ├── HashTable.m │ ├── HeapSort.h │ ├── HeapSort.m │ ├── InsertionSort.h │ ├── InsertionSort.m │ ├── LinkedList.h │ ├── LinkedList.m │ ├── Queue.h │ ├── Queue.m │ ├── QuickSort.h │ ├── QuickSort.m │ ├── Set.h │ ├── Set.m │ └── main.m ├── Bindings │ ├── BindingsExample1 │ │ ├── BindingsExample1.xcodeproj │ │ │ ├── TemplateIcon.icns │ │ │ ├── doug.mode1v3 │ │ │ ├── doug.pbxuser │ │ │ └── project.pbxproj │ │ ├── BindingsExample1_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── Info.plist │ │ ├── Temperature.h │ │ ├── Temperature.m │ │ ├── main.m │ │ └── version.plist │ └── BindingsExample2 │ │ ├── BindingsExample2.xcodeproj │ │ ├── TemplateIcon.icns │ │ ├── doug.mode1v3 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ │ ├── BindingsExample2_Prefix.pch │ │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ │ ├── Info.plist │ │ ├── main.m │ │ └── version.plist ├── ChildWindowCustomCell │ ├── ChildWindow-Info.plist │ ├── ChildWindow.xcodeproj │ │ └── project.pbxproj │ ├── ChildWindowAppDelegate.h │ ├── ChildWindowAppDelegate.m │ ├── ChildWindow_Prefix.pch │ ├── DXSearch.xib │ ├── DXSearchController.h │ ├── DXSearchController.m │ ├── DXSearchResultCell.h │ ├── DXSearchResultCell.m │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ ├── MyImage.png │ ├── MyImage2.png │ └── main.m ├── CocoaAppUsingBindings │ ├── CocoaAppUsingBindings.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── CocoaAppUsingBindings_Prefix.pch │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── MainMenu~.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── Multiplier.h │ ├── Multiplier.m │ └── main.m ├── CocoaBinaryData │ ├── CocoaBinaryData.1 │ ├── CocoaBinaryData.m │ ├── CocoaBinaryData.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ └── CocoaBinaryData_Prefix.pch ├── CocoaDrawing │ ├── ApplicationDelegate.h │ ├── ApplicationDelegate.m │ ├── CocoaDrawing1.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── CocoaDrawing1_Prefix.pch │ ├── DrawController.h │ ├── DrawController.m │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── MainMenu~.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MultiplicationValueTransformer.h │ ├── MultiplicationValueTransformer.m │ ├── MyCustomView.h │ ├── MyCustomView.m │ ├── MyOpenGLView.h │ ├── MyOpenGLView.m │ ├── Photo 10.jpg │ └── main.m ├── CocoaMenus │ ├── CocoaMenus.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── CocoaMenus_Prefix.pch │ ├── English.lproj │ │ ├── ExtraMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── ExtraMenu~.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── InfoPlist.strings │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── MainMenu~.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MenuAdder.h │ ├── MenuAdder.m │ └── main.m ├── CocoaThreadTest │ ├── BackgroundThread.h │ ├── BackgroundThread.m │ ├── Testing Grounds.1 │ ├── Testing Grounds.m │ ├── Testing Grounds.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ └── Testing Grounds_Prefix.pch ├── CocoaTimer │ ├── CocoaTimer.xcodeproj │ │ └── project.pbxproj │ ├── CocoaTimer_Prefix.pch │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MyTimerView.h │ ├── MyTimerView.m │ └── main.m ├── CommonCrypto │ ├── aes │ │ ├── aes.xcodeproj │ │ │ └── project.pbxproj │ │ └── main.c │ └── sha │ │ ├── main.c │ │ └── sha.xcodeproj │ │ ├── doug.mode1v3 │ │ ├── doug.pbxuser │ │ └── project.pbxproj ├── CoreAnimation │ ├── AnimatedPoster │ │ ├── AnimatedPoster-Info.plist │ │ ├── AnimatedPoster.xcodeproj │ │ │ ├── doug.mode1v3 │ │ │ ├── doug.pbxuser │ │ │ └── project.pbxproj │ │ ├── AnimatedPosterAppDelegate.h │ │ ├── AnimatedPosterAppDelegate.m │ │ ├── AnimatedPoster_Prefix.pch │ │ ├── CenteredSublayersLayer.h │ │ ├── CenteredSublayersLayer.m │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── PosterCarouselView.h │ │ ├── PosterCarouselView.m │ │ ├── PosterLayer.h │ │ ├── PosterLayer.m │ │ └── main.m │ ├── CoreAnimationblending │ │ ├── CoreAnimationblending.xcodeproj │ │ │ └── project.pbxproj │ │ └── CoreAnimationblending │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── CoreAnimationblending-Info.plist │ │ │ ├── CoreAnimationblending-Prefix.pch │ │ │ ├── background.jpg │ │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ │ └── main.m │ ├── Flash Beep Prototype │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── Flash Beep Prototype.xcodeproj │ │ │ ├── doug.mode1v3 │ │ │ ├── doug.pbxuser │ │ │ └── project.pbxproj │ │ ├── Flash_Beep_Prototype-Info.plist │ │ ├── Flash_Beep_PrototypeAppDelegate.h │ │ ├── Flash_Beep_PrototypeAppDelegate.m │ │ ├── Flash_Beep_Prototype_Prefix.pch │ │ ├── RFBView.h │ │ ├── RFBView.m │ │ ├── Screen.png │ │ └── main.m │ └── Flash Cards.pages ├── CoreAudio │ ├── PitchDetector │ │ ├── AppController.h │ │ ├── AppController.m │ │ ├── DominantFrequencyDetector.h │ │ ├── DominantFrequencyDetector.m │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── designable.nib │ │ │ │ └── keyedobjects.nib │ │ ├── Info.plist │ │ ├── PitchDetector.xcodeproj │ │ │ └── project.pbxproj │ │ ├── PitchDetector_Prefix.pch │ │ └── main.m │ ├── PitchPlayer │ │ ├── AppController.h │ │ ├── AppController.m │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── designable.nib │ │ │ │ └── keyedobjects.nib │ │ ├── Equations.gcx │ │ ├── Info.plist │ │ ├── PitchGenerator.h │ │ ├── PitchGenerator.m │ │ ├── PitchPlayer.xcodeproj │ │ │ └── project.pbxproj │ │ ├── PitchPlayer_Prefix.pch │ │ └── main.m │ └── TremoloUnit │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ ├── TremoloUnit.cpp │ │ ├── TremoloUnit.exp │ │ ├── TremoloUnit.h │ │ ├── TremoloUnit.r │ │ ├── TremoloUnit.xcodeproj │ │ └── project.pbxproj │ │ ├── TremoloUnitVersion.h │ │ └── version.plist ├── CoreData │ ├── CDCLI │ │ ├── CDCLI.1 │ │ ├── CDCLI.m │ │ ├── CDCLI.xcodeproj │ │ │ ├── TemplateIcon.icns │ │ │ └── project.pbxproj │ │ ├── CDCLI_Prefix.pch │ │ ├── Run.h │ │ └── Run.m │ ├── CocoaAndModel │ │ ├── CocoaAndModel.xcodeproj │ │ │ └── project.pbxproj │ │ ├── CocoaAndModel_AppDelegate.h │ │ ├── CocoaAndModel_AppDelegate.m │ │ ├── CocoaAndModel_DataModel.xcdatamodel │ │ │ ├── elements │ │ │ └── layout │ │ ├── CocoaAndModel_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── Info.plist │ │ ├── main.m │ │ └── version.plist │ ├── DepartmentAndEmployees │ │ ├── DepartmentAndEmployees-Info.plist │ │ ├── DepartmentAndEmployees.xcodeproj │ │ │ └── project.pbxproj │ │ ├── DepartmentAndEmployees_Prefix.pch │ │ ├── Employee.h │ │ ├── Employee.m │ │ ├── English.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ ├── MainMenu.xib │ │ │ └── MyDocument.xib │ │ ├── Importer │ │ │ ├── GetMetadataForFile.c │ │ │ ├── Importer Read Me.txt │ │ │ ├── Importer-Info.plist │ │ │ └── main.c │ │ ├── MyDocument.h │ │ ├── MyDocument.m │ │ ├── MyDocument.xcdatamodel │ │ │ ├── elements │ │ │ └── layout │ │ └── main.m │ └── ModelExample │ │ ├── ModelExample.m │ │ ├── ModelExample.xcodeproj │ │ ├── TemplateIcon.icns │ │ └── project.pbxproj │ │ ├── ModelExample_Prefix.pch │ │ └── MyDataModel.xcdatamodel │ │ ├── elements │ │ └── layout ├── CoreGraphics │ └── CompositeIntoBitmap │ │ ├── CompositeIntoBitmap.xcodeproj │ │ └── project.pbxproj │ │ └── CompositeIntoBitmap │ │ ├── CompositeIntoBitmap-Prefix.pch │ │ └── main.m ├── CredTest2 │ ├── CredTest2.1 │ ├── CredTest2.m │ ├── CredTest2.xcodeproj │ │ ├── TemplateIcon.icns │ │ └── project.pbxproj │ └── CredTest2_Prefix.pch ├── DataStoreComparison │ ├── DataStoreComparison.1 │ ├── DataStoreComparison.m │ ├── DataStoreComparison.xcodeproj │ │ ├── TemplateIcon.icns │ │ └── project.pbxproj │ └── DataStoreComparison_Prefix.pch ├── DateFormatter │ ├── DateFormatter-1.moved-aside │ │ └── DateFormatter.xcodeproj │ │ │ └── project.pbxproj │ ├── DateFormatter.1 │ ├── DateFormatter.m │ ├── DateFormatter.xcodeproj │ │ ├── TemplateIcon.icns │ │ └── project.pbxproj │ ├── DateFormatter_Prefix.pch │ └── main.c ├── DeliciousSearchPrototype │ ├── ChildWindow-Info.plist │ ├── ChildWindowAppDelegate.h │ ├── ChildWindowAppDelegate.m │ ├── ChildWindow_Prefix.pch │ ├── DXSearch.xib │ ├── DXSearchController.h │ ├── DXSearchController.m │ ├── DXSearchResultCell.h │ ├── DXSearchResultCell.m │ ├── DXSearchResultTableView.h │ ├── DXSearchResultTableView.m │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ ├── MyImage.png │ ├── MyImage2.png │ ├── SearchPrototype.xcodeproj │ │ └── project.pbxproj │ └── main.m ├── DialogSheet │ ├── DialogSheet.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── DialogSheet_Prefix.pch │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── MainMenu~.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MySheeter.h │ ├── MySheeter.m │ ├── MyWindowController.h │ ├── MyWindowController.m │ ├── SheetNIB.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── keyedobjects.nib │ ├── SheetNIB~.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── keyedobjects.nib │ └── main.m ├── DistributedNotifications │ ├── DistributedNotifications.1 │ ├── DistributedNotifications.m │ ├── DistributedNotifications.xcodeproj │ │ ├── doug.mode1v3 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ └── DistributedNotifications_Prefix.pch ├── DocumentBasedArchitecture │ └── Inventory1 │ │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ │ ├── Info.plist │ │ ├── Inventory1.xcodeproj │ │ ├── TemplateIcon.icns │ │ └── project.pbxproj │ │ ├── Inventory1_Prefix.pch │ │ ├── InventoryDocument.h │ │ ├── InventoryDocument.m │ │ ├── InventoryEntryWindow.xib │ │ ├── InventoryEntryWindowController.h │ │ ├── InventoryEntryWindowController.m │ │ ├── InventoryListWindow.xib │ │ ├── InventoryListWindowController.h │ │ ├── InventoryListWindowController.m │ │ ├── InventoryRecord.h │ │ ├── InventoryRecord.m │ │ ├── main.m │ │ └── version.plist ├── Drawing │ ├── DrawingFunhouse │ │ ├── DrawingFunhouse.xcodeproj │ │ │ └── project.pbxproj │ │ └── DrawingFunhouse │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Beziers.h │ │ │ ├── Beziers.m │ │ │ ├── DrawingFunhouse-Info.plist │ │ │ ├── DrawingFunhouse-Prefix.pch │ │ │ ├── RandomShit.h │ │ │ ├── RandomShit.m │ │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ │ ├── main.m │ │ │ └── seascape.jpg │ └── Layers │ │ ├── AppController.h │ │ ├── AppController.m │ │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ │ ├── Info.plist │ │ ├── Layers.xcodeproj │ │ ├── TemplateIcon.icns │ │ └── project.pbxproj │ │ ├── Layers_Prefix.pch │ │ ├── MyOpenGLLayer.h │ │ ├── MyOpenGLLayer.m │ │ ├── NSColor+CGColorAdditions.h │ │ ├── NSColor+CGColorAdditions.m │ │ ├── NSColorWell+CGColorAdditions.h │ │ ├── NSColorWell+CGColorAdditions.m │ │ ├── main.m │ │ └── version.plist ├── EmbeddedHeapExperiment │ ├── EmbeddedHeapExperiment.xcodeproj │ │ └── project.pbxproj │ └── EmbeddedHeapExperiment │ │ ├── heap.c │ │ ├── heap.h │ │ └── main.c ├── FastCGITest │ ├── FastCGITest.xcodeproj │ │ └── project.pbxproj │ └── FastCGITest │ │ ├── FastCGITest-Prefix.pch │ │ └── main.m ├── FieldEditor │ ├── AppController.h │ ├── AppController.m │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── FieldEditor.xcodeproj │ │ └── project.pbxproj │ ├── FieldEditor_Prefix.pch │ ├── Info.plist │ └── main.m ├── FlowLayoutView │ ├── AppController.h │ ├── AppController.m │ ├── DRFlowLayoutView.h │ ├── DRFlowLayoutView.m │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── FlowLayoutView.xcodeproj │ │ └── project.pbxproj │ ├── FlowLayoutView_Prefix.pch │ ├── Info.plist │ └── main.m ├── GetFavicon │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── GetFavicon.xcodeproj │ │ ├── doug.mode1v3 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── GetFavicon_Prefix.pch │ ├── Info.plist │ ├── MyAppController.h │ ├── MyAppController.m │ └── main.m ├── GrowlExample │ ├── Growl.framework │ │ ├── Growl │ │ ├── Headers │ │ ├── Resources │ │ └── Versions │ │ │ ├── A │ │ │ ├── Growl │ │ │ ├── Headers │ │ │ │ ├── Growl.h │ │ │ │ ├── GrowlApplicationBridge-Carbon.h │ │ │ │ ├── GrowlApplicationBridge.h │ │ │ │ └── GrowlDefines.h │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ ├── GrowlExample.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── GrowlExample_Prefix.pch │ ├── Icon.icns │ ├── Info.plist │ ├── MainMenu.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── keyedobjects.nib │ ├── MainMenu~.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── keyedobjects.nib │ ├── Notifier.h │ ├── Notifier.m │ ├── WindowHandler.h │ ├── WindowHandler.m │ └── main.m ├── IOKit_Kernel │ ├── HelloIOKit │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── HelloIOKit.cpp │ │ ├── HelloIOKit.h │ │ ├── HelloIOKit.xcodeproj │ │ │ └── project.pbxproj │ │ └── Info.plist │ ├── HelloKernel │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── HelloKernel.c │ │ ├── HelloKernel.xcodeproj │ │ │ └── project.pbxproj │ │ └── Info.plist │ └── USBHIDDriver1 │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ ├── USBHIDDriver1.cpp │ │ ├── USBHIDDriver1.h │ │ ├── USBHIDDriver1.xcodeproj │ │ └── project.pbxproj │ │ └── load.sh ├── IOKit_Userland │ └── usb │ │ ├── BusScan │ │ ├── BusScan.1 │ │ ├── BusScan.xcodeproj │ │ │ ├── doug.mode1v3 │ │ │ ├── doug.pbxuser │ │ │ └── project.pbxproj │ │ └── main.c │ │ └── MouseWatcher │ │ ├── MouseWatcher.1 │ │ ├── MouseWatcher.xcodeproj │ │ └── project.pbxproj │ │ └── main.c ├── JavaScriptCorePlistBridge │ ├── JavaScriptCorePlistBridge.m │ ├── JavaScriptCorePlistBridge.xcodeproj │ │ └── project.pbxproj │ ├── JavaScriptCorePlistBridge_Prefix.pch │ ├── JavaScriptCoreUtils.h │ ├── JavaScriptCoreUtils.m │ ├── JavaScriptRunner.h │ ├── JavaScriptRunner.m │ ├── LogObject.h │ ├── LogObject.m │ ├── MutableDictionary.h │ ├── MutableDictionary.m │ └── example1.js ├── LanguageAndProtocolEvaluation │ ├── Language & Protocol Evaluation.pages │ ├── Results.numbers │ ├── build.sh │ ├── c │ │ └── c-fastcgi │ │ │ ├── README │ │ │ ├── c-fastcgi.xcodeproj │ │ │ ├── doug.mode1v3 │ │ │ ├── doug.pbxuser │ │ │ └── project.pbxproj │ │ │ ├── httpd.conf │ │ │ ├── main.c │ │ │ ├── restart_apache │ │ │ ├── start_apache │ │ │ └── stop_apache │ ├── clients │ │ ├── Test.plist │ │ ├── curl-test.sh │ │ ├── http-client │ │ │ ├── http-client.xcodeproj │ │ │ │ ├── doug.mode1v3 │ │ │ │ ├── doug.pbxuser │ │ │ │ └── project.pbxproj │ │ │ └── main.c │ │ └── sum-test.sh │ ├── pen-0.18.0 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── HOWTO │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── install-sh │ │ ├── mergelogs.1 │ │ ├── mergelogs.c │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── pen.1 │ │ ├── pen.c │ │ ├── pen.spec │ │ ├── penctl.1 │ │ ├── penctl.c │ │ ├── penctl.cgi │ │ ├── penlog.1 │ │ ├── penlog.c │ │ ├── penlogd.1 │ │ ├── penlogd.c │ │ ├── penstats │ │ ├── siag.pem │ │ └── stamp-h.in │ └── ruby │ │ └── http-server │ │ ├── README │ │ ├── Rakefile │ │ ├── app │ │ ├── controllers │ │ │ ├── application.rb │ │ │ └── test_controller.rb │ │ └── helpers │ │ │ ├── application_helper.rb │ │ │ └── test_helper.rb │ │ ├── config │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ └── new_rails_defaults.rb │ │ ├── locales │ │ │ └── en.yml │ │ └── routes.rb │ │ ├── doc │ │ └── README_FOR_APP │ │ ├── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── dispatch.cgi │ │ ├── dispatch.fcgi │ │ ├── dispatch.rb │ │ ├── favicon.ico │ │ ├── images │ │ │ └── rails.png │ │ ├── index.html │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── controls.js │ │ │ ├── dragdrop.js │ │ │ ├── effects.js │ │ │ └── prototype.js │ │ └── robots.txt │ │ ├── script │ │ ├── about │ │ ├── console │ │ ├── dbconsole │ │ ├── destroy │ │ ├── generate │ │ ├── performance │ │ │ ├── benchmarker │ │ │ ├── profiler │ │ │ └── request │ │ ├── plugin │ │ ├── process │ │ │ ├── inspector │ │ │ ├── reaper │ │ │ └── spawner │ │ ├── runner │ │ └── server │ │ ├── start │ │ ├── stop │ │ └── test │ │ ├── functional │ │ └── test_controller_test.rb │ │ ├── performance │ │ └── browsing_test.rb │ │ └── test_helper.rb ├── LicenseKey │ ├── LicenseKey.1 │ ├── LicenseKey.m │ ├── LicenseKey.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── LicenseKey_Prefix.pch │ ├── scripts.tar │ └── scripts │ │ ├── LicenseKey.txt │ │ ├── binary_test │ │ ├── build_c_code.sh │ │ ├── decrypted_key │ │ ├── generate_private.sh │ │ ├── generate_public.sh │ │ ├── make_c_code.ruby │ │ ├── make_license_key.sh │ │ ├── private.pem │ │ ├── public.pem │ │ └── verify_license_key.sh ├── LicensePrototypes │ └── pngsign │ │ ├── Test-License.png │ │ ├── main.c │ │ ├── pngsign.xcodeproj │ │ └── project.pbxproj │ │ └── private.pem ├── MallocZoneTest │ ├── MallocZoneTest.xcodeproj │ │ └── project.pbxproj │ └── MallocZoneTest │ │ ├── MallocZoneTest-Prefix.pch │ │ └── main.m ├── MethodSwizzling │ ├── MethodSwizzling.1 │ ├── MethodSwizzling.m │ ├── MethodSwizzling.xcodeproj │ │ └── project.pbxproj │ └── MethodSwizzling_Prefix.pch ├── MyCocoaClasses │ ├── DXTextLimiterFormatter.h │ └── DXTextLimiterFormatter.m ├── MyTextEditor │ ├── English.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── MainMenu~.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── MyDocument.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── MyDocument~.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MyDocument.h │ ├── MyDocument.m │ ├── MyTextEditor.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── MyTextEditor_Prefix.pch │ └── main.m ├── NSMenusOnTheFly │ ├── AppController.h │ ├── AppController.m │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── NSMenusOnTheFly.xcodeproj │ │ ├── doug.mode1v3 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── NSMenusOnTheFly_Prefix.pch │ └── main.m ├── NSStringTruncation │ ├── NSStringTruncation.1 │ ├── NSStringTruncation.m │ ├── NSStringTruncation.xcodeproj │ │ └── project.pbxproj │ └── NSStringTruncation_Prefix.pch ├── NetworkStateNotification │ ├── NetworkStateNotification.1 │ ├── NetworkStateNotification.xcodeproj │ │ ├── doug.mode1v3 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ └── main.c ├── NiblessCocoaApp │ ├── NiblessCocoaApp-Info.plist │ ├── NiblessCocoaApp.xcodeproj │ │ └── project.pbxproj │ └── main.m ├── NotificationCenterRaceTest │ ├── NotificationCenterRaceTest.xcodeproj │ │ └── project.pbxproj │ └── NotificationCenterRaceTest │ │ ├── NotificationCenterRaceTest-Prefix.pch │ │ └── main.m ├── OffscreenDrawing │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── MainMenu~.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MyView.h │ ├── MyView.m │ ├── OffscreenDrawing.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── OffscreenDrawing_Prefix.pch │ └── main.m ├── OpenAL │ ├── HelloWorld │ │ ├── HelloWorld.xcodeproj │ │ │ └── project.pbxproj │ │ ├── helloworld.wav │ │ └── main.c │ └── Mixing │ │ ├── Mixing.xcodeproj │ │ └── project.pbxproj │ │ ├── gunshot.wav │ │ ├── main.c │ │ ├── meep-meep.wav │ │ └── music.wav ├── OpenCVPlayground │ ├── playground.xcodeproj │ │ └── project.pbxproj │ └── playground │ │ ├── main.cc │ │ ├── main.m │ │ └── playground-Prefix.pch ├── OpenGL │ ├── Antialiasing │ │ ├── Antialiasing.xcodeproj │ │ │ └── project.pbxproj │ │ ├── CustomOpenGLView-Info.plist │ │ ├── CustomOpenGLView.h │ │ ├── CustomOpenGLView.m │ │ ├── CustomOpenGLViewAppDelegate.h │ │ ├── CustomOpenGLViewAppDelegate.m │ │ ├── CustomOpenGLView_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ └── main.m │ ├── BareBonesInC │ │ ├── BareBones.c │ │ ├── BareBones.xcodeproj │ │ │ └── project.pbxproj │ │ └── BareBones_Prefix.pch │ ├── BareBonesInObjC │ │ ├── BareBones.m │ │ ├── BareBonesInObjC.xcodeproj │ │ │ └── project.pbxproj │ │ └── BareBones_Prefix.pch │ ├── CustomOpenGLView │ │ ├── CustomOpenGLView-Info.plist │ │ ├── CustomOpenGLView.h │ │ ├── CustomOpenGLView.m │ │ ├── CustomOpenGLView.xcodeproj │ │ │ └── project.pbxproj │ │ ├── CustomOpenGLViewAppDelegate.h │ │ ├── CustomOpenGLViewAppDelegate.m │ │ ├── CustomOpenGLView_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ └── main.m │ ├── FullScreen │ │ ├── CustomOpenGLView.h │ │ ├── CustomOpenGLView.m │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── FullScreen-Info.plist │ │ ├── FullScreen.xcodeproj │ │ │ └── project.pbxproj │ │ ├── FullScreenAppDelegate.h │ │ ├── FullScreenAppDelegate.m │ │ ├── FullScreen_Prefix.pch │ │ └── main.m │ ├── Interactive │ │ ├── CustomOpenGLView-Info.plist │ │ ├── CustomOpenGLView.h │ │ ├── CustomOpenGLView.m │ │ ├── CustomOpenGLViewAppDelegate.h │ │ ├── CustomOpenGLViewAppDelegate.m │ │ ├── CustomOpenGLView_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── Interactive.xcodeproj │ │ │ └── project.pbxproj │ │ └── main.m │ ├── NSOpenGLView │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── MyOpenGLView.h │ │ ├── MyOpenGLView.m │ │ ├── NSOpenGLView-Info.plist │ │ ├── NSOpenGLView.xcodeproj │ │ │ └── project.pbxproj │ │ ├── NSOpenGLViewAppDelegate.h │ │ ├── NSOpenGLViewAppDelegate.m │ │ ├── NSOpenGLView_Prefix.pch │ │ └── main.m │ └── TextureTest │ │ ├── TextureTest.xcodeproj │ │ └── project.pbxproj │ │ └── TextureTest │ │ ├── MyOpenGLView.h │ │ ├── MyOpenGLView.m │ │ ├── Texture1.png │ │ ├── TextureTest-Info.plist │ │ ├── TextureTest-Prefix.pch │ │ ├── TextureTestAppDelegate.h │ │ ├── TextureTestAppDelegate.m │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ │ └── main.m ├── PhysicsSimulation │ ├── PhysicsSimulation.xcodeproj │ │ └── project.pbxproj │ └── PhysicsSimulation │ │ ├── Particle.h │ │ ├── Particle.m │ │ ├── PhysicsSimulation-Info.plist │ │ ├── PhysicsSimulation-Prefix.pch │ │ ├── PhysicsSimulationAppDelegate.h │ │ ├── PhysicsSimulationAppDelegate.m │ │ ├── Simulation.h │ │ ├── Simulation.m │ │ ├── Units.h │ │ ├── en.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ │ └── main.m ├── ProtocolHandler │ ├── ProtocolHandler.xcodeproj │ │ └── project.pbxproj │ └── ProtocolHandler │ │ ├── DRAppDelegate.h │ │ ├── DRAppDelegate.m │ │ ├── DRPlayerView.h │ │ ├── DRPlayerView.m │ │ ├── DRURLProtocol.h │ │ ├── DRURLProtocol.m │ │ ├── DRViewController.h │ │ ├── DRViewController.m │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── ProtocolHandler-Info.plist │ │ ├── ProtocolHandler-Prefix.pch │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── main.m │ │ └── sample_iPod.m4v ├── QTKitPlayer │ ├── English.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── MyDocument.nib │ │ │ ├── classes.nib │ │ │ ├── data.dependency │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── MyDocument~.nib │ │ │ ├── classes.nib │ │ │ ├── data.dependency │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MyDocument.h │ ├── MyDocument.m │ ├── QTKitPlayer.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── QTKitPlayer_Prefix.pch │ └── main.m ├── SDL │ └── HIDGamePad │ │ ├── HIDGamePad.xcodeproj │ │ └── project.pbxproj │ │ └── HIDGamePad │ │ ├── HIDGamePad-Prefix.pch │ │ └── main.m ├── SecurityFrameworkTest │ ├── SecurityFrameworkTest.1 │ ├── SecurityFrameworkTest.m │ ├── SecurityFrameworkTest.xcodeproj │ │ └── project.pbxproj │ └── SecurityFrameworkTest_Prefix.pch ├── SimpleNetwork │ ├── Client │ │ ├── Client.1 │ │ ├── Client.xcodeproj │ │ │ ├── doug.mode1 │ │ │ ├── doug.pbxuser │ │ │ └── project.pbxproj │ │ └── main.cpp │ └── Server │ │ ├── Server.1 │ │ ├── Server.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ │ └── main.cpp ├── SimpleProxy │ ├── SimpleProxy.xcodeproj │ │ └── project.pbxproj │ └── SimpleProxy │ │ ├── NSString+SPAdditions.h │ │ ├── NSString+SPAdditions.m │ │ ├── SPAppDelegate.h │ │ ├── SPAppDelegate.m │ │ ├── SPClientRecord.h │ │ ├── SPClientRecord.m │ │ ├── SPLog.h │ │ ├── SPLog.m │ │ ├── SPProxyServer.h │ │ ├── SPProxyServer.m │ │ ├── SimpleProxy-Info.plist │ │ ├── SimpleProxy-Prefix.pch │ │ ├── en.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ │ └── main.m ├── SimpleTextEdit │ ├── English.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── MyDocument.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── MyDocument~.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MyDocument.h │ ├── MyDocument.m │ ├── SimpleTextEdit.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── SimpleTextEdit_Prefix.pch │ └── main.m ├── StackTrace │ ├── StackTrace.1 │ ├── StackTrace.xcodeproj │ │ └── project.pbxproj │ └── main.c ├── StringReverse │ ├── StringReverse.1 │ ├── StringReverse.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ └── main.cpp ├── StripView │ ├── StripView.xcodeproj │ │ └── project.pbxproj │ └── StripView │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── DRStripView.h │ │ ├── DRStripView.m │ │ ├── StripView-Info.plist │ │ ├── StripView-Prefix.pch │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ └── main.m ├── SubversionClient │ ├── SubversionClient.m │ ├── SubversionClient.xcodeproj │ │ ├── TemplateIcon.icns │ │ └── project.pbxproj │ └── SubversionClient_Prefix.pch ├── Swift │ ├── SwiftARC │ │ ├── SwiftARC.xcodeproj │ │ │ └── project.pbxproj │ │ └── SwiftARC │ │ │ └── main.swift │ └── SwiftClosures │ │ ├── SwiftClosures.xcodeproj │ │ └── project.pbxproj │ │ └── SwiftClosures │ │ └── main.swift ├── Time Management │ ├── DailyList.xib │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ ├── Info.plist │ ├── ParkingLotList.xib │ ├── ParkingLotListView.xib │ ├── Time Management.xcodeproj │ │ ├── TemplateIcon.icns │ │ ├── doug.mode1v3 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── Time Management_Prefix.pch │ ├── TimeManagement.xcdatamodel │ │ ├── elements │ │ └── layout │ ├── ValueFocus.xib │ ├── ValueFocusMaxtrixView.xib │ ├── main.m │ └── version.plist ├── TokenField │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MyController.h │ ├── MyController.m │ ├── TokenField.xcodeproj │ │ └── project.pbxproj │ ├── TokenField_Prefix.pch │ └── main.m ├── VNCClient │ ├── ConnectingWindow.h │ ├── ConnectingWindow.m │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── MainMenu~.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── VNCClient Help │ │ │ ├── VNCClient Help.helpindex │ │ │ ├── css │ │ │ ├── accessPage.css │ │ │ ├── genlist.html │ │ │ ├── genlist_style.css │ │ │ ├── indexPage.css │ │ │ └── topicPage.css │ │ │ ├── gfx │ │ │ ├── icon.png │ │ │ ├── iconSmall.png │ │ │ ├── orngbullet.gif │ │ │ └── splashScreenshot.png │ │ │ ├── index.html │ │ │ └── pages │ │ │ ├── connecting.html │ │ │ ├── discover.html │ │ │ ├── index.html │ │ │ └── whatsnew.html │ ├── Info.plist │ ├── InjectableInputStream.h │ ├── InjectableInputStream.m │ ├── NewConnectionWindow.h │ ├── NewConnectionWindow.m │ ├── README.md │ ├── ReadableOutputStream.h │ ├── ReadableOutputStream.m │ ├── RemoteFrameBufferProtocol.h │ ├── RemoteFrameBufferProtocol.m │ ├── SecurityTypeSelectorDelegate.h │ ├── SecurityTypeSelectorDelegate.m │ ├── TODO.md │ ├── TestRemoteFrameBufferProtocol.h │ ├── TestRemoteFrameBufferProtocol.m │ ├── Unit Testing-Info.plist │ ├── VNCClient.icns │ ├── VNCClient.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── VNCClient_Prefix.pch │ ├── VNCView.h │ ├── VNCView.m │ ├── VNCViewWindow.h │ ├── VNCViewWindow.m │ ├── VNCWindowController.h │ ├── VNCWindowController.m │ └── main.m ├── WeakExample │ ├── README.txt │ ├── WeakExample.xcodeproj │ │ └── project.pbxproj │ └── WeakExample │ │ ├── OldSchoolPool.h │ │ ├── OldSchoolPool.m │ │ ├── WeakExample-Prefix.pch │ │ ├── WeakExample.1 │ │ └── main.m ├── XPCApplicationExample │ ├── XPCApplicationExample.xcodeproj │ │ └── project.pbxproj │ ├── XPCApplicationExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── XPCApplicationExample-Info.plist │ │ ├── XPCApplicationExample-Prefix.pch │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ └── main.m │ └── XPCMultiplierService │ │ ├── XPCMultiplierService-Info.plist │ │ ├── XPCMultiplierService-Prefix.pch │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ └── main.m ├── ZFlowLayout │ ├── AppController.h │ ├── AppController.m │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── Layout.xcodeproj │ │ └── project.pbxproj │ ├── Layout_Prefix.pch │ ├── ZFlowLayout.h │ ├── ZFlowLayout.m │ └── main.m ├── brainstorm │ ├── Brainstorm.xcodeproj │ │ └── project.pbxproj │ ├── BrainstormView.h │ ├── BrainstormView.m │ ├── Brainstorm_Prefix.pch │ ├── English.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── MyDocument.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MyDocument.h │ ├── MyDocument.m │ ├── MyDocument.xcdatamodel │ │ ├── elements │ │ └── layout │ ├── main.m │ └── version.plist ├── chess │ ├── Classes │ │ ├── Board.cpp │ │ ├── Board.h │ │ ├── ChessView.h │ │ ├── ChessView.mm │ │ ├── GameController.h │ │ ├── GameController.mm │ │ ├── King.cpp │ │ ├── King.h │ │ ├── Object.cpp │ │ ├── Object.h │ │ ├── Pawn.cpp │ │ ├── Pawn.h │ │ ├── Piece.cpp │ │ ├── Piece.h │ │ ├── UIObject.cpp │ │ ├── UIObject.h │ │ ├── chessAppDelegate.h │ │ └── chessAppDelegate.mm │ ├── Info.plist │ ├── MainWindow.xib │ ├── chess.xcodeproj │ │ └── project.pbxproj │ ├── chess_Prefix.pch │ └── main.m ├── concept │ ├── Accessibility │ │ ├── Accessibility.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Accessibility_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── designable.nib │ │ │ │ └── keyedobjects.nib │ │ ├── Info.plist │ │ └── main.m │ ├── Internationalization │ │ ├── AppController.h │ │ ├── AppController.m │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── designable.nib │ │ │ │ └── keyedobjects.nib │ │ ├── Info.plist │ │ ├── InfoPlist.strings │ │ ├── Internationalization.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Internationalization_Prefix.pch │ │ ├── es.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── designable.nib │ │ │ │ └── keyedobjects.nib │ │ └── main.m │ ├── ObjectiveC2.0 │ │ ├── ObjectiveC2.0.1 │ │ ├── ObjectiveC2.0.m │ │ ├── ObjectiveC2.0.xcodeproj │ │ │ └── project.pbxproj │ │ └── ObjectiveC2.0_Prefix.pch │ ├── Speech │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── designable.nib │ │ │ │ └── keyedobjects.nib │ │ ├── Info.plist │ │ ├── Listener.h │ │ ├── Listener.m │ │ ├── Speaker.h │ │ ├── Speaker.m │ │ ├── Speech.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Speech_Prefix.pch │ │ └── main.m │ └── VideoVoicePhotoCapture │ │ ├── AppController.h │ │ ├── AppController.m │ │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── Info.plist │ │ ├── QTKitCaptureProgrammingGuide.pdf │ │ ├── VideoVoicePhotoCapture.xcodeproj │ │ └── project.pbxproj │ │ ├── VideoVoicePhotoCapture_Prefix.pch │ │ └── main.m ├── cppreview │ ├── C++ Review.1 │ ├── C++ Review.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ └── main.cpp ├── freetype │ └── Example1 │ │ ├── Example1.xcodeproj │ │ ├── doug.mode1v3 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ │ └── main.c ├── hash │ ├── hash.1 │ ├── hash.m │ ├── hash.xcodeproj │ │ ├── doug.mode1 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ └── hash_Prefix.pch ├── libgd │ ├── Example1 │ │ ├── Example1.xcodeproj │ │ │ └── project.pbxproj │ │ └── main.c │ └── Example2 │ │ ├── Example2.xcodeproj │ │ └── project.pbxproj │ │ ├── Langage Samples.txt │ │ ├── Test-License.png │ │ └── main.c ├── libpng │ ├── Example1 │ │ ├── Example1.xcodeproj │ │ │ └── project.pbxproj │ │ ├── bgan6a08.png │ │ └── main.c │ └── PrivateChunk │ │ ├── PrivateChunk.xcodeproj │ │ └── project.pbxproj │ │ ├── bgan6a08.png │ │ └── main.c └── mousedriver │ ├── KEXTConcept.pdf │ └── VerticalMouse │ ├── English.lproj │ └── InfoPlist.strings │ ├── Info.plist │ ├── VerticalMouse.xcodeproj │ └── project.pbxproj │ ├── com_evoluent_driver_VerticalMouse.cpp │ ├── com_evoluent_driver_VerticalMouse.h │ ├── load.sh │ └── set_permissions.sh ├── OpenCL ├── Makefile ├── hello.cc └── hello.cl ├── OpenCV ├── .gitignore ├── BookExercises │ ├── 45DegreeLine.png │ ├── Bullseye.png │ ├── CMakeLists.txt │ ├── Convolution.numbers │ ├── Exercise3.1.c │ ├── Exercise3.2.c │ ├── Exercise3.3.c │ ├── Exercise3.4.c │ ├── Exercise3.5.c │ ├── Exercise3.6.c │ ├── Exercise3.7.c │ ├── Exercise3.8.c │ ├── Exercise5.1.cpp │ ├── Exercise5.10.c │ ├── Exercise5.11.c │ ├── Exercise5.12.c │ ├── Exercise5.2.c │ ├── Exercise5.3.c │ ├── Exercise5.4.c │ ├── Exercise5.5.c │ ├── Exercise5.6.c │ ├── Exercise5.7.c │ ├── Exercise5.8.c │ ├── Exercise5.9.c │ ├── Exercise6.1.c │ ├── Exercise6.2.c │ ├── Exercise6.3.txt │ ├── Exercise6.4.c │ ├── Exercise6.5.c │ ├── Exercise6.6.c │ ├── FaceFrontal.jpg │ ├── Lenna.jpg │ ├── Lines.png │ ├── OutdoorScene.jpg │ ├── Photo1-ex5.4.jpg │ ├── Photo2-ex5.4.jpg │ ├── TableWithMug.jpg │ ├── TableWithoutMug.jpg │ └── noiseWithLineWheel.png ├── CMakeLists.txt └── DisplayPicture │ ├── CMakeLists.txt │ ├── TestImage.png │ └── main.cpp ├── PS3BluetoothPairing ├── Makefile └── ps3pair.c ├── ProtocolBuffers ├── .gitignore ├── Makefile ├── addressbook.proto ├── list.cc └── write.cc ├── README.md ├── SuperCollider ├── Ambient.scd ├── Beats.scd ├── Busses.scd ├── Clipping.scd ├── Delays.scd ├── ElectricMotor.scd ├── Envelopes.scd ├── Event.scd ├── Functions.scd ├── FunctionsAndSound.scd ├── Interesting.scd ├── Internals.scd ├── Math.scd ├── Meters.scd ├── Mic.scd ├── Mixing.scd ├── Noise.scd ├── OrderOfExecution.scd ├── Patterns.scd ├── Pbind.scd ├── README.md ├── Randomness.scd ├── SavingPlotToImage.scd ├── Scaling.scd ├── ScopingAndPlotting.scd ├── Scratch.scd ├── SequencingWithPatterns.scd ├── SequencingWithRoutinesAndTasks.scd ├── Signal.scd ├── Spinning.scd ├── Stereo.scd ├── SyntaxShortcuts.scd ├── SynthDefsAndSynths.scd ├── UGenTour.scd └── Weird.scd ├── TeX ├── .gitignore ├── HelloWorld.tex ├── README.md ├── chinese.tex ├── letter.tex └── unicode.tex ├── Windows └── DirectoryListingPerformance │ ├── FindFile.c │ └── Makefile ├── android └── myfirstapp │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── build-install-run.sh │ ├── build.xml │ ├── local.properties │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ ├── actionbar_background.png │ │ └── ic_action_search.png │ ├── layout │ │ └── main.xml │ ├── menu │ │ └── main_activity_actions.xml │ └── values │ │ ├── strings.xml │ │ └── themes.xml │ └── src │ └── com │ └── example1 │ └── myfirstapp │ ├── DisplayMessageActivity.java │ └── MainActivity.java ├── assembly ├── osx_calc │ ├── README.md │ ├── main-i386.s │ ├── main-ppc.s │ ├── main-x86_64.s │ └── main.c └── x86_assembly │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── func.asm │ └── main.c ├── bash └── heredoc.sh ├── cairo ├── Makefile └── rendertext.c ├── clojure ├── 4clojure-solutions.clj ├── hello.clj ├── httpserver │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── doc │ │ └── intro.md │ ├── project.clj │ ├── src │ │ └── httpserver │ │ │ └── core.clj │ └── test │ │ └── httpserver │ │ └── core_test.clj └── maps.clj ├── cmd ├── README.md └── variables.bat ├── deno └── quickstart │ ├── deno.json │ ├── fetch_example.ts │ ├── hello.ts │ ├── main.ts │ ├── main_test.ts │ └── webserver.ts ├── docker ├── copydata │ ├── .gitignore │ ├── Dockerfile │ ├── run-test.sh │ └── update-file.sh ├── go_entrypoint │ ├── Dockerfile │ └── print_pid │ │ └── print_pid.go └── sinatra │ └── Dockerfile ├── elixir ├── dsl │ ├── .gitignore │ ├── README.md │ ├── config │ │ └── config.exs │ ├── lib │ │ ├── dsl.ex │ │ ├── my_test.ex │ │ └── test_case.ex │ ├── mix.exs │ └── test │ │ ├── dsl_test.exs │ │ └── test_helper.exs ├── example │ ├── .gitignore │ ├── README.md │ ├── config │ │ └── config.exs │ ├── lib │ │ └── example.ex │ ├── mix.exs │ └── test │ │ ├── example_test.exs │ │ └── test_helper.exs ├── fun_with_ben │ └── ourgenserver.exs ├── genserver │ └── genserver.exs ├── guide │ ├── behaviours.exs │ ├── comprehensions.exs │ └── triple.exs ├── macros │ ├── hygiene.exs │ ├── macros.exs │ └── sample.exs └── mix_guide │ └── kv │ ├── .gitignore │ ├── README.md │ ├── config │ └── config.exs │ ├── lib │ ├── kv.ex │ └── kv │ │ ├── bucket.ex │ │ ├── registry.ex │ │ └── supervisor.ex │ ├── mix.exs │ └── test │ ├── kv │ ├── bucket_test.exs │ └── registry_test.exs │ ├── kv_test.exs │ └── test_helper.exs ├── flutter └── my_app │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── my_app │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── test │ └── widget_test.dart │ └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json ├── flyingmachine ├── Makefile └── main.c ├── git └── create-blob.py ├── go ├── GoCourse │ ├── Makefile │ ├── example1-fib.go │ ├── example2-httpserver.go │ ├── fibonacci │ │ ├── Makefile │ │ └── fibonacci.go │ └── httpdoc │ │ └── test1.txt ├── Makefile ├── binarySearchTree.go ├── closure.go ├── draw.go ├── encoding.go ├── exampleProject │ ├── .gitignore │ └── src │ │ ├── example │ │ └── main.go │ │ ├── pkg1 │ │ ├── more1.go │ │ ├── pkg1.go │ │ └── pkg1_test.go │ │ └── pkg2 │ │ ├── pkg2.go │ │ └── pkg2_test.go ├── flags.go ├── function-literal.go ├── hash.go ├── hello.go ├── httpServer │ └── server.go ├── listTargets.sh ├── myexamples │ ├── Makefile │ ├── basics │ │ ├── allocation.go │ │ ├── channels.go │ │ ├── constants.go │ │ ├── defer.go │ │ ├── embedding.go │ │ ├── functions.go │ │ ├── goroutines.go │ │ ├── init.go │ │ ├── interface.go │ │ ├── literals.go │ │ ├── map.go │ │ ├── panicrecover.go │ │ ├── slice.go │ │ ├── structs.go │ │ ├── switches.go │ │ ├── template.go │ │ ├── typeAssertion.go │ │ └── variadic.go │ └── packages │ │ ├── bytes.go │ │ ├── containers.go │ │ ├── hash.go │ │ ├── http.go │ │ ├── json.go │ │ ├── log.go │ │ ├── mainArgsAndUnixReturnValue.go │ │ ├── net.go │ │ ├── path.go │ │ ├── reflect.go │ │ ├── rpc.go │ │ ├── scan.go │ │ ├── scanner.go │ │ └── strings.go ├── sqliteTest │ ├── README.md │ └── src │ │ └── sqliteTest │ │ └── main.go ├── struct_tags.go ├── sudoku │ ├── Makefile │ ├── boardGenerator.go │ └── sudoku │ │ └── sudoku.go ├── urlencode.go └── x509.go ├── gstreamer ├── .gitignore ├── Makefile ├── gst_launch_examples.md ├── hello.c ├── test1.c ├── test2.c ├── test3.c ├── test4.c ├── test5.c ├── test6.c ├── test7.c └── test8.c ├── iPhone ├── CoreLocationTest │ ├── CoreLocationTest.xcodeproj │ │ └── project.pbxproj │ ├── CoreLocationTest │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Localizable.strings │ │ ├── Location.swift │ │ └── ViewController.swift │ ├── CoreLocationTestTests │ │ ├── CoreLocationTestTests.swift │ │ └── Info.plist │ └── Location2x2.gpx ├── FromScratch │ ├── Blue-Image-Off.png │ ├── Blue-Image-On.png │ ├── Classes │ │ ├── BlueViewController.h │ │ ├── BlueViewController.m │ │ ├── FromScratchAppDelegate.h │ │ ├── FromScratchAppDelegate.m │ │ ├── RedViewController.h │ │ └── RedViewController.m │ ├── Default.png │ ├── FromScratch.xcodeproj │ │ └── project.pbxproj │ ├── FromScratch_Prefix.pch │ ├── Icon.png │ ├── Info.plist │ └── main.m ├── ManualOrientationChanges │ ├── Classes │ │ ├── TestAppDelegate.h │ │ └── TestAppDelegate.m │ ├── MainWindow.xib │ ├── Test-Info.plist │ ├── Test.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── Test.xcdatamodel │ │ │ ├── elements │ │ │ └── layout │ ├── Test.xcodeproj │ │ ├── doug.mode1v3 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── Test_Prefix.pch │ ├── arrow.png │ └── main.m ├── ScrollView │ ├── Classes │ │ ├── ScrollViewAppDelegate.h │ │ ├── ScrollViewAppDelegate.m │ │ ├── ScrollViewViewController.h │ │ └── ScrollViewViewController.m │ ├── Info.plist │ ├── MainWindow.xib │ ├── ScrollView.xcodeproj │ │ ├── doug.mode1v3 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── ScrollViewViewController.xib │ ├── ScrollView_Prefix.pch │ └── main.m ├── ScrollView2 │ ├── Classes │ │ ├── ScrollTestAppDelegate.h │ │ ├── ScrollTestAppDelegate.m │ │ ├── WrappingLayoutView.h │ │ └── WrappingLayoutView.m │ ├── MainWindow.xib │ ├── ScrollTest-Info.plist │ ├── ScrollTest.xcodeproj │ │ ├── doug.mode1v3 │ │ ├── doug.pbxuser │ │ └── project.pbxproj │ ├── ScrollTest_Prefix.pch │ └── main.m ├── Test1 │ ├── Classes │ │ ├── MyView.h │ │ ├── MyView.m │ │ ├── MyViewController.h │ │ ├── MyViewController.m │ │ ├── Test1AppDelegate.h │ │ └── Test1AppDelegate.m │ ├── Info.plist │ ├── Test1.xcodeproj │ │ └── project.pbxproj │ ├── Test1_Prefix.pch │ └── main.m ├── TransformTest │ ├── Classes │ │ ├── TransformTestAppDelegate.h │ │ └── TransformTestAppDelegate.m │ ├── Info.plist │ ├── MainWindow.xib │ ├── TransformTest.xcodeproj │ │ └── project.pbxproj │ ├── TransformTest_Prefix.pch │ └── main.m ├── TuningFork │ ├── Classes │ │ ├── MetronomeViewController.h │ │ ├── MetronomeViewController.m │ │ ├── ToneGeneratorViewController.h │ │ ├── ToneGeneratorViewController.m │ │ ├── TuningForkAppDelegate.h │ │ ├── TuningForkAppDelegate.m │ │ ├── TuningView.h │ │ ├── TuningView.m │ │ ├── TuningViewController.h │ │ └── TuningViewController.m │ ├── Info.plist │ ├── Metronome-Off.png │ ├── Metronome-On.png │ ├── Tone-Generator-Off.png │ ├── Tone-Generator-On.png │ ├── Tuning-Fork-Off.png │ ├── Tuning-Fork-On.png │ ├── TuningFork.xcodeproj │ │ └── project.pbxproj │ ├── TuningFork_Prefix.pch │ └── main.m ├── UIKit │ ├── Animations │ │ ├── Animations.xcodeproj │ │ │ └── project.pbxproj │ │ └── Animations │ │ │ ├── Animations-Info.plist │ │ │ ├── Animations-Prefix.pch │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ └── Images │ │ ├── Images.xcodeproj │ │ └── project.pbxproj │ │ └── Images │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images-Info.plist │ │ ├── Images-Prefix.pch │ │ ├── Resizable-15-1-15.png │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ └── main.m └── walkietalkie │ ├── Classes │ ├── WalkieTalkieAppDelegate.h │ ├── WalkieTalkieAppDelegate.m │ ├── WalkieTalkieViewController.h │ └── WalkieTalkieViewController.m │ ├── Info.plist │ ├── MainWindow.xib │ ├── WalkieTalkie.xcodeproj │ └── project.pbxproj │ ├── WalkieTalkieViewController.xib │ ├── WalkieTalkie_Prefix.pch │ └── main.m ├── iconv ├── Makefile └── utf8-to-utf32.c ├── icu ├── Makefile ├── README └── listLocales.c ├── julia ├── entropy.jl ├── primes.jl ├── subgroups.jl └── test.jl ├── kubernetes ├── application │ ├── Dockerfile │ ├── README.md │ └── helloworld │ │ ├── .gitignore │ │ ├── go.mod │ │ ├── go.sum │ │ └── hello.go ├── deployments │ ├── README.md │ └── hello.yaml ├── pods │ ├── README.md │ └── pod.yaml ├── sanche │ ├── README.md │ ├── gitea.yaml │ ├── gitea_2.yaml │ ├── gitea_3.yaml │ └── mysql.yaml └── services │ ├── README.md │ ├── service-load-balancer.yaml │ └── service.yaml ├── lean ├── feline │ ├── .github │ │ └── workflows │ │ │ └── lean_action_ci.yml │ ├── .gitignore │ ├── Main.lean │ ├── Playground.lean │ ├── README.md │ ├── lake-manifest.json │ ├── lakefile.lean │ └── lean-toolchain ├── getting-to-know-lean │ ├── .github │ │ └── workflows │ │ │ └── lean_action_ci.yml │ ├── .gitignore │ ├── GettingToKnowLean.lean │ ├── GettingToKnowLean │ │ └── Basic.lean │ ├── Main.lean │ ├── README.md │ ├── lake-manifest.json │ ├── lakefile.lean │ └── lean-toolchain ├── hello-world │ ├── Hello.lean │ ├── Hello2.lean │ ├── README.md │ └── run1.sh ├── interlude │ ├── .github │ │ └── workflows │ │ │ └── lean_action_ci.yml │ ├── .gitignore │ ├── Main.lean │ ├── README.md │ ├── interlude │ │ └── Basic.lean │ ├── lakefile.lean │ └── lean-toolchain ├── lean-manual │ ├── .gitignore │ ├── LeanManual.lean │ ├── LeanManual │ │ ├── Basic.lean │ │ ├── EnumeratedTypes.lean │ │ └── VariablesAndSections.lean │ ├── Main.lean │ ├── README.md │ ├── lakefile.lean │ └── lean-toolchain ├── overloading-and-type-classes │ ├── .gitignore │ ├── Main.lean │ ├── README.md │ ├── lake-manifest.json │ ├── lakefile.lean │ ├── lean-toolchain │ └── overloading-and-type-classes │ │ └── Basic.lean └── theorem-proving-in-lean-4 │ ├── .gitignore │ ├── Main.lean │ ├── README.md │ ├── TheoremProvingInLean4.lean │ ├── TheoremProvingInLean4 │ ├── Basic.lean │ ├── DependentTypeTheory.lean │ ├── Introduction.lean │ └── PropositionsAndProofs.lean │ ├── lake-manifest.json │ ├── lakefile.lean │ └── lean-toolchain ├── libjpeg-turbo ├── Makefile └── test1.c ├── linux ├── Makefile ├── capabilities.c ├── dir.c ├── epoll.c ├── fanotify.c ├── inotify.c ├── mkdir-p.c ├── nolibc-start.S ├── nolibc-syscall.S ├── nolibc.c ├── perf-tester.c ├── raspberry_pi │ ├── Makefile │ ├── cross_compile_hello_world.cc │ ├── file_descriptor.cc │ ├── file_descriptor.hpp │ ├── gpio_script.sh │ ├── gpio_userspace.cc │ ├── hy_srf05_ultrasonic_ranging_sensor.cc │ ├── init.c │ ├── pins.cc │ └── pins.hpp ├── readv │ ├── Makefile │ └── scatter.c ├── thread_id.cpp └── zombie │ ├── Makefile │ └── zombie.c ├── lisp ├── .gitignore ├── compile-hello.lisp ├── compile-hello.sh ├── hello.lisp ├── land-of-lisp │ ├── dice-of-doom.lisp │ ├── evolution.lisp │ ├── graph-drawing.lisp │ ├── http.lisp │ ├── mapcan-hang.lisp │ ├── sockets.lisp │ ├── text-adventure.lisp │ ├── url.lisp │ └── wumpus.lisp ├── methods.lisp ├── sbcl-sockets.lisp ├── sbcl-threads.lisp └── y-combinator.lisp ├── make └── environment │ └── Makefile ├── math ├── Makefile ├── permutations.cc └── sine.c ├── meson ├── .gitignore └── proj1-src │ ├── main.c │ └── meson.build ├── ncurses ├── .gitignore ├── Makefile ├── hellocurses.c └── hellocurses2.c ├── network ├── .gitignore ├── Makefile ├── acceptclose.c ├── ephemeral.c ├── keepopen.c └── prefork.c ├── nginx ├── README.txt ├── cert.key ├── cert.pem ├── html │ └── test.txt ├── logs │ └── .gitignore ├── mime.types ├── nginx.conf └── start.sh ├── nix ├── .gitignore ├── basic.nix ├── imports │ ├── a.nix │ ├── b.nix │ └── mul.nix ├── pytorch-with-cuda │ ├── has_cuda.py │ └── shell.nix ├── shell │ └── shell.nix └── simple │ ├── README.md │ ├── builder.sh │ ├── simple.c │ └── simple.nix ├── node ├── express │ └── myapp │ │ ├── app.js │ │ └── package.json └── http │ └── example1 │ └── main.js ├── openssl ├── Makefile ├── bignum.c ├── random.c └── signing │ ├── hmac-test.sh │ └── rsa-test.sh ├── parsers └── recursive-decent-lispy │ ├── CMakeLists.txt │ ├── parser.cpp │ └── test │ ├── fail │ ├── 1.lisp │ └── 2.lisp │ └── succeed │ ├── 1.lisp │ ├── 2.lisp │ ├── 3.lisp │ ├── 4.lisp │ └── 5.lisp ├── pcap ├── Makefile └── pcap-main.c ├── php ├── foo.db └── sqlite.php ├── python ├── .gitignore ├── ariadne │ ├── intro.py │ └── requirements.txt ├── async.py ├── asyncio_http │ ├── client.py │ ├── server.py │ └── server_contextvar_logging.py ├── binding.py ├── c_api │ ├── .gitignore │ ├── CMakeLists.txt │ ├── compile_commands.json │ ├── embedded-python.cc │ └── run-py-main.cc ├── catch-multiple.py ├── classes.py ├── closure.py ├── contextvar.py ├── decorators.py ├── descriptors.py ├── flask │ ├── minimal │ │ └── __init__.py │ ├── requirements.txt │ └── routing │ │ ├── __init__.py │ │ ├── main.py │ │ ├── static │ │ └── hello.txt │ │ └── templates │ │ └── hello.html ├── formatting.py ├── functions.py ├── generators.py ├── html_parser.py ├── imports │ ├── README.md │ ├── as_module │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── p1 │ │ │ ├── __init__.py │ │ │ ├── mod1.py │ │ │ └── mod2.py │ │ └── p2 │ │ │ ├── __init__.py │ │ │ ├── mod1.py │ │ │ └── mod2.py │ └── as_script │ │ ├── imports.py │ │ ├── p1 │ │ ├── __init__.py │ │ ├── mod1.py │ │ └── mod2.py │ │ └── p2 │ │ ├── __init__.py │ │ ├── mod1.py │ │ └── mod2.py ├── lambda.py ├── logging.conf ├── logs.py ├── logs_context_filter.py ├── logs_context_filter_json_output.py ├── logs_contextual_data.py ├── logs_structured.py ├── package │ ├── .gitignore │ ├── f1.py │ ├── main.py │ ├── main2.py │ └── p1 │ │ ├── __init__.py │ │ ├── f2.py │ │ ├── p2 │ │ ├── __init__.py │ │ ├── intra │ │ │ ├── __init__.py │ │ │ ├── f4mod.py │ │ │ └── f5mod.py │ │ └── p3 │ │ │ ├── __init__.py │ │ │ └── f3.py │ │ └── p3 │ │ ├── __init__.py │ │ └── file1.py ├── pass.py ├── property.py ├── regex.py ├── requirements.txt ├── reraise.py ├── scipy │ ├── .gitignore │ ├── README.md │ ├── backends.py │ ├── calculus.py │ ├── ode.py │ ├── ode2.py │ ├── oo_plplot_style.py │ ├── requirements.txt │ ├── simple.py │ ├── sine.py │ ├── sir_model.py │ └── solve_ipv1.py ├── templates │ ├── compiled │ ├── requirements.txt │ ├── slot.py │ ├── stuff │ │ ├── __init__.py │ │ └── templates │ │ │ ├── mytemplate.html │ │ │ └── mytemplate2.html │ ├── test.py │ └── test2.py ├── test.pdf ├── test_logging.py ├── threads.py ├── twisted │ ├── basic │ │ ├── calllater.py │ │ ├── connectiontest.py │ │ ├── dataforward.py │ │ ├── echoserver.py │ │ ├── portscan.py │ │ ├── runreactor.py │ │ └── tcpconnection.py │ └── webservers │ │ └── webecho.py ├── type_annotations.py ├── udp_client.py ├── udp_server.py ├── udp_server_threaded.py ├── undefined-member.py ├── unittest │ ├── README.md │ ├── __init__.py │ ├── basic.py │ ├── p1 │ │ ├── __init__.py │ │ ├── mod1.py │ │ └── mod1_test.py │ └── tests │ │ ├── __init__.py │ │ └── basic.py ├── useless-base.py └── uvicorn │ ├── example.py │ └── requirements.txt ├── ruby ├── Address.rb ├── PersonName.rb ├── RegularExpressions.rb ├── TestPersonName.rb ├── gmailCSVreader.rb ├── openssl.rb ├── openssl_asymmetric.rb └── sqlite.rb ├── rust ├── .gitignore ├── coretest │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── get_http │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── rustbook │ ├── README.md │ ├── ch01 │ │ ├── hello_cargo │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── hello_world │ │ │ └── main.rs │ ├── ch02 │ │ └── guessing_game │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ ├── ch03 │ │ ├── control_flow │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── data_types │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── functions │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ ├── ch04 │ │ ├── ownership │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── references_and_borrowing │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── slice_type │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ ├── ch05 │ │ ├── defining_structs │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── rectangles │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ ├── ch06 │ │ ├── defining_enums │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── if_let │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── match_operator │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ ├── ch07 │ │ ├── restaurant │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── lib.rs │ │ │ │ └── main.rs │ │ └── restaurant_separate_files │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── front_of_house.rs │ │ │ ├── front_of_house │ │ │ └── hosting.rs │ │ │ ├── lib.rs │ │ │ └── main.rs │ ├── ch08 │ │ ├── hashmaps │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── strings │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── vectors │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ ├── ch10 │ │ ├── generics │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── traits │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── lib.rs │ │ │ └── main.rs │ ├── ch12 │ │ └── minigrep │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── poem.txt │ │ │ └── src │ │ │ ├── lib.rs │ │ │ └── main.rs │ ├── ch13 │ │ └── iterator │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── lib.rs │ │ │ └── main.rs │ ├── ch15 │ │ ├── boxtest │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── deref │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── droptrait │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── interior_mutability │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── lib.rs │ │ │ │ └── main.rs │ │ ├── reference_counted │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── reference_cycle │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ ├── ch16 │ │ ├── message_passing │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── shared_state_concurrency │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── threads │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ ├── ch17 │ │ └── trait_objects │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ ├── ch19 │ │ └── macros │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ └── ch20 │ │ ├── multi-threaded-webserver │ │ ├── 404.html │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── hello.html │ │ └── src │ │ │ ├── bin │ │ │ └── main.rs │ │ │ └── lib.rs │ │ └── single-threaded-webserver │ │ ├── 404.html │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── hello.html │ │ └── src │ │ └── main.rs ├── webservers │ └── try-actix │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ └── main.rs └── workspacetest │ ├── Cargo.lock │ ├── Cargo.toml │ ├── add_one │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── add_two │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ └── adder │ ├── Cargo.toml │ └── src │ └── main.rs ├── shell ├── basics.sh ├── inputfile └── tagWithLineNumbers.sh ├── sql ├── dropschema.sql ├── pseudonyms.sql ├── schema.sql └── setoperations.sql ├── sqlite ├── build_db.py └── csv_to_db.py ├── swift ├── MyPlayground.playground │ ├── Contents.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ └── contents.xcworkspacedata │ └── timeline.xctimeline ├── actors │ ├── actors.xcodeproj │ │ └── project.pbxproj │ └── actors │ │ ├── actor1.swift │ │ ├── cache.swift │ │ └── main_cli.swift └── particle-emitter │ ├── particle-emitter.xcodeproj │ └── project.pbxproj │ └── particle-emitter │ ├── Actions.sks │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── GameScene.sks │ ├── GameScene.swift │ ├── MyParticle.sks │ ├── ViewController.swift │ └── particle_emitter.entitlements ├── terraform └── up-and-running │ ├── .gitignore │ ├── README.md │ └── ch2 │ ├── configurable-web-server │ └── main.tf │ ├── single-server │ └── main.tf │ ├── single-web-server │ └── main.tf │ └── web-server-cluster │ └── main.tf ├── vagrant └── ubuntu-dev │ ├── Vagrantfile │ └── bootstrap.sh └── webgl ├── circle ├── circle.html ├── circle.js ├── common.js └── mat4.js ├── circle2 ├── circle2.html ├── circle2.js ├── common.js └── mat4.js ├── hello ├── common.js ├── hello.html ├── hello.js └── mat4.js └── mvp ├── common.js ├── mat4.js ├── mvp.html └── mvp.js /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | . text !filter !merge !diff 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.net/HelloWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.net/HelloWorld.sln -------------------------------------------------------------------------------- /.net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.net/README.md -------------------------------------------------------------------------------- /.net/hello/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.net/hello/Program.cs -------------------------------------------------------------------------------- /.net/hello/hello.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.net/hello/hello.csproj -------------------------------------------------------------------------------- /.net/logic/.vs/logic/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.net/logic/.vs/logic/v15/.suo -------------------------------------------------------------------------------- /.net/logic/HelloWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.net/logic/HelloWorld.cs -------------------------------------------------------------------------------- /.net/logic/logic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.net/logic/logic.csproj -------------------------------------------------------------------------------- /.net/tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.net/tests/UnitTest1.cs -------------------------------------------------------------------------------- /.net/tests/tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.net/tests/tests.csproj -------------------------------------------------------------------------------- /.net/web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.net/web/Program.cs -------------------------------------------------------------------------------- /.net/web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.net/web/Startup.cs -------------------------------------------------------------------------------- /.net/web/web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/.net/web/web.csproj -------------------------------------------------------------------------------- /C#/LinkLabelDemo/LinkLabelDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C#/LinkLabelDemo/LinkLabelDemo.sln -------------------------------------------------------------------------------- /C#/LinkLabelDemo/LinkLabelDemo.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C#/LinkLabelDemo/LinkLabelDemo.suo -------------------------------------------------------------------------------- /C#/LinkLabelDemo/LinkLabelDemo/LinkLabelDemo.csproj.user: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/WhichMonitorWPF/.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | WhichMonitorWPF/obj/ 3 | -------------------------------------------------------------------------------- /C++/.clang_complete: -------------------------------------------------------------------------------- 1 | -std=c++1y 2 | -------------------------------------------------------------------------------- /C++/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/.gitignore -------------------------------------------------------------------------------- /C++/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/.vscode/launch.json -------------------------------------------------------------------------------- /C++/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/.vscode/tasks.json -------------------------------------------------------------------------------- /C++/BufferedIO/.gitignore: -------------------------------------------------------------------------------- 1 | io_test 2 | -------------------------------------------------------------------------------- /C++/BufferedIO/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/BufferedIO/Makefile -------------------------------------------------------------------------------- /C++/BufferedIO/io_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/BufferedIO/io_test.cc -------------------------------------------------------------------------------- /C++/BufferedIO/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/BufferedIO/run.sh -------------------------------------------------------------------------------- /C++/BufferedIO/test_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/BufferedIO/test_runner.sh -------------------------------------------------------------------------------- /C++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/Makefile -------------------------------------------------------------------------------- /C++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/README.md -------------------------------------------------------------------------------- /C++/VC/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.obj 3 | -------------------------------------------------------------------------------- /C++/VC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/VC/Makefile -------------------------------------------------------------------------------- /C++/VC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/VC/README.md -------------------------------------------------------------------------------- /C++/VC/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/VC/hello.cc -------------------------------------------------------------------------------- /C++/VC/instruction_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/VC/instruction_set.cc -------------------------------------------------------------------------------- /C++/VC/intrinsics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/VC/intrinsics.cc -------------------------------------------------------------------------------- /C++/access_specifiers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/access_specifiers.cc -------------------------------------------------------------------------------- /C++/array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/array.cc -------------------------------------------------------------------------------- /C++/atomics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/atomics.cc -------------------------------------------------------------------------------- /C++/attributes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/attributes.cc -------------------------------------------------------------------------------- /C++/auto_decltype.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/auto_decltype.cc -------------------------------------------------------------------------------- /C++/bigsort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/bigsort.cc -------------------------------------------------------------------------------- /C++/casting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/casting.cc -------------------------------------------------------------------------------- /C++/chrono.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/chrono.cc -------------------------------------------------------------------------------- /C++/concepts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/concepts.cc -------------------------------------------------------------------------------- /C++/condition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/condition.cc -------------------------------------------------------------------------------- /C++/const.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/const.cc -------------------------------------------------------------------------------- /C++/containers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/.gitignore -------------------------------------------------------------------------------- /C++/containers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/Makefile -------------------------------------------------------------------------------- /C++/containers/circular_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/circular_buffer.hpp -------------------------------------------------------------------------------- /C++/containers/hash_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/hash_table.hpp -------------------------------------------------------------------------------- /C++/containers/hash_table_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/hash_table_driver.cc -------------------------------------------------------------------------------- /C++/containers/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/list.hpp -------------------------------------------------------------------------------- /C++/containers/list_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/list_driver.cc -------------------------------------------------------------------------------- /C++/containers/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/queue.hpp -------------------------------------------------------------------------------- /C++/containers/queue_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/queue_driver.cc -------------------------------------------------------------------------------- /C++/containers/stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/stack.hpp -------------------------------------------------------------------------------- /C++/containers/stack_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/stack_driver.cc -------------------------------------------------------------------------------- /C++/containers/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/vector.hpp -------------------------------------------------------------------------------- /C++/containers/vector_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/containers/vector_driver.cc -------------------------------------------------------------------------------- /C++/copying.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/copying.cc -------------------------------------------------------------------------------- /C++/crash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/crash.cc -------------------------------------------------------------------------------- /C++/ctor-init-list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/ctor-init-list.cc -------------------------------------------------------------------------------- /C++/ctor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/ctor.cc -------------------------------------------------------------------------------- /C++/destructors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/destructors.cc -------------------------------------------------------------------------------- /C++/function.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/function.cc -------------------------------------------------------------------------------- /C++/glog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/glog.cc -------------------------------------------------------------------------------- /C++/graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/graph.cc -------------------------------------------------------------------------------- /C++/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/hash.cc -------------------------------------------------------------------------------- /C++/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/heap.h -------------------------------------------------------------------------------- /C++/heap_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/heap_main.cc -------------------------------------------------------------------------------- /C++/ifstream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/ifstream.cc -------------------------------------------------------------------------------- /C++/inheritance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/inheritance.cc -------------------------------------------------------------------------------- /C++/initialization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/initialization.cc -------------------------------------------------------------------------------- /C++/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/io.cc -------------------------------------------------------------------------------- /C++/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/iterator.cc -------------------------------------------------------------------------------- /C++/list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/list.cc -------------------------------------------------------------------------------- /C++/literals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/literals.cc -------------------------------------------------------------------------------- /C++/max_subarray.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/max_subarray.cc -------------------------------------------------------------------------------- /C++/namespaces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/namespaces.cc -------------------------------------------------------------------------------- /C++/numeric_limits.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/numeric_limits.cc -------------------------------------------------------------------------------- /C++/ofstream_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/ofstream_test.cc -------------------------------------------------------------------------------- /C++/operators.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/operators.cc -------------------------------------------------------------------------------- /C++/override.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/override.cc -------------------------------------------------------------------------------- /C++/permuation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/permuation.cc -------------------------------------------------------------------------------- /C++/placement_new.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/placement_new.cc -------------------------------------------------------------------------------- /C++/playground.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/playground.cc -------------------------------------------------------------------------------- /C++/pointers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/pointers.cc -------------------------------------------------------------------------------- /C++/power.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/power.cc -------------------------------------------------------------------------------- /C++/prime_factorization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/prime_factorization.cc -------------------------------------------------------------------------------- /C++/primes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/primes.cc -------------------------------------------------------------------------------- /C++/priority_q.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/priority_q.cc -------------------------------------------------------------------------------- /C++/random.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/random.cc -------------------------------------------------------------------------------- /C++/references.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/references.cc -------------------------------------------------------------------------------- /C++/rod_cutting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/rod_cutting.cc -------------------------------------------------------------------------------- /C++/scoped_enums.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/scoped_enums.cc -------------------------------------------------------------------------------- /C++/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/sort.h -------------------------------------------------------------------------------- /C++/sort_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/sort_main.cc -------------------------------------------------------------------------------- /C++/stack_protector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/stack_protector.cc -------------------------------------------------------------------------------- /C++/strings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/strings.cc -------------------------------------------------------------------------------- /C++/switch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/switch.cc -------------------------------------------------------------------------------- /C++/system_error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/system_error.cc -------------------------------------------------------------------------------- /C++/template_convertible.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/template_convertible.cc -------------------------------------------------------------------------------- /C++/template_forward_decl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/template_forward_decl.cc -------------------------------------------------------------------------------- /C++/template_meta_programming.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/template_meta_programming.cc -------------------------------------------------------------------------------- /C++/template_specialization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/template_specialization.cc -------------------------------------------------------------------------------- /C++/templates.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/templates.cc -------------------------------------------------------------------------------- /C++/templates1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/templates1/Makefile -------------------------------------------------------------------------------- /C++/templates1/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/templates1/main.cc -------------------------------------------------------------------------------- /C++/templates1/templates.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/templates1/templates.cc -------------------------------------------------------------------------------- /C++/templates1/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/templates1/templates.h -------------------------------------------------------------------------------- /C++/templates1/templates2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/templates1/templates2.cc -------------------------------------------------------------------------------- /C++/typeid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/typeid.cc -------------------------------------------------------------------------------- /C++/unordered_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/unordered_map.cc -------------------------------------------------------------------------------- /C++/vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/vector.cc -------------------------------------------------------------------------------- /C++/virtual.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C++/virtual.cc -------------------------------------------------------------------------------- /C/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/.gitignore -------------------------------------------------------------------------------- /C/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/Makefile -------------------------------------------------------------------------------- /C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/README.md -------------------------------------------------------------------------------- /C/binary-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/binary-tree.c -------------------------------------------------------------------------------- /C/btree/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/btree/.gitignore -------------------------------------------------------------------------------- /C/btree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/btree/Makefile -------------------------------------------------------------------------------- /C/btree/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/btree/btree.c -------------------------------------------------------------------------------- /C/const-structs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/const-structs.c -------------------------------------------------------------------------------- /C/const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/const.c -------------------------------------------------------------------------------- /C/fixed-size-arrays-other-module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/fixed-size-arrays-other-module.c -------------------------------------------------------------------------------- /C/fixed-size-arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/fixed-size-arrays.c -------------------------------------------------------------------------------- /C/flexible-array-member.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/flexible-array-member.c -------------------------------------------------------------------------------- /C/gcov/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/gcov/.gitignore -------------------------------------------------------------------------------- /C/gcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/gcov/Makefile -------------------------------------------------------------------------------- /C/gcov/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/gcov/test.c -------------------------------------------------------------------------------- /C/gprof/.gitignore: -------------------------------------------------------------------------------- 1 | gmon.out 2 | test 3 | -------------------------------------------------------------------------------- /C/gprof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/gprof/Makefile -------------------------------------------------------------------------------- /C/gprof/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/gprof/test.c -------------------------------------------------------------------------------- /C/initialization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/initialization.c -------------------------------------------------------------------------------- /C/libcurl-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/libcurl-test.c -------------------------------------------------------------------------------- /C/linker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/linker/Makefile -------------------------------------------------------------------------------- /C/linker/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/linker/foo.c -------------------------------------------------------------------------------- /C/linker/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/linker/main.c -------------------------------------------------------------------------------- /C/setjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/setjmp.c -------------------------------------------------------------------------------- /C/simd/.gitignore: -------------------------------------------------------------------------------- 1 | *.s 2 | -------------------------------------------------------------------------------- /C/simd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/simd/Makefile -------------------------------------------------------------------------------- /C/simd/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/simd/loop.c -------------------------------------------------------------------------------- /C/thread-local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/thread-local.c -------------------------------------------------------------------------------- /C/time/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/time/Makefile -------------------------------------------------------------------------------- /C/time/localtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/time/localtime.c -------------------------------------------------------------------------------- /C/time/utc_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/C/time/utc_time.c -------------------------------------------------------------------------------- /D/hello.d: -------------------------------------------------------------------------------- 1 | import std.stdio; 2 | 3 | int main() 4 | { 5 | writeln("Hello, world!"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /DSP/BookExamples/6-convolution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/DSP/BookExamples/6-convolution.c -------------------------------------------------------------------------------- /DSP/BookExamples/6-convolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/DSP/BookExamples/6-convolution.h -------------------------------------------------------------------------------- /DSP/BookExamples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/DSP/BookExamples/Makefile -------------------------------------------------------------------------------- /DSP/BookExamples/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/DSP/BookExamples/main.c -------------------------------------------------------------------------------- /Erlang/.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | -------------------------------------------------------------------------------- /Erlang/ErlangProgrammingBook/db.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/ErlangProgrammingBook/db.erl -------------------------------------------------------------------------------- /Erlang/ets_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/ets_test.erl -------------------------------------------------------------------------------- /Erlang/mancala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/mancala/README.md -------------------------------------------------------------------------------- /Erlang/mancala/ai.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/mancala/ai.erl -------------------------------------------------------------------------------- /Erlang/mancala/board.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/mancala/board.erl -------------------------------------------------------------------------------- /Erlang/mancala/debug_logging.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/mancala/debug_logging.hrl -------------------------------------------------------------------------------- /Erlang/mancala/mancala.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/mancala/mancala.erl -------------------------------------------------------------------------------- /Erlang/mancala/moves.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/mancala/moves.erl -------------------------------------------------------------------------------- /Erlang/programming_erlang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/programming_erlang/Makefile -------------------------------------------------------------------------------- /Erlang/programming_erlang/hello.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/programming_erlang/hello.erl -------------------------------------------------------------------------------- /Erlang/programming_erlang/kvs.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/programming_erlang/kvs.erl -------------------------------------------------------------------------------- /Erlang/records.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/records.erl -------------------------------------------------------------------------------- /Erlang/tut1.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/tut1.erl -------------------------------------------------------------------------------- /Erlang/tut2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/tut2.erl -------------------------------------------------------------------------------- /Erlang/tut3.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/tut3.erl -------------------------------------------------------------------------------- /Erlang/tut4.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/tut4.erl -------------------------------------------------------------------------------- /Erlang/tut5.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/tut5.erl -------------------------------------------------------------------------------- /Erlang/tut6.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/tut6.erl -------------------------------------------------------------------------------- /Erlang/tut8.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Erlang/tut8.erl -------------------------------------------------------------------------------- /GoogleCloudPlatform/CloudFunctions/go/.gcloudignore: -------------------------------------------------------------------------------- 1 | *.sh 2 | *.swp 3 | README.md 4 | 5 | -------------------------------------------------------------------------------- /GoogleCloudPlatform/CloudRun/hello/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | gcloud builds submit 4 | 5 | 6 | -------------------------------------------------------------------------------- /ImageMagick/Composition/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/ImageMagick/Composition/run.sh -------------------------------------------------------------------------------- /Java/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /Java/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Java/README -------------------------------------------------------------------------------- /Java/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Java/build.xml -------------------------------------------------------------------------------- /Java/src/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Java/src/HelloWorld.java -------------------------------------------------------------------------------- /Java/src/Shapes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Java/src/Shapes.java -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/LICENSE -------------------------------------------------------------------------------- /Lucene/.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | -------------------------------------------------------------------------------- /Lucene/HelloLucene.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Lucene/HelloLucene.java -------------------------------------------------------------------------------- /Lucene/lucene-core-3.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Lucene/lucene-core-3.3.0.jar -------------------------------------------------------------------------------- /Lucene/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Lucene/run.sh -------------------------------------------------------------------------------- /Mac/15MinuteTextEditor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/15MinuteTextEditor/Info.plist -------------------------------------------------------------------------------- /Mac/15MinuteTextEditor/MyDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/15MinuteTextEditor/MyDocument.h -------------------------------------------------------------------------------- /Mac/15MinuteTextEditor/MyDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/15MinuteTextEditor/MyDocument.m -------------------------------------------------------------------------------- /Mac/15MinuteTextEditor/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/15MinuteTextEditor/main.m -------------------------------------------------------------------------------- /Mac/AVFoundation/SimplePlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/AVFoundation/SimplePlayer/main.m -------------------------------------------------------------------------------- /Mac/Bindings/BindingsExample1/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/Bindings/BindingsExample1/main.m -------------------------------------------------------------------------------- /Mac/Bindings/BindingsExample2/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/Bindings/BindingsExample2/main.m -------------------------------------------------------------------------------- /Mac/ChildWindowCustomCell/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Mac/ChildWindowCustomCell/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/ChildWindowCustomCell/main.m -------------------------------------------------------------------------------- /Mac/CocoaAppUsingBindings/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaAppUsingBindings/Info.plist -------------------------------------------------------------------------------- /Mac/CocoaAppUsingBindings/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaAppUsingBindings/main.m -------------------------------------------------------------------------------- /Mac/CocoaDrawing/DrawController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaDrawing/DrawController.h -------------------------------------------------------------------------------- /Mac/CocoaDrawing/DrawController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaDrawing/DrawController.m -------------------------------------------------------------------------------- /Mac/CocoaDrawing/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaDrawing/Info.plist -------------------------------------------------------------------------------- /Mac/CocoaDrawing/MyCustomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaDrawing/MyCustomView.h -------------------------------------------------------------------------------- /Mac/CocoaDrawing/MyCustomView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaDrawing/MyCustomView.m -------------------------------------------------------------------------------- /Mac/CocoaDrawing/MyOpenGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaDrawing/MyOpenGLView.h -------------------------------------------------------------------------------- /Mac/CocoaDrawing/MyOpenGLView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaDrawing/MyOpenGLView.m -------------------------------------------------------------------------------- /Mac/CocoaDrawing/Photo 10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaDrawing/Photo 10.jpg -------------------------------------------------------------------------------- /Mac/CocoaDrawing/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaDrawing/main.m -------------------------------------------------------------------------------- /Mac/CocoaMenus/CocoaMenus_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaMenus/CocoaMenus_Prefix.pch -------------------------------------------------------------------------------- /Mac/CocoaMenus/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaMenus/Info.plist -------------------------------------------------------------------------------- /Mac/CocoaMenus/MenuAdder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaMenus/MenuAdder.h -------------------------------------------------------------------------------- /Mac/CocoaMenus/MenuAdder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaMenus/MenuAdder.m -------------------------------------------------------------------------------- /Mac/CocoaMenus/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaMenus/main.m -------------------------------------------------------------------------------- /Mac/CocoaTimer/CocoaTimer_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaTimer/CocoaTimer_Prefix.pch -------------------------------------------------------------------------------- /Mac/CocoaTimer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaTimer/Info.plist -------------------------------------------------------------------------------- /Mac/CocoaTimer/MyTimerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaTimer/MyTimerView.h -------------------------------------------------------------------------------- /Mac/CocoaTimer/MyTimerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaTimer/MyTimerView.m -------------------------------------------------------------------------------- /Mac/CocoaTimer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CocoaTimer/main.m -------------------------------------------------------------------------------- /Mac/CommonCrypto/aes/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CommonCrypto/aes/main.c -------------------------------------------------------------------------------- /Mac/CommonCrypto/sha/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CommonCrypto/sha/main.c -------------------------------------------------------------------------------- /Mac/CoreAnimation/AnimatedPoster/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Mac/CoreAnimation/Flash Beep Prototype/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Mac/CoreAnimation/Flash Cards.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CoreAnimation/Flash Cards.pages -------------------------------------------------------------------------------- /Mac/CoreAudio/PitchDetector/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CoreAudio/PitchDetector/main.m -------------------------------------------------------------------------------- /Mac/CoreAudio/PitchPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CoreAudio/PitchPlayer/Info.plist -------------------------------------------------------------------------------- /Mac/CoreAudio/PitchPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CoreAudio/PitchPlayer/main.m -------------------------------------------------------------------------------- /Mac/CoreAudio/TremoloUnit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CoreAudio/TremoloUnit/Info.plist -------------------------------------------------------------------------------- /Mac/CoreAudio/TremoloUnit/TremoloUnit.exp: -------------------------------------------------------------------------------- 1 | _TremoloUnitEntry -------------------------------------------------------------------------------- /Mac/CoreData/CDCLI/CDCLI.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CoreData/CDCLI/CDCLI.1 -------------------------------------------------------------------------------- /Mac/CoreData/CDCLI/CDCLI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CoreData/CDCLI/CDCLI.m -------------------------------------------------------------------------------- /Mac/CoreData/CDCLI/CDCLI_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CoreData/CDCLI/CDCLI_Prefix.pch -------------------------------------------------------------------------------- /Mac/CoreData/CDCLI/Run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CoreData/CDCLI/Run.h -------------------------------------------------------------------------------- /Mac/CoreData/CDCLI/Run.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CoreData/CDCLI/Run.m -------------------------------------------------------------------------------- /Mac/CoreData/CocoaAndModel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CoreData/CocoaAndModel/main.m -------------------------------------------------------------------------------- /Mac/CredTest2/CredTest2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CredTest2/CredTest2.1 -------------------------------------------------------------------------------- /Mac/CredTest2/CredTest2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CredTest2/CredTest2.m -------------------------------------------------------------------------------- /Mac/CredTest2/CredTest2_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/CredTest2/CredTest2_Prefix.pch -------------------------------------------------------------------------------- /Mac/DateFormatter/DateFormatter.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/DateFormatter/DateFormatter.1 -------------------------------------------------------------------------------- /Mac/DateFormatter/DateFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/DateFormatter/DateFormatter.m -------------------------------------------------------------------------------- /Mac/DateFormatter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/DateFormatter/main.c -------------------------------------------------------------------------------- /Mac/DeliciousSearchPrototype/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Mac/DeliciousSearchPrototype/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/DeliciousSearchPrototype/main.m -------------------------------------------------------------------------------- /Mac/DialogSheet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/DialogSheet/Info.plist -------------------------------------------------------------------------------- /Mac/DialogSheet/MySheeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/DialogSheet/MySheeter.h -------------------------------------------------------------------------------- /Mac/DialogSheet/MySheeter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/DialogSheet/MySheeter.m -------------------------------------------------------------------------------- /Mac/DialogSheet/MyWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/DialogSheet/MyWindowController.h -------------------------------------------------------------------------------- /Mac/DialogSheet/MyWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/DialogSheet/MyWindowController.m -------------------------------------------------------------------------------- /Mac/DialogSheet/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/DialogSheet/main.m -------------------------------------------------------------------------------- /Mac/Drawing/DrawingFunhouse/DrawingFunhouse/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Mac/Drawing/Layers/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/Drawing/Layers/AppController.h -------------------------------------------------------------------------------- /Mac/Drawing/Layers/AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/Drawing/Layers/AppController.m -------------------------------------------------------------------------------- /Mac/Drawing/Layers/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/Drawing/Layers/Info.plist -------------------------------------------------------------------------------- /Mac/Drawing/Layers/Layers_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/Drawing/Layers/Layers_Prefix.pch -------------------------------------------------------------------------------- /Mac/Drawing/Layers/MyOpenGLLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/Drawing/Layers/MyOpenGLLayer.h -------------------------------------------------------------------------------- /Mac/Drawing/Layers/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/Drawing/Layers/main.m -------------------------------------------------------------------------------- /Mac/Drawing/Layers/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/Drawing/Layers/version.plist -------------------------------------------------------------------------------- /Mac/FieldEditor/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/FieldEditor/AppController.h -------------------------------------------------------------------------------- /Mac/FieldEditor/AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/FieldEditor/AppController.m -------------------------------------------------------------------------------- /Mac/FieldEditor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/FieldEditor/Info.plist -------------------------------------------------------------------------------- /Mac/FieldEditor/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/FieldEditor/main.m -------------------------------------------------------------------------------- /Mac/FlowLayoutView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/FlowLayoutView/Info.plist -------------------------------------------------------------------------------- /Mac/FlowLayoutView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/FlowLayoutView/main.m -------------------------------------------------------------------------------- /Mac/GetFavicon/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/GetFavicon/Info.plist -------------------------------------------------------------------------------- /Mac/GetFavicon/MyAppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/GetFavicon/MyAppController.h -------------------------------------------------------------------------------- /Mac/GetFavicon/MyAppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/GetFavicon/MyAppController.m -------------------------------------------------------------------------------- /Mac/GetFavicon/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/GetFavicon/main.m -------------------------------------------------------------------------------- /Mac/GrowlExample/Growl.framework/Growl: -------------------------------------------------------------------------------- 1 | Versions/Current/Growl -------------------------------------------------------------------------------- /Mac/GrowlExample/Growl.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Mac/GrowlExample/Growl.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Mac/GrowlExample/Growl.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Mac/GrowlExample/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/GrowlExample/Icon.icns -------------------------------------------------------------------------------- /Mac/GrowlExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/GrowlExample/Info.plist -------------------------------------------------------------------------------- /Mac/GrowlExample/Notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/GrowlExample/Notifier.h -------------------------------------------------------------------------------- /Mac/GrowlExample/Notifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/GrowlExample/Notifier.m -------------------------------------------------------------------------------- /Mac/GrowlExample/WindowHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/GrowlExample/WindowHandler.h -------------------------------------------------------------------------------- /Mac/GrowlExample/WindowHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/GrowlExample/WindowHandler.m -------------------------------------------------------------------------------- /Mac/GrowlExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/GrowlExample/main.m -------------------------------------------------------------------------------- /Mac/LanguageAndProtocolEvaluation/pen-0.18.0/AUTHORS: -------------------------------------------------------------------------------- 1 | Ulric Eriksson 2 | -------------------------------------------------------------------------------- /Mac/LanguageAndProtocolEvaluation/pen-0.18.0/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Mac/LanguageAndProtocolEvaluation/pen-0.18.0/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /Mac/LanguageAndProtocolEvaluation/ruby/http-server/app/helpers/test_helper.rb: -------------------------------------------------------------------------------- 1 | module TestHelper 2 | end 3 | -------------------------------------------------------------------------------- /Mac/LicenseKey/LicenseKey.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/LicenseKey/LicenseKey.1 -------------------------------------------------------------------------------- /Mac/LicenseKey/LicenseKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/LicenseKey/LicenseKey.m -------------------------------------------------------------------------------- /Mac/LicenseKey/scripts.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drichardson/examples/HEAD/Mac/LicenseKey/scripts.tar -------------------------------------------------------------------------------- /Mac/LicenseKey/scripts/LicenseKey.txt: -------------------------------------------------------------------------------- 1 | dR/F6Y30l+dyB9XVwgVXTgnxmp9EusEnPkgXuIabTw== 2 | -------------------------------------------------------------------------------- /Mac/LicenseKey/scripts/build_c_code.sh: -------------------------------------------------------------------------------- 1 | openssl enc -base64 -d