Skip to content

Instantly share code, notes, and snippets.

View emilydelorme's full-sized avatar
🏠
Working from home

Emily Delorme emilydelorme

🏠
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am emilydelorme on github.
  • I am emilydelorme (https://keybase.io/emilydelorme) on keybase.
  • I have a public key ASD3wDQpL7QcDg8WSsANuDRkbyZGU--NAW2dX6d7cBBQGQo

To claim this, I am signing this object:

@emilydelorme
emilydelorme / pacman.conf
Created November 29, 2019 17:59
My personnal pacman.conf using wget
#
# /etc/pacman.conf
#
# See the pacman.conf(5) manpage for option and repository directives
#
# GENERAL OPTIONS
#
[options]
# The following paths are commented out with their default values listed.
@emilydelorme
emilydelorme / makepkg.conf
Last active March 3, 2024 17:32
My personal makepkg.conf using wget
#!/hint/bash
#
# /etc/makepkg.conf
#
#########################################################################
# SOURCE ACQUISITION
#########################################################################
#
#-- The download utilities that makepkg should use to acquire sources
module TriEx1
use import int.Int
use import ref.Ref
use import array.Array
use import array.IntArraySorted
use import array.ArraySwap
use import array.ArrayPermut
use import array.ArrayEq
@emilydelorme
emilydelorme / main.asm
Last active February 14, 2018 15:02
TP3 ILM
.equ PRINT_INT, 1
.equ PRINT_STRING, 4
.equ READ_INT, 5
.equ EXIT, 10
.text
####################################
# Fonction rechercheDichotomique() #
####################################
@emilydelorme
emilydelorme / main.s
Last active February 2, 2018 19:40
TP2 - ILM
##################################
# L3INFO - TP ARC2 #
# Manipulation de tableaux #
##################################
.equ PRINT_INT, 1
.equ PRINT_STRING, 4
.equ READ_INT, 5
.equ EXIT, 10
.text
@emilydelorme
emilydelorme / tp6.java
Last active November 18, 2017 10:30
Fonctions affect, union et isPixelOn
// Fonctions réalisé avec Camille Police et Charles Delorme (uniquement)
public void affect(AbstractImage img) {
Iterator<Node> it = this.iterator()
Iterator<Node> it2 = img.iterator();
it.clear(); //On clear this pour ensuite recopier img dans this
affectAux(it, it1); // On appelle une fonction récursive pour recréer l'arbre
}