2 Commits 4a6f376294 ... e477c545b3

Author SHA1 Message Date
  SVAKSHA e477c545b3 @daqcore : Actors.jl 8 years ago
  SVAKSHA 844b074a0f @daqcore : BitRegs.jl 8 years ago
3 changed files with 6 additions and 1 deletions
  1. 1 0
      HPC.md
  2. 3 0
      IO.md
  3. 2 1
      Programming-Paradigms.md

+ 1 - 0
HPC.md

@@ -101,6 +101,7 @@ Mailing list : https://groups.google.com/forum/#!forum/julia-gpu
 ----
 
 # [CONCURRENCY](https://en.wikipedia.org/wiki/Concurrency_%28computer_science%29)
++ [Actors.jl](https://github.com/daqcore/Actors.jl) :: An Actor Model implementation in Julia. 
 
 ## [Distributed Computing](https://en.wikipedia.org/wiki/Category:Distributed_computing)
 **Cloud/ Cluster**

+ 3 - 0
IO.md

@@ -8,6 +8,7 @@
 + [FileIO.jl](https://github.com/JuliaIO/FileIO.jl) :: general dispatcher for `save` and `load`, support for recognizing magic bytes and file-extensions
 + [StrPack.jl](https://github.com/pao/StrPack.jl) :: for encoding and decoding binary data streams and there is some [documentation](https://strpackjl.readthedocs.org/) at readthedocs.org.
 
+----
 
 # Data Formats
 **Libraries for Data serialization and File formats.**
@@ -52,6 +53,8 @@
 + [XPT.jl](https://github.com/lendle/XPT.jl) :: The XPT package reads SAS® software transport files and converts SAS software datasets to DataFrames.
 + [XSV.jl](https://github.com/benhamner/XSV.jl) :: CSV, TSV, etc. streaming and batch parser.
 
+----
+
 # Image formats
 + [ImageMagick.jl](https://github.com/JuliaIO/ImageMagick.jl) :: Thin Wrapper for the library ImageMagick, for general-purpose image saving and loading
 + [QuartzImageIO.jl](https://github.com/JuliaIO/QuartzImageIO.jl) :: Thin wrapper around OSX's native image format saving and loading

+ 2 - 1
Programming-Paradigms.md

@@ -79,9 +79,10 @@
 
 # Programming Paradigms
 __Packages and resources that support various programming styles, Software Architecture and CS paradigms.__
-+ [Programming Language Theory](https://github.com/steshaw/plt-study) :: Mathematics, Compilers, Functional Programming, and other papers.
++ [BitRegs.jl](https://github.com/daqcore/BitRegs.jl) :: Julia package for bit and register operations. 
 + [InterVal.jl](https://github.com/J-Sarnoff/InterVal.jl) :: Intervals are inter-values, an interval is its values and their intra-values.
 + [LilKanren.jl](https://github.com/lilinjn/LilKanren.jl) :: A collection of Kanren implementations in Julia. _miniKanren_ is an embedded Domain Specific Language for logic programming.
++ [Programming Language Theory](https://github.com/steshaw/plt-study) :: Mathematics, Compilers, Functional Programming, and other papers.
 
 ### [Control Flow](https://en.wikipedia.org/wiki/Category:Control_flow)
 + [Hooking.jl](https://github.com/Keno/Hooking.jl) :: Function entry hooking for julia and c functions.