- La smart city sera-t-elle vraiment collaborative?
- Réalisez votre audit énergétique virtuel en 3 clics
- Logiciels de gestion énergétique
- [Maquette pédagogique sur la flexibilité énergétique. Un projet de la startup Parisienne DataVeyes et de EDF R&D] (http://dataveyes.com/#!/en/case-studies/maquette-pedagogique)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Vagrantfile for Fedora 22 Atomic Host | |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.ssh.insert_key = true | |
config.vm.define "dkvm" do |h| | |
h.vm.box = "fedora-cloud-atomic-22" | |
h.vm.box_url = "https://download.fedoraproject.org/pub/fedora/linux/releases/22/Cloud/x86_64/Images/Fedora-Cloud-Atomic-Vagrant-22-20150521.x86_64.vagrant-virtualbox.box" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# It must install the library PrettyTable through the command: | |
# sudo -H pip install PrettyTable | |
# (for more information, please check: https://pypi.python.org/pypi/PrettyTable) | |
from prettytable import PrettyTable | |
import os | |
import platform | |
DEFAULT_LIMIT_VALUE = 1000.0 | |
contas = [] |
OlderNewer