https://github.com/arnauld/hydra
Task Parallel Library a multi-head library!
https://github.com/arnauld/hydra
Last synced: 11 months ago
JSON representation
Task Parallel Library a multi-head library!
- Host: GitHub
- URL: https://github.com/arnauld/hydra
- Owner: Arnauld
- Created: 2012-02-10T13:01:54.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-02-12T13:22:08.000Z (over 14 years ago)
- Last Synced: 2025-01-10T18:59:10.691Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 117 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
Links to starts
===============
* TPL Dataflow API doc (en)
* [Threading in C#](http://www.albahari.com/threading/part5.aspx)
* [Introduction à TPL DataFlow en C# (french)](http://msdn.microsoft.com/fr-fr/vcsharp/hh301085)
* [Sous le capot : Etude de la Task Parallel Library](http://blogs.msdn.com/b/eternalcoding/archive/2011/05/16/fr-sous-le-capot-etude-de-la-task-parallel-library.aspx)
* [Task Parallel Library in .NET 4.0 – Part 1](http://codingndesign.com/blog/?p=195)
* [Task Parallel Library in .NET 4.0 – Part 2](http://codingndesign.com/blog/?p=198)
* [Task Parallel Library in .NET 4.0 – Part 3](http://codingndesign.com/blog/?p=202)
* [TPL DataFlow–BufferBlock & Load Balancing](http://codingndesign.com/blog/?p=212)
Annexes
=======
## Git notes
### [Git: Move recent commit to a new branch](http://stackoverflow.com/questions/1628563/git-move-recent-commit-to-a-new-branch)
```bash
git branch newbranch
git reset --hard HEAD~3 # go back 3 commits
git checkout newbranch
```
This can be used when file in the current branch should be committed in an other branch, but a checkout would loose the modifications.