This file contains hidden or 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
#!/usr/bin/env python | |
# liuw | |
# Nasty hack to raise exception for other threads | |
import ctypes # Calm down, this has become standard library since 2.5 | |
import threading | |
import time | |
NULL = 0 |
This file contains hidden or 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
import javax.swing.*; | |
import java.awt.event.*; | |
public class Bouton | |
{ | |
static int i = 0; | |
static JButton button; | |
static JFrame mainWindow; |
This file contains hidden or 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
//////////////////////////////////////////////////////////////////////////////// | |
// | |
// To implement the Sign arithmetic, we can do it in several steps: | |
// - first we must define the arithmetic on the "base" values: | |
// Pos, Neg, Zero, NoneA, ErrA | |
// - then we can deduce the arithmetic of the whole domain by using | |
// upper bounds | |
// | |
// The aforementioned reduction to core signs can be performed on both | |
// operands: the left and the right. |
This file contains hidden or 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
Montrer l'arbre d'appel à partir de l'AST, i.e que la fonction f() eut être appelée par g1(), g2(), g3(), ... et récursivement. | |
Aller au début/fin de la fonction en cours |
This file contains hidden or 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
gf : ouvrir le fichier sous le curseur | |
[<Tab> : Aller à la définition du symbole dans le header | |
:Mru : liste des derniers fichiers utilisés, priceless | |
Ce que je veux dans ma barre de statut | |
- nom du fichier | |
- modified flag | |
- RO flag |