Skip to content

Instantly share code, notes, and snippets.

View combemale's full-sized avatar

Benoit Combemale combemale

View GitHub Profile
@combemale
combemale / ict4s23.csv
Created May 8, 2023 19:55
ICT4S 2023 word cloud
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
Energy Consumption
Carpooling
VoD pressure on network power consumption
Green ICT
Energy cost and machine learning
Carbon Footprint of ICT
5G Sustainability
Electricity consumption measurements
Obsolescence Paths
Process Mining for Sustainability
@combemale
combemale / JXBusyLabelTest.java
Created September 30, 2017 22:37
selabs-ut2j.devops.dependencies
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
@combemale
combemale / Arduino-OperationalSemantics.xtend
Last active April 18, 2016 09:12
Excerpt of the operational semantics for the arduino modeling language (https://github.com/gemoc/arduinomodeling)
@Aspect(className=Project)
class Project_ExecutableAspect {
@Main
def void main() {
val sketch = _self.sketch
while(true) {
sketch.block.execute
}
}
}