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
function executeScript(){ | |
re = new RegExp("[4][\:|\.|\)|\-][^1-9]"); // yeaaaaaah REGEXs (also the 4 is there because of that 2 truths and a lie thing) | |
function findmatches(response){ | |
console.log("parsing page"); // just for kicks | |
flag = true; | |
if (response.data.length < 2){ // empty response, sort of | |
flag = false; | |
} | |
if(flag){ | |
response.data.forEach(function(post){ |
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
int acc[NMAX]; | |
void merge(int low, int mid, int high){ | |
// one block from [low --> mid] and one from [mid + 1 --> high] | |
// sizes (mid - low + 1), and (high - mid) | |
// this one actually changes their places on the original array | |
vector<long long> lower(acc + low, acc + mid + 1); | |
vector<long long> higher(acc + mid + 1, acc + high + 1); |
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
1000 47506 | |
70920 | |
34639 | |
63807 | |
71201 | |
40169 | |
85943 | |
98395 | |
24541 | |
46944 |
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
class Queue(): | |
def __init__(self): | |
self.elementarray = [0] * 25 # initialize to 25 0s for now (basically) empty | |
self.head = 0 | |
self.tail = 0 | |
def push(self, element): | |
self.elementarray[self.tail] = element # basically set the tail'th element to be 'element' | |
self.tail += 1 # shift the tail number | |
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
function executeScript(){ | |
var no = {}; // list of excluded users | |
re = new RegExp("[4][\:|\.|\)|\-][^1-9]"); | |
function findmatches(response){ | |
flag = true; | |
if (response.data.length < 2){ // empty response, sort of | |
flag = false; | |
} | |
if(flag){ | |
response.data.forEach(function(post){ |
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
class vector(list): | |
pass | |
def wrap(attr): | |
def wrapped(a, b): | |
return vector(map(lambda x, y: getattr(x, attr)(y), a, b)) | |
return wrapped | |
for attr in "__add__ __sub__ __mul__ __div__".split(): | |
setattr(vector, attr, wrap(attr)) |
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
import scrapy | |
class WordUnit(scrapy.Item): | |
# define the fields for your item here like: | |
# name = scrapy.Field() | |
name = scrapy.Field() | |
link = scrapy.Field() | |
small_desc = scrapy.Field() | |
desc = scrapy.Field() | |
words = scrapy.Field() |
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
angular.module('index.controllers', []) | |
.controller('Ctrl', ['$scope', '$http', 'Service', function($scope, $http, Service){ | |
}]); | |
angular.module('index.services') | |
.factory('Service', [function(){ | |
var Service = { | |
stuff: 'here' | |
}; |
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
import h5py | |
import numpy as np | |
import random | |
import re | |
import pickle | |
import pdb | |
from sklearn.utils import resample | |
# from process_data.py | |
def clean_str(string, TREC=False): |
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 <stdio.h> | |
void swap_values_1(int p, int q) { | |
printf("where are the local variables in this function allocated? p: %p, q: %p\n", &p, &q); | |
int tmp = q; | |
q = p; | |
p = tmp; | |
} | |
void swap_values_2(int *m, int *n) { |
OlderNewer