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
https://digitalezeitung.morgenweb.de/ePaper/app/index.html | |
ConfigOptions.hasUserSubscriptions = true; | |
ConfigOptions.appMode = "full"; | |
ConfigOptions.loggedByIp = 1; |
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
func writeProtoTextResponse(w http.ResponseWriter, pb proto.Message) { | |
data, err := proto.Marshal(pb) | |
//w.Header().Set("Content-Length", strconv.Itoa(len(data))) | |
fmt.Println(err) | |
fmt.Println(data) | |
fmt.Fprint(w, data) | |
} | |
func TestGetProduct(t *testing.T) { | |
client := &http.Client{} |
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
// ==UserScript== | |
// @id ClickerMonkeys | |
// @name Clicker Monkeys | |
// @namespace . | |
// @version 1.4.2801 | |
// @authors Zininzinin, unv_annihilator | |
// @description Trying to automate ALL THE THINGS with clicker heroes | |
// @include http://www.clickerheroes.com/ | |
// @grant none | |
// @require http://code.jquery.com/jquery-2.1.1.min.js |
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
class Cell | |
{ | |
Cell( PVector ul, PVector ur, PVector lr, PVector ll, | |
float vul, float vur, float vlr, float vll, | |
PVector v2Dvul, PVector v2Dvur, PVector v2Dvlr, PVector v2Dvll) | |
{ | |
upperLeft = ul; | |
upperRight = ur; | |
lowerRight = lr; | |
lowerLeft = ll; |
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
def mean(C): | |
m = np.array([0,0]) | |
for c in C: | |
m += c | |
m = m * (1/len(C)) | |
return m | |
def recalc(C, F, k, centroids): | |
sqe = 0 | |
# assign features to clusters based on distance to centroids |
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
class MyTagsHandler(xml.sax.handler.ContentHandler): | |
def __init__(self): | |
xml.sax.handler.ContentHandler.__init__(self) | |
self.tags = dict() | |
self.edges = dict() | |
self.k = 0 | |
def assemble_tag_list(self, s): | |
s = s.replace("<", "") | |
s = s.replace(">", " ") | |
s = s.strip() |
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
---------------------------------------------------------------------- | |
C {0: [array([1, 1]), array([5, 2])], 1: [array([1, 2]), array([2, 2]), array([4, 4]), array([2, 5]), array([5, 5])]} | |
---------------------------------------------------------------------- | |
iter 0 error 4.0 | |
iter 0 error 9.0 | |
iter 1 error 11.0 | |
iter 1 error 12.0 | |
iter 1 error 17.0 | |
iter 1 error 21.0 | |
iter 1 error 34.0 |
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
(3, 15.000000000000004, {0: [array([1, 1]), array([1, 2]), array([2, 2])], 1: [array([5, 2]), array([4, 4]), array([2, 5]), array([5, 5])]}, array([[1, 1], | |
[4, 4]])) |
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 "vtkPointData.h" | |
#include "vtkArrayCalculator.h" | |
#include "vtkPlane.h" | |
#include "vtkCutter.h" | |
#include "vtkScalarBarActor.h" | |
#include "vtkOutlineFilter.h" |
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
import igraph as ig | |
#from networkx import * | |
f = open('facebook-links.txt.anon', 'r') | |
def largest_graph(cur_graph): | |
if not is_connected(cur_graph): | |
# get a list of unconnected networks | |
sub_graphs = list(connected_component_subgraphs(cur_graph)) |