Scan the site and get the sitemap, and get config files to let user use regex to define priorities. inspired by Site Map Generator by Vladimir Toncar.
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 <stdio.h> | |
#include <string.h> | |
//#define DEBUG | |
int n; | |
int w; | |
int histo[12]; // since at most 10 intervals | |
int main() { |
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
// | |
// main.cpp | |
// testing1 | |
// | |
// Created by Xinhong LIU on 17/5/14. | |
// Copyright (c) 2014 Xinhong LIU. All rights reserved. | |
// | |
#include <iostream> | |
#include <fstream> |
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 <vector> | |
#include <string> | |
using namespace std; | |
typedef struct node_t { | |
vector<int> values; | |
vector<node_t *> e_values; | |
int evaluate; |
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
X 38 #July 1st Taxi | |
$ (0, []), | |
T 6.74 #July 7th Super Fresh Asian Market | |
$ (0, []), | |
T 37.922 #July 7th Superstore | |
$ (10.85, [M, C, W]), (0, []), | |
M 20 #July 9th 711 |
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
for i in {1..16}; do ssh compute-0-${i} /share/apps/cuda/samples/1_Utilities/deviceQuery/deviceQuery; done |
NewerOlder