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 <fstream> | |
#include<sstream> | |
#include <queue> | |
#include<algorithm> | |
using namespace std; | |
class Compare | |
{ | |
public: |
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/python | |
import csv | |
import random | |
records=9000000 | |
print("Making %d records\n" % records) | |
fieldnames=['id','name','age','city'] | |
writer = csv.DictWriter(open("people.csv", "w"), fieldnames=fieldnames) |
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
background yes | |
use_xft yes | |
font Arimo:size=7.5 | |
text_buffer_size 2048 | |
# Update interval in seconds | |
update_interval 5 | |
# This is the number of times Conky will update before quitting. | |
# Set to zero to run forever. |
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
/****** Object: StoredProcedure [dbo].[GetJSON] Script Date: 5/28/2013 4:31:01 PM ******/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
CREATE procedure [dbo].[GetJSON] | |
( | |
@table_name varchar(50), |