Skip to content

Instantly share code, notes, and snippets.

View Malix-Labs's full-sized avatar
🌊

Malix Malix-Labs

🌊
View GitHub Profile
@Malix-Labs
Malix-Labs / README.md
Last active February 17, 2025 01:07
Bertrand Paradox

Betrand Paradox

Haskell impelmentation (arithmetics only) of the Bertrand Paradox

@Malix-Labs
Malix-Labs / main.bpmn
Last active October 19, 2024 08:43
EFREI 2026 I2 S7 ERP 1 6
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_122czf3" targetNamespace="http://bpmn.io/schema/bpmn" exporter="bpmn-js (https://demo.bpmn.io)" exporterVersion="17.11.1">
<bpmn:collaboration id="Collaboration_1hkzyp4">
<bpmn:participant id="Participant_1ls3c46" name="Prospect" processRef="Process_13dnc83" />
<bpmn:participant id="Participant_1ftrbkr" name="Entreprise" processRef="Process_1pg09ab" />
<bpmn:messageFlow id="Flow_1mfbj7l" sourceRef="Activity_1qnfjkh" targetRef="Activity_0t0m1zt" />
<bpmn:messageFlow id="Flow_1yenige" sourceRef="Activity_13rwmpb" targetRef="Activity_1dko628" />
<bpmn:messageFlow id="Flow_0bl2f78" sourceRef="Activity_1qrc1ot" targetRef="Activity_0b75k7j" />
<bpmn:messag
@Malix-Labs
Malix-Labs / main.bpmn
Last active October 19, 2024 08:44
EFREI 2026 I2 S7 ERP 1 5
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:bioc="http://bpmn.io/schema/bpmn/biocolor/1.0" xmlns:color="http://www.omg.org/spec/BPMN/non-normative/color/1.0" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0mf6y0v" targetNamespace="http://bpmn.io/schema/bpmn" exporter="bpmn-js (https://demo.bpmn.io)" exporterVersion="17.11.1">
<bpmn:collaboration id="Collaboration_10m0b4h">
<bpmn:participant id="Participant_1t92aju" name="Client" processRef="Process_0x6vf02" />
<bpmn:participant id="Participant_0l2830a" name="Entreprise" processRef="Process_1j2zfbv" />
<bpmn:participant id="Participant_1chlzqa" name="Etat" processRef="Process_01frodh" />
<bpmn:messageFlow id="Flow_0jnjl10" sourceRef="Activity_1gl7b89" targetRef="Activity_0uzlif6" />
<bpmn
@Malix-Labs
Malix-Labs / bis.bpmn
Last active September 24, 2024 06:09
EFREI 2026 I2 S7 OO Systems Development BPM
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0gkywrz" targetNamespace="http://bpmn.io/schema/bpmn" exporter="bpmn-js (https://demo.bpmn.io)" exporterVersion="17.7.1">
<bpmn:collaboration id="Collaboration_073gk7x">
<bpmn:participant id="Participant_1y57kaw" name="NAG" processRef="Process_1r5203m" />
<bpmn:participant id="Participant_08xl5pc" name="geometre" processRef="Process_0yttmn5" />
<bpmn:messageFlow id="Flow_14c7ba4" sourceRef="Activity_11rgilx" targetRef="Activity_1mcts7t" />
<bpmn:messageFlow id="Flow_0mms0ef" sourceRef="Activity_0fdcf22" targetRef="Activity_0uxnhyr" />
<bpmn:messageFlow id="Flow_0r7p5nj" sourceRef="Activity_137w0dw" targetRef="Activity_1u5b0zb" />
<bpmn:messageFlow id
@Malix-Labs
Malix-Labs / class.mermaid
Last active September 20, 2024 10:09
EFREI 2026 I2 S7 OO Systems Development Project
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Malix-Labs
Malix-Labs / evaluation_sequence.mermaid
Last active September 17, 2024 15:20
EFREI 2026 I2 S7 OO Systems Development Project 1
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Malix-Labs
Malix-Labs / activity 1.md
Last active September 9, 2024 15:45
EFREI 2026 I2 S7 OO Systems Development Labs

Activity 1

@Malix-Labs
Malix-Labs / main.go
Created March 30, 2024 16:56
Go ChainCode Starter
package main
import (
"encoding/json"
"fmt"
"github.com/hyperledger/fabric-contract-api-go/contractapi"
)
type SupplyChainContract struct {
@Malix-Labs
Malix-Labs / README.md
Last active February 4, 2024 20:49
Discord Official Hidden Dark Themes CSS

Discord Official Hidden Dark Themes CSS

Latest Update

2024-02-04

Console

Midnight

@Malix-Labs
Malix-Labs / SimpleCalculator.java
Last active December 11, 2023 14:15
Simplest Java Calculator GUI
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class SimpleCalculator extends JFrame implements ActionListener {
private JTextField displayField;
private double currentValue = 0;
private String currentOperator = "";