├── .gitignore ├── C-ObjC-Swift └── Performance_Console │ ├── .DS_Store │ ├── Performance_Console.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── romitagl.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── romitagl.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── Performance_Console.xcscheme │ │ └── xcschememanagement.plist │ └── Performance_Console │ ├── CPlusPlus.cpp │ ├── CPlusPlus.h │ ├── ObjC.h │ ├── ObjC.m │ ├── ObjCtoCPlusPlus.h │ ├── ObjCtoCPlusPlus.mm │ ├── Performance_Console-Bridging-Header.h │ └── main.swift ├── LICENSE ├── README.md ├── openssl-crypto ├── Makefile ├── README.md ├── main.cpp ├── sslcrypto.cpp └── sslcrypto.h ├── persistent_buffer ├── Makefile ├── README.md ├── buffer.h ├── main.cpp └── zmq.hpp └── rectangles ├── Makefile ├── README.md ├── include └── rapidjson │ ├── allocators.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ ├── en.h │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal │ ├── biginteger.h │ ├── diyfp.h │ ├── dtoa.h │ ├── ieee754.h │ ├── itoa.h │ ├── meta.h │ ├── pow10.h │ ├── regex.h │ ├── stack.h │ ├── strfunc.h │ ├── strtod.h │ └── swap.h │ ├── istreamwrapper.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ ├── inttypes.h │ └── stdint.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ └── writer.h ├── json_input_files ├── rectangles.json ├── rectangles_duplicates.json ├── rectangles_invalid_format.json ├── rectangles_invalid_number_rectangles.json └── rectangles_invalid_rectangle_format.json ├── jsonparser.cpp ├── jsonparser.h ├── main.cpp ├── main_test.cpp ├── rectangle.cpp ├── rectangle.h ├── rectanglebuilder.cpp ├── rectanglebuilder.h ├── rectangleoverlaps.cpp └── rectangleoverlaps.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/.gitignore -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/.DS_Store -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console.xcodeproj/project.xcworkspace/xcuserdata/romitagl.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console.xcodeproj/project.xcworkspace/xcuserdata/romitagl.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console.xcodeproj/xcuserdata/romitagl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console.xcodeproj/xcuserdata/romitagl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console.xcodeproj/xcuserdata/romitagl.xcuserdatad/xcschemes/Performance_Console.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console.xcodeproj/xcuserdata/romitagl.xcuserdatad/xcschemes/Performance_Console.xcscheme -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console.xcodeproj/xcuserdata/romitagl.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console.xcodeproj/xcuserdata/romitagl.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console/CPlusPlus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console/CPlusPlus.cpp -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console/CPlusPlus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console/CPlusPlus.h -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console/ObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console/ObjC.h -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console/ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console/ObjC.m -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console/ObjCtoCPlusPlus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console/ObjCtoCPlusPlus.h -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console/ObjCtoCPlusPlus.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console/ObjCtoCPlusPlus.mm -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console/Performance_Console-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console/Performance_Console-Bridging-Header.h -------------------------------------------------------------------------------- /C-ObjC-Swift/Performance_Console/Performance_Console/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/C-ObjC-Swift/Performance_Console/Performance_Console/main.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/README.md -------------------------------------------------------------------------------- /openssl-crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/openssl-crypto/Makefile -------------------------------------------------------------------------------- /openssl-crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/openssl-crypto/README.md -------------------------------------------------------------------------------- /openssl-crypto/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/openssl-crypto/main.cpp -------------------------------------------------------------------------------- /openssl-crypto/sslcrypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/openssl-crypto/sslcrypto.cpp -------------------------------------------------------------------------------- /openssl-crypto/sslcrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/openssl-crypto/sslcrypto.h -------------------------------------------------------------------------------- /persistent_buffer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/persistent_buffer/Makefile -------------------------------------------------------------------------------- /persistent_buffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/persistent_buffer/README.md -------------------------------------------------------------------------------- /persistent_buffer/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/persistent_buffer/buffer.h -------------------------------------------------------------------------------- /persistent_buffer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/persistent_buffer/main.cpp -------------------------------------------------------------------------------- /persistent_buffer/zmq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/persistent_buffer/zmq.hpp -------------------------------------------------------------------------------- /rectangles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/Makefile -------------------------------------------------------------------------------- /rectangles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/README.md -------------------------------------------------------------------------------- /rectangles/include/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/allocators.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/document.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/encodings.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/error/en.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/error/error.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/fwd.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/memorystream.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/pointer.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/reader.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/schema.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/stream.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /rectangles/include/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/include/rapidjson/writer.h -------------------------------------------------------------------------------- /rectangles/json_input_files/rectangles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/json_input_files/rectangles.json -------------------------------------------------------------------------------- /rectangles/json_input_files/rectangles_duplicates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/json_input_files/rectangles_duplicates.json -------------------------------------------------------------------------------- /rectangles/json_input_files/rectangles_invalid_format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/json_input_files/rectangles_invalid_format.json -------------------------------------------------------------------------------- /rectangles/json_input_files/rectangles_invalid_number_rectangles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/json_input_files/rectangles_invalid_number_rectangles.json -------------------------------------------------------------------------------- /rectangles/json_input_files/rectangles_invalid_rectangle_format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/json_input_files/rectangles_invalid_rectangle_format.json -------------------------------------------------------------------------------- /rectangles/jsonparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/jsonparser.cpp -------------------------------------------------------------------------------- /rectangles/jsonparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/jsonparser.h -------------------------------------------------------------------------------- /rectangles/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/main.cpp -------------------------------------------------------------------------------- /rectangles/main_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/main_test.cpp -------------------------------------------------------------------------------- /rectangles/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/rectangle.cpp -------------------------------------------------------------------------------- /rectangles/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/rectangle.h -------------------------------------------------------------------------------- /rectangles/rectanglebuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/rectanglebuilder.cpp -------------------------------------------------------------------------------- /rectangles/rectanglebuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/rectanglebuilder.h -------------------------------------------------------------------------------- /rectangles/rectangleoverlaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/rectangleoverlaps.cpp -------------------------------------------------------------------------------- /rectangles/rectangleoverlaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romitagl/shared/HEAD/rectangles/rectangleoverlaps.h --------------------------------------------------------------------------------