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
Avec la zone DNS suivante, le wildcard DNS (spécifié dans http://tools.ietf.org/html/rfc1034#section-4.3.3 & http://tools.ietf.org/html/rfc4592 notamment) me pose problème. | |
dl.iariss.fr (et machintruc.iariss.fr) résolvait correctement avant l'ajout de la ligne cdn.dl.iariss.fr. | |
Depuis l'ajout de cette ligne, machintruc.iariss.fr résout toujours correctement, mais dl.iariss.fr ne résout plus (NXDOMAIN). De même, machintruc.dl.iariss.fr ne résout plus (NXDOMAIN). | |
Est-ce un problème du serveur DNS, de ma zone, des spécifications DNS, ou d'autre part ? | |
$TTL 86400 | |
@ IN SOA dns13.ovh.net. tech.ovh.net. (2012030600 86400 3600 3600000 86400) | |
IN NS ns13.ovh.net. |
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
# C-a :source .screenrc | |
termcapinfo xterm* ti@:te@ | |
startup_message off | |
vbell off | |
autodetach on | |
altscreen on | |
shelltitle "$ |bash" | |
defscrollback 10000 | |
defutf8 on |
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
Start Server: | |
if (System.getSecurityManager() == null) | |
System.setSecurityManager ( new RMISecurityManager() ); | |
LocateRegistry.createRegistry(9000); | |
// ... | |
// ... and bind it with the RMI Registry | |
Naming.rebind ("rmi://<ip>:9000/server1", ...); |
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
<option value="AF">Afghanistan</option> | |
<option value="AX">Aland Isles</option> | |
<option value="AL">Albania</option> | |
<option value="DZ">Algeria</option> | |
<option value="AS">American Samoa</option> | |
<option value="AD">Andorra</option> | |
<option value="AO">Angola</option> | |
<option value="AI">Anguilla</option> | |
<option value="AQ">Antarctica</option> | |
<option value="AG">Antigua And Barbuda</option> |
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
#include <GL/glut.h> | |
#include <math.h> | |
#define WINDOW_WIDTH 300 | |
#define WINDOW_HEIGHT 300 | |
int obj = 0; | |
void Clavier(unsigned char touche, int x, int y) { |
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
// src/hassen/automation/configurator/Document.java | |
package hassen.automation.server; | |
public class Document implements IDeviceManager, IEventProcessor { | |
// ... | |
private Mapping getMapping (int id) { | |
for (Mapping m : getMappings()) { | |
if (m.getId() == id) return m; |
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
/* | |
* Processor.cpp | |
* | |
* Created on: 9 déc. 2010 | |
* Author: chtitux | |
*/ | |
#include <vector> | |
#include <algorithm> | |
#include <string> |
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
/* | |
* Dictionary.cpp | |
* | |
* Created on: 8 nov. 2010 | |
* Author: chtitux | |
*/ | |
#include <iostream> | |
#include <sstream> | |
#include <string> | |
#include <stdexcept> |
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
#include <iostream> | |
#include <sstream> | |
#include <string> | |
#include <stdexcept> | |
#include "dynamicarray.h" | |
const unsigned int DynamicArray::BLOCK_SIZE = 10; |
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
#include <iostream> | |
#include <sstream> | |
#include <string> | |
#include <stdexcept> | |
#include "dynamicarray.h" | |
const unsigned int DynamicArray::BLOCK_SIZE = 10; | |
DynamicArray::DynamicArray(): |