All Projects → ThibaultLatrille → ControverSciences

ThibaultLatrille / ControverSciences

Licence: other
ControverSciences est un portail collaboratif qui rassemble les publications scientifiques autour de questions controversées, en les rendant accessible à tous.

Programming Languages

HTML
75241 projects
ruby
36898 projects - #4 most used programming language
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
CSS
56736 projects

Projects that are alternatives of or similar to ControverSciences

hector
The Hector Simple Climate Model
Stars: ✭ 72 (+414.29%)
Mutual labels:  science
Things-a-scientist-is-suppposed-to-know
A comprehensive and long list of things a modern scientist is supposed to know
Stars: ✭ 275 (+1864.29%)
Mutual labels:  science
HacktheDinos
The 2nd Annual American Museum of Natural History Hackathon produced by the BridgeUP: STEM program
Stars: ✭ 32 (+128.57%)
Mutual labels:  science
arboles
Mapa de Arbolado Urbano
Stars: ✭ 13 (-7.14%)
Mutual labels:  science
rollinbox
Ruby On Rails sandbox with rails-admin
Stars: ✭ 33 (+135.71%)
Mutual labels:  rails5
lapack
Wrappers for LAPACK (Fortran)
Stars: ✭ 63 (+350%)
Mutual labels:  science
BioExplorer
The Blue Brain BioExplorer (BBBE) is a tool for scientists to extract and analyze scientific data from visualization and interactive exploration
Stars: ✭ 18 (+28.57%)
Mutual labels:  science
pypuf
Cryptanalysis of Physically Unclonable Functions
Stars: ✭ 39 (+178.57%)
Mutual labels:  science
Scipy-Bordeaux-2017
Course taught at the University of Bordeaux in the academic year 2017 for PhD students.
Stars: ✭ 16 (+14.29%)
Mutual labels:  science
CanAirIO
W A R N I N G: This is a previous proof of concept of CanAirIO device firmware over a TTGO T-Display board, but now it is only a old reference. The last stable version of CanAirIO device already have support for this board and many features more. Please use the official CanAirIO Firmware instead of this firmware. https://github.com/kike-canaries…
Stars: ✭ 12 (-14.29%)
Mutual labels:  science
awesome-gamedev
A compilation of game dev related media (podcasts, Youtube, article, books, etc..)
Stars: ✭ 49 (+250%)
Mutual labels:  science
HackTheDeep
The 4th Annual American Museum of Natural History Hackathon produced by the BridgeUP: STEM program
Stars: ✭ 35 (+150%)
Mutual labels:  science
catch
A package for designing compact and comprehensive capture probe sets.
Stars: ✭ 55 (+292.86%)
Mutual labels:  science
sirius
SIRIUS is a software for discovering a landscape of de-novo identification of metabolites using tandem mass spectrometry. This repository contains the code of the SIRIUS Software (GUI and CLI)
Stars: ✭ 32 (+128.57%)
Mutual labels:  science
emp
🔬 Empirical CLI
Stars: ✭ 42 (+200%)
Mutual labels:  science
paper-moho-inversion-tesseroids
Source code, data, and model results for "Fast non-linear gravity inversion in spherical coordinates with application to the South American Moho". Published in the Geophysical Journal International.
Stars: ✭ 27 (+92.86%)
Mutual labels:  science
blas
Wrappers for BLAS (Fortran)
Stars: ✭ 58 (+314.29%)
Mutual labels:  science
open-retractions
‼️ 📄 🔍 an API and web interface to check if a paper has been retracted
Stars: ✭ 43 (+207.14%)
Mutual labels:  science
LocalSupport
A directory of local support services and volunteer opportunities
Stars: ✭ 60 (+328.57%)
Mutual labels:  rails5
source
The main source repository for the Raysect project.
Stars: ✭ 62 (+342.86%)
Mutual labels:  science

ControverSciences

Get ControverSciences up and running for developpement on Linux

Clone the repository and cd to the dir

git clone https://github.com/ThibaultLatrille/ControverSciences.git
cd ControverSciences

Install RVM for managing ruby version

Follow steps in https://rvm.io/

Don't forget to append '--rails --ruby' for a all in one installation

ControverSciences is currently using ruby 2.5.6

rvm install 2.7.3
rvm use 2.7.3
gem install bundler

Install PostgreSQL and create role

Install the Postgresql libraries:

sudo apt-get install postgresql
sudo apt-get install libpq-dev

Then create the user (AKA "role") inside PostgreSQL:

sudo su - postgres
psql -d postgres
postgres=# create role controversciences login superuser password 'password';
postgres=# \q

Install the gems

bundle install

Create database and populate with anonymized data

rake db:create
sh ./dump/pg_restore

The password is as defined above during role creation: 'password'

Run local webserver

rails s

Navigate to 127.0.0.1:3000 with your favorite browser and you are Up & Running

Repopulate the database after a maj or if you screwed the database

rake db:drop db:create
sh ./dump/pg_restore

Connect as an admin of the website in the local version

Authors

Thibault Latrille

Licence

The MIT License (MIT)

Copyright (c) 2015 Thibault Latrille

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].