create account

Towards an Utopian contribution to particle physics - the roadmap and how to get started by lemouth

View this thread on: hive.blogpeakd.comecency.com
· @lemouth ·
$231.62
Towards an Utopian contribution to particle physics - the roadmap and how to get started
Two weeks ago, I sketched a crazy idea detailing how Utopian could consist in a handle on external contributions to state-of-the-art particle physics research. I honestly did not know what to expect, and I was really amazed by the positive reaction of the community. 

**Thanks a lot to all!!!** I am now over-motivated by this project and I really want to see it realized.

For more information, please check [**this post**](https://steemit.com/utopian/@lemouth/can-the-potential-of-utopian-advance-cutting-edge-science) (and its comment section).

<div class="pull-left">

<center> <img src="https://s17.postimg.cc/86el2c3fj/boom.jpg">
<sub>[image credits: <a href="https://pixabay.com/en/fractal-light-light-fractal-1759271/">Pixabay</a> (CC0)]</sub> </center> 
</div>

In a nutshell, this project fits into what is commonly called **the preservation of the results of the LHC experiments**. 

One here aims **to implement, within a public and open-source platform, several LHC analyses that target the discovery of new phenomena**. 

The main motivation is that theorists are continuously developing new ideas and new theories, and it is crucial to be able to test their viability with respect to LHC data. 

In this context, a colleague and I have developed a framework called [**MadAnalysis 5**](https://launchpad.net/madanalysis5). This framework can do many things, and reinterpreting the results of the LHC analyses is one of these things.

Although this platform is kind of developer-friendly, we are currently lacking of manpower for implementing new LHC analyses. For some reasons that I could speak about during hours (but I will not), physicists are mainly users and not developers.

**This is where the Utopian community could enter into the game** In particular, @alexdory, @elguille, @howo, @irelandscape, @jorge-caceres, @mactro, @mcfarhat, @sathyasankar and @roj have shown strong interests in this project. Thanks to all of them (again :p )!

I will be of course glad to add any new name to this list. Just let me know.
___

## IN PRACTICE: THE ROADMAP ##

For practical purposes, I have decided to factor this project into smaller pieces easier to tackle separately. Moreover, there will be no timeline, as the progress of the participants will dictate the timeline.

I am now listing below the different milestones that I have defined, tagging them either as **regular blog posts** (on the Steem blockchain) addressing particle physics stuff, or as **task requests** (on Utopian). Through blog posts, I will provide material to digest the physics, whereas through task requests, we will focus together on the coding part.

* **STEP 0: Getting started** (see below).
Installation of a local copy of the MadAnalysis 5 platform by the participants. This should not take too long.

* **STEP 1: Physics objects and analyses of interest** (a blog post to appear next week).
I will provide information about the physics objects that are reconstructed in an LHC detector. Those are the objects which we will have to deal with within the code, together with their properties. 
I will also present a selection of LHC analyses (at least one per participant to the project) that we could consider, explaining why they are important. Each participant will pick (at least) one. 

* **STEP 2: Playing with detector-level objects** (a task to appear by the end of next week).
As a first exercise, one will investigate the structure of a MadAnalysis C++ analysis, create a fresh (blank) analysis and learn how to deal with the physics objects reconstructed in a detector in terms of code. A few exercises will be proposed so that everyone could get used to both the MadAnalysis 5 language and the physics behind it.

* **STEP 3: Definition of the physics objects relevant for the selected analyses** (task).
Each participant will implement a snippet of code selecting the objects relevant for the considered analyses. For instance, we may detect dozens of electrons after one specific collision, but only those satisfying certain criteria are interesting for a given analysis. This selection will be implemented in C++.

* **STEP 4: About LHC analysis strategies for unravelling new phenomena** (post/task). 
I will detail how one designs an LHC analysis from scratch, what is a signal region (*i.e.* a specific analysis strategy) and a cut (a selection of specific collisions exhibiting given properties). 
I will then detail how to implement regions and cuts in the MadAnalysis 5 framework. Each participant will then be welcome to implement the regions and cuts related to his/her own analysis. 

* **STEP 5: Simulating LHC collisions** (blog post).
I will detail how one can simulate efficiently millions of LHC collisions on a simple laptop. This will be useful to the next step. I will provide some funny exercises. 

* **STEP 6: Validation** (task).
This is the toughest part of the project. Having a running code is not sufficient. One will confront predictions made with it, for a well-defined scenario, to experimental simulations and verify their agreement. This will include the tuning of the detector simulation and the definition of simulated signals of interest. Potential discrepancies may appear and will have to be fixed.

* **STEP 7: Victory! Bonus: a physics project and publication**?
After that the reimplementations will be validated,  the codes will be merged to the main branch of the MadAnalysis 5 program. **Each analysis code will in addition be assigned a Digital Object Identifier so that it will become citable by physicists in real research work**. 


**Utopian being about realizing his/her dreams, why not moving on with extra analyses or a real physics project to be run on the Steem blockchain, using the work produced so far? Who knows where this will bring us? ;)**

___

## GETTING STARTED ##

In order to start this project, each participant must install locally a version of the MadAnalysis 5 program. Note that I know that the steps below trivially work on Linux and Mac OS. I am more scared by Windows… [**Any Windows user in the room**](http://janeohara.typepad.com/.a/6a00e553feb60f88340120a6b1fb76970c-800wi)?

 1. I assume that each participant has a system with a recent version of the [**gcc compiler**](https://gcc.gnu.org/) installed, as well as with the [**gmake**](https://www.gnu.org/software/make/) utility available.

 2. One should first install the latest version of the [**root**](https://root.cern.ch/downloading-root) framework, to be downloaded from CERN. This is a requirement in order to allow for the simulation of the LHC detectors.

 3. It is then time to download MadAnalysis 5 from [**launchpad**](https://launchpad.net/madanalysis5). Please take version 1.6.

 4. Unpack the tarball, and start the code by typing, from the directory in which the tarball has been unpacked,
  ``` ./bin/ma5```
This initializes the MadAnalysis 5 command line interface, checks the presence of all mandatory packages and which of the optional packages are available. After a successful initialization step, the prompt **ma5>** is shown on the screen and we are ready to go.

 5. If everything is fine at this stage, please type, within the MadAnalysis 5 interpreter,
  ```install delphes```
This will install a simulator of the LHC detectors within the framework. And this simulator is called [**Delphes**](https://cp3.irmp.ucl.ac.be/projects/delphes).

6. Finally, if everything is still fine at this stage, the last necessary step is to type
  ```install PAD```
This will create a directory named PAD in which all currently existing reimplementations will be downloaded. Everything that will be downloaded is documented on the [**MadAnalysis5 Public Analysis Database**](http://madanalysis.irmp.ucl.ac.be/wiki/PublicAnalysisDatabase).

**Please let me know whether this works. If not, do not hesitate to comment or to grab me on discord (@lemouth#8260).**
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 687 others
properties (23)
authorlemouth
permlinktowards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started
categoryutopian-io
json_metadata{"tags":["utopian-io","blog","steemstem","physics","science"],"users":["alexdory","elguille","howo","irelandscape","jorge-caceres","mactro","mcfarhat","sathyasankar","roj","lemouth"],"image":["https://s17.postimg.cc/86el2c3fj/boom.jpg"],"links":["https://steemit.com/utopian/@lemouth/can-the-potential-of-utopian-advance-cutting-edge-science","https://pixabay.com/en/fractal-light-light-fractal-1759271/","https://launchpad.net/madanalysis5","http://janeohara.typepad.com/.a/6a00e553feb60f88340120a6b1fb76970c-800wi","https://gcc.gnu.org/","https://www.gnu.org/software/make/","https://root.cern.ch/downloading-root","https://cp3.irmp.ucl.ac.be/projects/delphes","http://madanalysis.irmp.ucl.ac.be/wiki/PublicAnalysisDatabase"],"app":"steemit/0.1","format":"markdown"}
created2018-05-14 13:44:39
last_update2018-05-14 13:44:39
depth0
children80
last_payout2018-05-21 13:44:39
cashout_time1969-12-31 23:59:59
total_payout_value184.758 HBD
curator_payout_value46.866 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,912
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,640,174
net_rshares46,661,065,559,165
author_curate_reward""
vote details (751)
@abduljaved ·
Good
properties (22)
authorabduljaved
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180524t142758156z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 14:28:00
last_update2018-05-24 14:28:00
depth1
children1
last_payout2018-05-31 14:28:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation490,495,706
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,466,273
net_rshares0
@spaminator ·
$0.36
[Source]()
Generic comments could be mistaken for spam.  

More information: 
[The Art of Commenting](https://steemit.com/steemcleaners/@steemcleaners/the-art-of-commenting)
[Comment Classifications](https://steemcleaners.org/comment-classifications/)

πŸ‘  
properties (23)
authorspaminator
permlinkre-abduljaved-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180524t142758156z-20180527t204853112z
categoryutopian-io
json_metadata{"app":"steemcleaners/0.2","format":"markdown+html","community":"steemcleaners"}
created2018-05-27 20:48:54
last_update2018-05-27 20:48:54
depth2
children0
last_payout2018-06-03 20:48:54
cashout_time1969-12-31 23:59:59
total_payout_value0.318 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length259
author_reputation68,078,150,632,608
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,003,411
net_rshares92,864,429,761
author_curate_reward""
vote details (1)
@cardboard ·
Crazy idea :D tipuvote!
properties (22)
authorcardboard
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t152731918z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 15:27:33
last_update2018-05-15 15:27:33
depth1
children1
last_payout2018-05-22 15:27:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation31,522,757,177,122
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,844,124
net_rshares0
@lemouth ·
Thanks a lot! :)
properties (22)
authorlemouth
permlinkre-cardboard-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t195617741z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 19:56:18
last_update2018-05-15 19:56:18
depth2
children0
last_payout2018-05-22 19:56:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,882,083
net_rshares0
@curtiscolwell ·
$0.02
Folding at home has a new competitor :P
πŸ‘  
properties (23)
authorcurtiscolwell
permlinkre-lemouth-2018514t91948751z
categoryutopian-io
json_metadata{"tags":["utopian-io","blog","steemstem","physics","science"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-05-14 16:19:51
last_update2018-05-14 16:19:51
depth1
children1
last_payout2018-05-21 16:19:51
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation109,502,819,544
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,665,508
net_rshares5,168,605,998
author_curate_reward""
vote details (1)
@lemouth ·
Particle physics cannot be really compared with folding@home. If you refer to the folding@home project I have in mind, of course :)
properties (22)
authorlemouth
permlinkre-curtiscolwell-re-lemouth-2018514t91948751z-20180514t201514555z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 20:15:15
last_update2018-05-14 20:15:15
depth2
children0
last_payout2018-05-21 20:15:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,699,751
net_rshares0
@cyprianj ·
$0.02
@lemouth
A project with high chances of success, i dont really know much about physics, but from what i have read so far about this project, it is sure a promising one.
More strenght and grace to you as you keep educating the community. You efforts on steemstem has been awesome, kudos sir
@cyprianj
πŸ‘  
properties (23)
authorcyprianj
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t085229308z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth","cyprianj"],"app":"steemit/0.1"}
created2018-05-15 08:53:18
last_update2018-05-15 08:53:18
depth1
children1
last_payout2018-05-22 08:53:18
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length299
author_reputation75,398,556,172,423
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,788,683
net_rshares5,193,913,457
author_curate_reward""
vote details (1)
@lemouth ·
Thanks for passing by. This is a huge project, and if it works, it will create a precedent: an Utopian contribution to state-of-the-art research. I am really excited ^^ :)
properties (22)
authorlemouth
permlinkre-cyprianj-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t200631661z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 20:06:33
last_update2018-05-15 20:06:33
depth2
children0
last_payout2018-05-22 20:06:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,883,410
net_rshares0
@effofex ·
$0.05
Oh wow, this looks like a really interesting intersection of the blockchain and real life. Please do keep us updated.

I'm running a bunch of *nix software under the [WSL Bash shell](https://docs.microsoft.com/en-us/windows/wsl/install-win10), I'll try to make some time to see how your code plays with that environment.
πŸ‘  
properties (23)
authoreffofex
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180517t040339302z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://docs.microsoft.com/en-us/windows/wsl/install-win10"],"app":"steemit/0.1"}
created2018-05-17 04:03:39
last_update2018-05-17 04:03:39
depth1
children3
last_payout2018-05-24 04:03:39
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length320
author_reputation14,429,105,750,792
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,120,953
net_rshares10,434,486,756
author_curate_reward""
vote details (1)
@lemouth ·
I didn't know the existence of the WSL bash shell. Thanks for bringing this to my attention, and please keep me updated. This may give an alternative to our windows users. I always have 2-3 students running on windows when I am lecturing this at international schools... ;)
properties (22)
authorlemouth
permlinkre-effofex-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180518t072650313z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-18 07:26:51
last_update2018-05-18 07:26:51
depth2
children2
last_payout2018-05-25 07:26:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length273
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,328,882
net_rshares0
@effofex ·
I'm hoping to give an install a try later this week, I'll report back.

We always have a few students running Macs, which screws us up since a lot of the software we use in the courses is Win based.  Our uni has a virtual computing lab and they've really been helpful for this problem.  We spend a little time creating an os image with the software fully installed, and students can remote in to a virtual machine.  It completely eliminates our old problems of spending 90% of the demo time getting people up and running.
properties (22)
authoreffofex
permlinkre-lemouth-re-effofex-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180523t024900640z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-23 02:48:57
last_update2018-05-23 02:48:57
depth3
children1
last_payout2018-05-30 02:48:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length521
author_reputation14,429,105,750,792
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,186,428
net_rshares0
@elguille ·
$0.05
Thanks for the guidance, @lemouth. I will install the software in the next days and post about it. The project looks very nice. I will have a chance to probe my very basic knowledge about particle physics and learn much more.
πŸ‘  
properties (23)
authorelguille
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t225945234z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-05-15 22:59:45
last_update2018-05-15 22:59:45
depth1
children1
last_payout2018-05-22 22:59:45
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation4,156,830,021,807
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,903,474
net_rshares10,392,092,233
author_curate_reward""
vote details (1)
@lemouth ·
Just let me know if you have issues. I am here to help :)
properties (22)
authorlemouth
permlinkre-elguille-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180516t184322834z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-16 18:43:24
last_update2018-05-16 18:43:24
depth2
children0
last_payout2018-05-23 18:43:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,058,042
net_rshares0
@espoem ·
$0.96
Hi, it was nice to read and we are looking forward to seeing more progress of this project as it sounds awesome. There is one small caveat which I believe could be resolve easily.

We currently support projects hosted on GitHub and it would be really great if you could mirror it there. You can read about this requirement the [rules page](https://join.utopian.io/rules/) in the section *Github Integration and Repositories*.

We would like to avoid making exceptions if possible, one reason is that the posts may be reviewed by different people and if they follow our defined requirements, we might face a misunderstanding.

If you do have a GitHub repository, remember to put the link at the top so it can be easily recognized.

Your contribution has been evaluated according to [Utopian rules and guidelines](https://utopian.io/rules), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/1/12221312)

---- 
Need help? Write a ticket on https://support.utopian.io/. 
Chat with us on [Discord](https://discord.gg/uTyJkNm). 
[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorespoem
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t080303960z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://join.utopian.io/rules/","https://utopian.io/rules","https://review.utopian.io/result/1/12221312","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2018-05-15 08:03:06
last_update2018-05-15 08:03:06
depth1
children1
last_payout2018-05-22 08:03:06
cashout_time1969-12-31 23:59:59
total_payout_value0.745 HBD
curator_payout_value0.219 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,207
author_reputation59,289,149,412,912
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,782,637
net_rshares195,408,102,112
author_curate_reward""
vote details (29)
@lemouth ·
Thanks for comment and providing the review to my post.. Let me answer it in various steps.

For various reasons, I cannot move the entire MadAnalysis project to GitHub. The main of these reasons is that this code is widely used in the particle physics community (the three corresponding articles are gathering several hundreds of citations as a proof) and I don't want to confuse my own community. However, the Utopian-MadAnalysis project has nothing to do with the development of MadAnalysis. Having the main MadAnalysis repository on LaunchPad instead of GitHub is therefore not a blocking point in my opinion. None of the tasks done within this project will impact the core code. 

The idea of this project is to work on the Physics Analysis Database of MadAnalysis. This database is a collection of external contributions that are stored on Inspire (again not GitHub) and that allows to associate a DOI to them, so that they could be cited in physics papers. This project is to develop some of these external contributions. 

However, what matters is that the finalized code is submitted to Inspire to get the DOI. This does not prevent the development to be done on GitHub and be mirrored to Inspire at the very end. I can even connect the main program to the github repository as well if necessary. 

This is what I had in mind actually, and I think that it fits the Utopian rules so that there is no need to make any exception.

Note that I am fine to continue this discussion either here or on discord (I am not planning to post the next episode before next week anyways, or at least before next Friday).
properties (22)
authorlemouth
permlinkre-espoem-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t195045429z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 19:50:45
last_update2018-05-15 19:50:45
depth2
children0
last_payout2018-05-22 19:50:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,613
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,881,395
net_rshares0
@eurogee · (edited)
$0.02
Though not a physicist nor enthusiast neither am I a programmer but I honestly believe this project have got huge value to bless steem ecosystem with.

@eurogee of @euronation community
πŸ‘  
properties (23)
authoreurogee
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t165427723z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["eurogee","euronation"],"app":"steemit/0.1"}
created2018-05-14 16:54:27
last_update2018-05-14 16:56:06
depth1
children3
last_payout2018-05-21 16:54:27
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation38,260,360,943,030
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,671,091
net_rshares5,168,605,998
author_curate_reward""
vote details (1)
@lemouth ·
Thanks for your words and passing by :)
properties (22)
authorlemouth
permlinkre-eurogee-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t201847017z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 20:18:48
last_update2018-05-14 20:18:48
depth2
children2
last_payout2018-05-21 20:18:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,700,208
net_rshares0
@eurogee ·
God bless you too
properties (22)
authoreurogee
permlinkre-lemouth-re-eurogee-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t210228725z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 21:02:27
last_update2018-05-14 21:02:27
depth3
children1
last_payout2018-05-21 21:02:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation38,260,360,943,030
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,705,774
net_rshares0
@freemaninthehall ·
Δ± hope that Progeny is also successful!!
πŸ‘  
properties (23)
authorfreemaninthehall
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180516t213935934z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-16 21:39:42
last_update2018-05-16 21:39:42
depth1
children1
last_payout2018-05-23 21:39:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation1,532,321,654
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,078,578
net_rshares590,659,148
author_curate_reward""
vote details (1)
@lemouth ·
Me too! :)
πŸ‘  
properties (23)
authorlemouth
permlinkre-freemaninthehall-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180518t071603168z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-18 07:16:06
last_update2018-05-18 07:16:06
depth2
children0
last_payout2018-05-25 07:16:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,327,605
net_rshares612,082,019
author_curate_reward""
vote details (1)
@greenrun · (edited)
$0.02
Even though I have zero idea of either python or CC++ programming language, I would say this concept is new, exciting and useful for sharing the knowledge of science. Who wouldn't like a database of information that is free for the taking? I know I will.

Edit: I use windows always :)
πŸ‘  
properties (23)
authorgreenrun
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t135713863z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 13:57:18
last_update2018-05-14 13:58:57
depth1
children6
last_payout2018-05-21 13:57:18
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length285
author_reputation38,837,562,295,457
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,642,260
net_rshares5,168,605,998
author_curate_reward""
vote details (1)
@lemouth ·
$0.03
> Who wouldn't like a database of information that is free for the taking?

We all want it! :)

> Edit: I use windows always :)

Never too late to move to a better paradigm :p
πŸ‘  
properties (23)
authorlemouth
permlinkre-greenrun-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t144112096z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 14:41:12
last_update2018-05-14 14:41:12
depth2
children2
last_payout2018-05-21 14:41:12
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length175
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,649,340
net_rshares6,487,259,690
author_curate_reward""
vote details (1)
@greenrun ·
I'd give Mac OS a try very soon.
properties (22)
authorgreenrun
permlinkre-lemouth-re-greenrun-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t183734362z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 18:37:39
last_update2018-05-14 18:37:39
depth3
children1
last_payout2018-05-21 18:37:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation38,837,562,295,457
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,686,587
net_rshares0
@onthehook8 ·
$0.41
Lol, they're over my head too.
πŸ‘  
properties (23)
authoronthehook8
permlinkre-greenrun-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t143147930z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 14:31:48
last_update2018-05-14 14:31:48
depth2
children2
last_payout2018-05-21 14:31:48
cashout_time1969-12-31 23:59:59
total_payout_value0.311 HBD
curator_payout_value0.103 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation199,664,129,925,426
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,647,771
net_rshares84,082,712,749
author_curate_reward""
vote details (1)
@lemouth ·
$0.05
Never too late to learn, isn't it? :D
πŸ‘  ,
properties (23)
authorlemouth
permlinkre-onthehook8-re-greenrun-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t144135191z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 14:41:36
last_update2018-05-14 14:41:36
depth3
children1
last_payout2018-05-21 14:41:36
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,649,404
net_rshares10,418,192,144
author_curate_reward""
vote details (2)
@howo ·
$0.02
Can't wait for the rest of the articles to contribute :D
πŸ‘  
properties (23)
authorhowo
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t175222338z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 17:52:21
last_update2018-05-14 17:52:21
depth1
children1
last_payout2018-05-21 17:52:21
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation515,737,941,459,006
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,679,856
net_rshares5,168,605,998
author_curate_reward""
vote details (1)
@lemouth ·
$0.99
You will have to wait... I didn't even start to write the next episode ^^
πŸ‘  
properties (23)
authorlemouth
permlinkre-howo-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t203234659z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 20:32:36
last_update2018-05-14 20:32:36
depth2
children0
last_payout2018-05-21 20:32:36
cashout_time1969-12-31 23:59:59
total_payout_value0.746 HBD
curator_payout_value0.248 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,702,033
net_rshares203,108,787,168
author_curate_reward""
vote details (1)
@howo ·
$2.99
Installed and ready to run !  

I stumbled upon a few issues which were solved by going in to the root folder and running

> cd bin
> . thisroot.sh

don't forget the dot before thisisroot.sh

and then go back tot he ma5 folder and run it like indicated :) 

You shouldn't have more issues as thisisroot.sh will set all the correct binary paths.
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorhowo
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180516t193512040z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-16 19:35:12
last_update2018-05-16 19:35:12
depth1
children3
last_payout2018-05-23 19:35:12
cashout_time1969-12-31 23:59:59
total_payout_value2.848 HBD
curator_payout_value0.141 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length344
author_reputation515,737,941,459,006
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,064,902
net_rshares617,293,286,902
author_curate_reward""
vote details (34)
@lemouth ·
Thanks for specifying this. I forgot to mention it, but this is necessary to tell your environment variable where root is :)
properties (22)
authorlemouth
permlinkre-howo-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180516t194110658z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-16 19:41:09
last_update2018-05-16 19:41:09
depth2
children2
last_payout2018-05-23 19:41:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,065,638
net_rshares0
@effofex ·
$0.04
Yeah, so far root has been a bigger issue than ma5 for installing on WSL.  More info soon, but for reference, 'source  thisroot.sh' was the correct command for me.

If you happen to know the person responsible for naming a package that likes to live in *nix 'root', please do pinch them for me.
πŸ‘  
properties (23)
authoreffofex
permlinkre-lemouth-re-howo-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180524t191100472z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 19:11:00
last_update2018-05-24 19:11:00
depth3
children1
last_payout2018-05-31 19:11:00
cashout_time1969-12-31 23:59:59
total_payout_value0.027 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length294
author_reputation14,429,105,750,792
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,508,352
net_rshares10,484,173,111
author_curate_reward""
vote details (1)
@irelandscape ·
$0.02
Ok will install this on my laptop as soon as I get a chance.

Bit busy today so it might happen tomorrow instead.
πŸ‘  
properties (23)
authorirelandscape
permlinkre-lemouth-2018514t195529131z
categoryutopian-io
json_metadata{"tags":["utopian-io","blog","steemstem","physics","science"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-05-14 18:55:30
last_update2018-05-14 18:55:30
depth1
children3
last_payout2018-05-21 18:55:30
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation15,380,678,988,494
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,689,141
net_rshares5,168,605,998
author_curate_reward""
vote details (1)
@lemouth ·
Don't worry. The next step is not for tomorrow too. Please take your time (and let me know if you need anything).
πŸ‘  
properties (23)
authorlemouth
permlinkre-irelandscape-re-lemouth-2018514t195529131z-20180514t201912487z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 20:19:15
last_update2018-05-14 20:19:15
depth2
children2
last_payout2018-05-21 20:19:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,700,270
net_rshares2,917,901,522
author_curate_reward""
vote details (1)
@irelandscape ·
$0.32
OK, I've installed successfully Delphes and PAM.

It didn't work initially. After digging I was missing some packages on Ubuntu 17.10: libtbb-dev, libtiff-dev, libjpeg-dev and tclsh

I guess we should familiarize ourself with the root primer document?
πŸ‘  ,
properties (23)
authorirelandscape
permlinkre-lemouth-re-irelandscape-re-lemouth-2018514t195529131z-20180515t090203777z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 09:02:03
last_update2018-05-15 09:02:03
depth3
children1
last_payout2018-05-22 09:02:03
cashout_time1969-12-31 23:59:59
total_payout_value0.248 HBD
curator_payout_value0.076 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length251
author_reputation15,380,678,988,494
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,789,710
net_rshares66,168,327,028
author_curate_reward""
vote details (2)
@mactro ·
$0.06
Downloaded, installed, works! (I think) What you could add is some final verification step that would show everything works correctly. Maybe plot something,?
πŸ‘  ,
properties (23)
authormactro
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t160352845z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 16:03:54
last_update2018-05-14 16:03:54
depth1
children1
last_payout2018-05-21 16:03:54
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length157
author_reputation865,272,238,829
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,662,848
net_rshares12,140,246,751
author_curate_reward""
vote details (2)
@lemouth ·
There are so many things to do with the code and I don't like asking people to do things without understanding (there are many particle physics concepts to explain).  However, you can maybe try [some tutorials](https://madanalysis.irmp.ucl.ac.be/wiki/tutorials).
properties (22)
authorlemouth
permlinkre-mactro-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t200936313z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://madanalysis.irmp.ucl.ac.be/wiki/tutorials"],"app":"steemit/0.1"}
created2018-05-14 20:09:39
last_update2018-05-14 20:09:39
depth2
children0
last_payout2018-05-21 20:09:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length262
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,699,026
net_rshares0
@mcfarhat ·
$0.02
Mega project getting revealed further :D
I will try to allocate some time to go through the steps in details this week .. i hope
πŸ‘  
properties (23)
authormcfarhat
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t135545207z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 13:56:00
last_update2018-05-15 13:56:00
depth1
children1
last_payout2018-05-22 13:56:00
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation150,657,552,575,683
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,829,128
net_rshares5,193,913,457
author_curate_reward""
vote details (1)
@lemouth ·
I hope too! I would like to see you contributing ^^
properties (22)
authorlemouth
permlinkre-mcfarhat-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t201236981z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 20:12:39
last_update2018-05-15 20:12:39
depth2
children0
last_payout2018-05-22 20:12:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,884,190
net_rshares0
@mountainwashere ·
$0.02
Have I mentioned that I basically consider you the single coolest person on Steemit? If not, I really should have.

Seriously, this project is awesome.
πŸ‘  
properties (23)
authormountainwashere
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180516t113121559z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-16 11:31:30
last_update2018-05-16 11:31:30
depth1
children2
last_payout2018-05-23 11:31:30
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length151
author_reputation29,738,390,641,041
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,993,728
net_rshares5,196,046,116
author_curate_reward""
vote details (1)
@lemouth ·
Wow! That is very nice! Thanks a lot for the nice comment both towards myself and the project :)
properties (22)
authorlemouth
permlinkre-mountainwashere-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180516t183523361z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-16 18:35:24
last_update2018-05-16 18:35:24
depth2
children1
last_payout2018-05-23 18:35:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,056,990
net_rshares0
@mountainwashere ·
I mean it, this is so cool!
properties (22)
authormountainwashere
permlinkre-lemouth-re-mountainwashere-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180517t020831056z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-17 02:08:30
last_update2018-05-17 02:08:30
depth3
children0
last_payout2018-05-24 02:08:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation29,738,390,641,041
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,108,035
net_rshares0
@neutrino ·
$0.05
This is very awesome man. I wish I could help (in grad school for physics with undergrad research in particle physics), but I have qualifying exams in 2 months. After that, I would love to dedicate some time to help.
πŸ‘  
properties (23)
authorneutrino
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180517t055712831z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-17 05:57:15
last_update2018-05-17 05:57:15
depth1
children1
last_payout2018-05-24 05:57:15
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length216
author_reputation3,725,898,722,877
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,134,608
net_rshares10,434,486,756
author_curate_reward""
vote details (1)
@lemouth ·
Well, although there is a timeline here, it will never be too late to join after your exams. I am pretty sure we won't be done by then. Also, all the information will be stored on the blockchain so that this could continue in the future without any time limit.

In short: you are welcome to join at any time!
πŸ‘  
properties (23)
authorlemouth
permlinkre-neutrino-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180518t072029125z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-18 07:20:30
last_update2018-05-18 07:20:30
depth2
children0
last_payout2018-05-25 07:20:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length308
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,328,137
net_rshares2,387,897,933
author_curate_reward""
vote details (1)
@oscarcc89 · (edited)
$0.48
This is really something new for me. But I would like to try it.. I'll try if it works on Windows and I'll tell you friend
πŸ‘  ,
properties (23)
authoroscarcc89
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t155711207z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 15:57:15
last_update2018-05-14 15:57:48
depth1
children3
last_payout2018-05-21 15:57:15
cashout_time1969-12-31 23:59:59
total_payout_value0.364 HBD
curator_payout_value0.115 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation39,280,345,355,228
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,661,739
net_rshares97,222,816,417
author_curate_reward""
vote details (2)
@lemouth ·
Maybe with something like cygwin it could work. But this, you will have to tell me. Another option is to add a linux partition on your system ;)
properties (22)
authorlemouth
permlinkre-oscarcc89-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t201345805z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 20:13:48
last_update2018-05-14 20:13:48
depth2
children2
last_payout2018-05-21 20:13:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length144
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,699,547
net_rshares0
@mactro ·
$0.08
Or simply run it on virtual machine, i.e. VirtualBox is pretty simple to use.
πŸ‘  
properties (23)
authormactro
permlinkre-lemouth-re-oscarcc89-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t060623974z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 06:06:24
last_update2018-05-15 06:06:24
depth3
children1
last_payout2018-05-22 06:06:24
cashout_time1969-12-31 23:59:59
total_payout_value0.057 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation865,272,238,829
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,768,488
net_rshares15,581,740,371
author_curate_reward""
vote details (1)
@rudyardcatling ·
$0.03
would you look at that, contact and liftoff lol ... great to see connections at this level of practicality , that should be in plain sight to the "outside world" *multiple uses of the steemit blockchain and community in the real world*, hmz ...

i used to run all that seti and distributed folding and what not on my pcs but these celerons i have today are pretty useles for anything but text and multimedia i'm afraid. Glad to see you people connect though ![](https://steemitimages.com/DQmX2LaCFmBzoB3k1EJRKTGxRKHFAqH4FjVjgMsagsFEL4j/image.png)
πŸ‘  ,
properties (23)
authorrudyardcatling
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t115856809z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"image":["https://steemitimages.com/DQmX2LaCFmBzoB3k1EJRKTGxRKHFAqH4FjVjgMsagsFEL4j/image.png"],"app":"steemit/0.1"}
created2018-05-15 11:58:57
last_update2018-05-15 11:58:57
depth1
children7
last_payout2018-05-22 11:58:57
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length546
author_reputation26,008,424,748,431
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,812,069
net_rshares5,838,167,648
author_curate_reward""
vote details (2)
@lemouth ·
We don't need a huge CPU power here. We instead need a lot of golden fingers if you see what I mean ^^
properties (22)
authorlemouth
permlinkre-rudyardcatling-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t201102156z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 20:11:03
last_update2018-05-15 20:11:03
depth2
children6
last_payout2018-05-22 20:11:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,883,965
net_rshares0
@rudyardcatling ·
$7.30
i think i see, but to actually construst virtual hardware parts of a supercollider in code ? its 100% possible ofcourse, its what computers were built for in the first place but when you say simulate x number of collisions on a laptop i somehow doubt that will go at near to lightspeed on said laptop lol. It looks VERY interesting if i were a bit less chaotic and a bit of a teamplayer who can fit in a pipeline id seriously like to try my inexperience hands at it but i'm afraid id get in the way. I hope i can keep an eye on it though. I have been known to have ideas. For instance, and i don't want to cause a divide but for your particular project don't you think a specifid dedicated blockchain would be better than using an existing one that's already specialized for something else. I don't know enough about it, i would very much like to look into the linux foundation hyperledger, assuming its the geekest of the geek with all people doing it for free so to speak so since money's not the motivator and you have the highest geek% per capita there i dare assume the hyperledger must be something advanced (but i dont know and i dont like to speak before i checked and have a general idea). You seem to be somewhat of an unstoppable force though, dedicated through and through, i bet you had physics for a hobby before you turned to school lol. The kind of people who make things work and act as catalysts for a community.

'developing' a framework on the side ;-) i sure would like to keep my eye on it at the very least but i'm sure you will keep everone updated here from time to time as well ?
like a textbook example of the scientists who isnt interested in power (or witness programs) but could if he or she would rally people to their side by sheer presence lol
well i'm out before anyone thinks i'm kissing up here. You're by far one of the most interesting people i have bumped into here. I'm always looking forward to more !!!
πŸ‘  ,
properties (23)
authorrudyardcatling
permlinkre-lemouth-re-rudyardcatling-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180516t003815259z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-16 00:38:15
last_update2018-05-16 00:38:15
depth3
children5
last_payout2018-05-23 00:38:15
cashout_time1969-12-31 23:59:59
total_payout_value5.480 HBD
curator_payout_value1.822 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,944
author_reputation26,008,424,748,431
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,914,044
net_rshares1,488,762,913,327
author_curate_reward""
vote details (2)
@samminator ·
$0.02
This is a cool  project. Even though I'm not too knowledgeable in C++, I would still have to look at the program. 
>Note that I know that the steps below trivially work on Linux and Mac OS. I am more scared by Windows

I'm a Windows user BTW
πŸ‘  
properties (23)
authorsamminator
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180517t183229348z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-17 18:23:18
last_update2018-05-17 18:23:18
depth1
children3
last_payout2018-05-24 18:23:18
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length241
author_reputation673,297,335,476,864
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,231,653
net_rshares5,217,243,378
author_curate_reward""
vote details (1)
@lemouth ·
As I said to others, never too late to change. .. ;)

Note that you can also use a virtual machine to emulate a linux environment :)
properties (22)
authorlemouth
permlinkre-samminator-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180518t071721597z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-18 07:17:24
last_update2018-05-18 07:17:24
depth2
children2
last_payout2018-05-25 07:17:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,327,769
net_rshares0
@samminator ·
Yeah; it's never too late to change.
But I think I'll pick the option of using a Linux emulator. Sounds like an easy way out :D
properties (22)
authorsamminator
permlinkre-lemouth-re-samminator-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180518t101818360z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-18 10:10:51
last_update2018-05-18 10:10:51
depth3
children1
last_payout2018-05-25 10:10:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation673,297,335,476,864
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,349,595
net_rshares0
@sathyasankar ·
$0.05
As you said, it is never too late to learn anything. But I have failed to satisfy one basic criteria.  As of now I have no computer with me and I'm using steemit through my mobile phone. Let me see what I can do to arrange a laptop to be a part of this great initiative if you think my participation can be of any help!

Meanwhile I would like to hear from @dexterdev who is fond of python and many other computer programming languages. I think he can be of a great help in accomplishing this concept!
πŸ‘  , ,
properties (23)
authorsathyasankar
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t165459835z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["dexterdev"],"app":"steemit/0.1"}
created2018-05-14 16:55:09
last_update2018-05-14 16:55:09
depth1
children6
last_payout2018-05-21 16:55:09
cashout_time1969-12-31 23:59:59
total_payout_value0.045 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length501
author_reputation25,037,930,470,038
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,671,193
net_rshares10,976,424,676
author_curate_reward""
vote details (3)
@dexterdev ·
$0.05
@sathyasankar : I am more of a *Jack of all trades, master of none.* I have very basic knowledge of C++. Even I am not expert in python. :)
πŸ‘  
properties (23)
authordexterdev
permlinkre-sathyasankar-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t173559518z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-05-15 17:38:03
last_update2018-05-15 17:38:03
depth2
children2
last_payout2018-05-22 17:38:03
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation17,771,704,061,240
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,864,497
net_rshares10,387,826,914
author_curate_reward""
vote details (1)
@lemouth ·
Many physicists are like you... so ;)
πŸ‘  
properties (23)
authorlemouth
permlinkre-dexterdev-re-sathyasankar-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t193946013z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 19:39:48
last_update2018-05-15 19:39:48
depth3
children0
last_payout2018-05-22 19:39:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,880,035
net_rshares1,920,920,669
author_curate_reward""
vote details (1)
@sathyasankar ·
You can brush up your knowledge then!
properties (22)
authorsathyasankar
permlinkre-dexterdev-re-sathyasankar-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t201325996z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 20:13:30
last_update2018-05-15 20:13:30
depth3
children0
last_payout2018-05-22 20:13:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation25,037,930,470,038
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,884,308
net_rshares0
@lemouth ·
$0.03
If you don't have any computer, I am afraid there is nothing I can do for you. Sorry about that. 

> Meanwhile I would like to hear from @dexterdev who is fond of python and many other computer programming languages. I think he can be of a great help in accomplishing this concept!

This project focuses more on the c++ part of the platform than on its pythonic side. But I will always be happy to read comments about it ^^
πŸ‘  ,
properties (23)
authorlemouth
permlinkre-sathyasankar-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t202845016z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["dexterdev"],"app":"steemit/0.1"}
created2018-05-14 20:28:45
last_update2018-05-14 20:28:45
depth2
children2
last_payout2018-05-21 20:28:45
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length423
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,701,544
net_rshares5,689,146,180
author_curate_reward""
vote details (2)
@sathyasankar · (edited)
$0.22
Yes I know. I have already taken steps to arrange a laptop and it is not going to be that big a deal for me. I hadn't felt the need to use it before this. Thanks you have provided the timeline of 1 week before your next blog would appear! I'm already aware of the fact that as this platform is build upon blockchain technology and decentralised in nature, we can extract loads of data from here and use them appropriately. 

>This project focuses more on the c++ part of the platform than on its pythonic side. 

We have internet. Nothing is impossible if one has the desire to learn.
πŸ‘  ,
properties (23)
authorsathyasankar
permlinkre-lemouth-re-sathyasankar-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t011712399z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 01:17:18
last_update2018-05-15 01:19:00
depth3
children1
last_payout2018-05-22 01:17:18
cashout_time1969-12-31 23:59:59
total_payout_value0.165 HBD
curator_payout_value0.051 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length584
author_reputation25,037,930,470,038
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,734,445
net_rshares44,601,442,098
author_curate_reward""
vote details (2)
@shariif ·
$0.02
In every work first step is so important for next step. So I think whatever you all think to do please go ahead with hard enthusiasm. Maybe you will be success.
πŸ‘  
properties (23)
authorshariif
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t154255072z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 15:42:57
last_update2018-05-14 15:42:57
depth1
children1
last_payout2018-05-21 15:42:57
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation87,092,247,986
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,659,425
net_rshares5,168,605,998
author_curate_reward""
vote details (1)
@lemouth ·
I am very optimistic. People seem motivated, this is what matters so far. Afterwards, the babystep by babystep manner is probably the best  :)
properties (22)
authorlemouth
permlinkre-shariif-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180514t201105568z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-14 20:11:06
last_update2018-05-14 20:11:06
depth2
children0
last_payout2018-05-21 20:11:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,699,231
net_rshares0
@steemitboard ·
Congratulations @lemouth! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@lemouth) Award for the number of upvotes

Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> Upvote this notification to help all Steemit users. Learn why [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-lemouth-20180518t101107000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2018-05-18 10:11:06
last_update2018-05-18 10:11:06
depth1
children0
last_payout2018-05-25 10:11:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length673
author_reputation38,975,615,169,260
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,349,624
net_rshares0
@steep2308 ·
$0.05
Whao ,@lemouth I see this to be a great project which can be a point of reference in years to come. I know about C++ a bit but , application in physics is super high for me. Though am really much interested to follow how it progress. Are we going to have have access to read about it on your blog?, I mean are we going to have access to read about the program as it progresses?. This blog is steering something up within me .÷) don't know yet 😁
πŸ‘  
properties (23)
authorsteep2308
permlinkre-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180516t084729395z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth"],"app":"steemit/0.1"}
created2018-05-16 08:47:51
last_update2018-05-16 08:47:51
depth1
children2
last_payout2018-05-23 08:47:51
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length444
author_reputation9,140,519,546,064
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,973,066
net_rshares10,392,092,233
author_curate_reward""
vote details (1)
@lemouth · (edited)
Thanks!

Yes, everything will be fully transparent. Progresses, successes, failures, etc...  and of course physics! :)
properties (22)
authorlemouth
permlinkre-steep2308-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180516t183835851z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-16 18:38:36
last_update2018-05-16 18:38:51
depth2
children1
last_payout2018-05-23 18:38:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,057,385
net_rshares0
@steep2308 ·
Am looking forward
properties (22)
authorsteep2308
permlinkre-lemouth-re-steep2308-re-lemouth-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180517t192752989z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-05-17 19:27:57
last_update2018-05-17 19:27:57
depth3
children0
last_payout2018-05-24 19:27:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation9,140,519,546,064
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,241,059
net_rshares0
@tipu ·
<center><p><strong>Hi @lemouth! You have received 1.0 SBD @tipU upvotehttps://i.imgur.com/JFq6JWX.png! from @cardboard !</strong></p><hr>https://i.imgur.com/zvxh2cR.gif<br><strong><p>@tipU upvotes with 210% of the payment and shares <a href="https://steemit.com/steem/@tipu/tipu-is-looking-for-steem-power-delegators-pays-out-100-of-profit-50-of-curation-rewards-to-investors" rel="noopener">100% profit + 50% curation rewards with all investors</a>, allows to <a href="https://steemit.com/steemit/@tipu/introducing-tipu-auto-reinvest-option-for-investors-sp-delegators" rel="noopener">automatically reinvest selected part of your payout</a> and can do other cool stuff :) <a href="https://steemit.com/steemit/@tipu/tipu-investors-report-08-05-2018-new-features-overview-new-delegations" rel="noopener"> Click here for more info.</a></p></strong></center>
properties (22)
authortipu
permlinkre-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t152901
categoryutopian-io
json_metadata""
created2018-05-15 15:29:09
last_update2018-05-15 15:29:09
depth1
children0
last_payout2018-05-22 15:29:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length855
author_reputation55,952,743,082,836
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,844,349
net_rshares0
@utopian-io ·
$0.05
Hey @lemouth
**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Contributing on Utopian**
Learn how to contribute on <a href='https://join.utopian.io'>our website</a> or by watching <a href='https://www.youtube.com/watch?v=8S1AtrzYY1Q'>this tutorial</a> on Youtube.

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
πŸ‘  
properties (23)
authorutopian-io
permlinkre-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t081006z
categoryutopian-io
json_metadata"{"app": "beem/0.19.29"}"
created2018-05-15 08:10:06
last_update2018-05-15 08:10:06
depth1
children1
last_payout2018-05-22 08:10:06
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length504
author_reputation152,955,367,999,756
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,783,497
net_rshares10,387,826,914
author_curate_reward""
vote details (1)
@lemouth ·
The pleasure is for me ^^
properties (22)
authorlemouth
permlinkre-utopian-io-re-towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started-20180515t081006z-20180515t200523131z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-15 20:05:24
last_update2018-05-15 20:05:24
depth2
children0
last_payout2018-05-22 20:05:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation338,011,164,701,274
root_title"Towards an Utopian contribution to particle physics - the roadmap and how to get started"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,883,272
net_rshares0