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
<?php | |
/** | |
* Generate a DOCX file | |
* | |
* @category Phpdocx | |
* @package create | |
* @copyright Copyright (c) 2009-2011 Narcea Producciones Multimedia S.L. | |
* (http://www.2mdc.com) | |
* @license LGPL |
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
$.fn.raty.defaults.path = "/assets"; | |
$.fn.raty.defaults.half_show = true; | |
$(function(){ | |
$(".star").raty({ | |
score: function(){ | |
return $(this).attr('data-rating') | |
}, | |
number: function() { | |
return $(this).attr('data-star-count') |
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
sunloverz@kg:~/projects/discourse$ vagrant box add discourse-0.8.4 ~/Downloads/discourse-0.8.4.box | |
Downloading or copying the box... | |
Extracting box...te: 27.6M/s, Estimated time remaining: 0:00:01) | |
Successfully added box 'discourse-0.8.4' with provider 'virtualbox'! | |
sunloverz@kg:~/projects/discourse$ vagrant up | |
Bringing machine 'default' up with 'virtualbox' provider... | |
[default] Importing base box 'discourse-0.8.4'... | |
[default] Matching MAC address for NAT networking... | |
[default] Setting the name of the VM... | |
[default] Clearing any previously set forwarded ports... |
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
#include <iostream> | |
#include <string> | |
#include <sstream> | |
#include <queue> | |
#include <stdio.h> | |
#include <fstream> | |
using namespace std; | |
#define INF 19999999 | |
long long int glob; |
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
#include <iostream> | |
#include <string> | |
#include <sstream> | |
#include <queue> | |
#include <stdio.h> | |
#include <fstream> | |
using namespace std; | |
ifstream infile("IntegerArray.txt"); | |
unsigned long long glob=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
Problem Statement | |
Given the width and height of a rectangular grid, return the total number of rectangles (NOT counting squares) that can be found on this grid. | |
For example, width = 3, height = 3 (see diagram below): | |
__ __ __ | |
|__|__|__| | |
|__|__|__| | |
|__|__|__| | |
In this grid, there are 4 2x3 rectangles, 6 1x3 rectangles and 12 1x2 rectangles. Thus there is a total of 4 + 6 + 12 = 22 rectangles. Note we don't count 1x1, 2x2 and 3x3 rectangles because they are squares. |
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
after "deploy:symlink", "deploy:restart_workers" | |
after "deploy:restart_workers", "deploy:restart_scheduler" | |
## | |
# Rake helper task. | |
# http://pastie.org/255489 | |
# http://geminstallthat.wordpress.com/2008/01/27/rake-tasks-through-capistrano/ | |
# http://ananelson.com/said/on/2007/12/30/remote-rake-tasks-with-capistrano/ | |
def run_remote_rake(rake_cmd) | |
rake_args = ENV['RAKE_ARGS'].to_s.split(',') |
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
#include <iostream> | |
#include <iterator> | |
#include <functional> | |
#include <algorithm> | |
#include <queue> | |
#include <vector> | |
#include <set> | |
#include <sstream> | |
#include <string> |
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
Argument Array | |
Collapse a list of arguments into an array. | |
Around Alias | |
Call the previous, aliased version of a method from a redefined method. | |
Blank Slate | |
Remove methods from an object to turn them into Ghost Methods. | |
Class Extension |
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
curl -H "Content-Typ"Authorization: OAuth O7KrMTwmw997iq0KzL7v" -d '{"messages":[{"body":"hello world!"}]}' "http://158.181.176.161:8080/3/projects/53a3b3bd5e8edd1245000005/queues/my_queue/messages" |
OlderNewer