This file contains 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
/********************************************* | |
* OPL 12.5 Model | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:33:35 PM | |
*********************************************/ | |
// RGF93 ressemble WGS84 (sphère) | |
// Lambert93 = projection de RGF93 sur plan | |
using CP; |
This file contains 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
/********************************************* | |
* OPL 12.5 Model | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:33:35 PM | |
*********************************************/ | |
using CP; | |
// Nodes | |
tuple node { string name; int x; int y; int tmin; int tmax; } |
This file contains 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
/********************************************* | |
* OPL 12.5 Model | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:33:35 PM | |
*********************************************/ | |
using CP; | |
// Nodes | |
tuple node { string name; int x; int y; int tmin; int tmax; } |
This file contains 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
/********************************************* | |
* OPL 12.5 Data | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:38:56 PM | |
*********************************************/ | |
// 17 clients, WGS84 | |
//Clients = [ | |
//<"Poitiers", 46.589069,0.340576>, | |
//<"La Rochelle", 46.1760-1.145325>, |
This file contains 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
/********************************************* | |
* OPL 12.5 Data | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:38:56 PM | |
*********************************************/ | |
// 17 nodes, first node is depot. | |
// <Name, WGS84-Lat, WGS84-Lon, Lam93-X, Lam93-Y, TimeWin-Min, TimeWin-Max> | |
AllNodes = { | |
<"Poitiers" 46.589069,0.340576,496421,6613320,360,35000>, |
This file contains 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
/********************************************* | |
* OPL 12.5 Model | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:33:35 PM | |
*********************************************/ | |
using CP; | |
// Nodes | |
tuple node { string name; float lat; float lon; int x; int y; int tmin; int tmax; } |
This file contains 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
/********************************************* | |
* OPL 12.5 Model | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:33:35 PM | |
*********************************************/ | |
using CP; | |
// Nodes | |
tuple node { string name; float lat; float lon; int x; int y; int tmin; int tmax; } |
This file contains 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
/********************************************* | |
* OPL 12.5 Data | |
* Author: crash | |
* Creation Date: Mar 6, 2013 at 3:38:56 PM | |
*********************************************/ | |
// 17 nodes, first node is depot. | |
// <Name, NodeType {collab|client}, WGS84-Lat, WGS84-Lon, Lam93-X, Lam93-Y, TimeWin-Min, TimeWin-Max> | |
AllNodes = { | |
<"Poitiers" 1,46.589069,0.340576,496421,6613320,360,1200>, // 0 |
This file contains 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
#!/bin/sh | |
## | |
## netscreen/jnpr ssl vpn connection magic | |
## [email protected] / @oogali | |
## | |
## i wrote this about a year ago (2009), when i had continuous access | |
## to a jnpr ssl vpn box and had to connect via it. | |
## | |
## if bits of this script are broken, i'll be glad to fix if someone | |
## gives me client access to a ssl vpn box to test against. |
This file contains 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 | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
""" | |
OlderNewer