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 <stdlib.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <errno.h> | |
| #ifdef USE_MALLOC_WRAPPERS | |
| /* Don't wrap ourselves */ | |
| # undef USE_MALLOC_WRAPPERS | |
| #endif | |
| #include "malloc_wrap.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
| #include <iostream> | |
| #include <math.h> | |
| #include <vector> | |
| #include <map> | |
| #include <string> | |
| using namespace std; | |
| void divide(int N, long* m){ |
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 <stdlib.h> | |
| #include <string.h> | |
| #include "inc/env.h" | |
| Env **environment; | |
| /** | |
| * This sould be a K-V hashmap. I will rewrite it someday (maybe) | |
| */ |
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
| ==Phrack Inc.== | |
| Volume One, Issue 7, Phile 3 of 10 | |
| =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | |
| The following was written shortly after my arrest... | |
| \/\The Conscience of a Hacker/\/ | |
| by |
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 requests | |
| import datetime | |
| import time | |
| import threading | |
| import sys | |
| from threading import Lock | |
| import queue | |
| chal_url = "https://challenge.curbside.com/" |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure(2) do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at |
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 java.util.ArrayList; | |
| import java.util.LinkedList; | |
| import java.util.Random; | |
| /** | |
| * Created by Federico Ponzi on 19/02/17. | |
| * https://www.linkedin.com/pulse/performance-array-vs-linked-list-modern-computers-dat-hoang-tien | |
| */ | |
| public class Benchmark | |
| { |
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
| ebalovochrome.ru | |
| ucmzz.bestprizeland.2069.ws | |
| codeonclick.com | |
| algocashmaster.net | |
| seen-on-screen.thewhizmarketing.com | |
| speednetwork6.adk2x.com | |
| traffic.getmyads.com | |
| adskeeper.co.uk | |
| h3649.ru | |
| trendingpatrol.com |
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
| # coding=utf-8 | |
| from __future__ import absolute_import | |
| from __future__ import division, print_function, unicode_literals | |
| from sumy.parsers.html import HtmlParser | |
| from sumy.parsers.plaintext import PlaintextParser | |
| from sumy.nlp.tokenizers import Tokenizer | |
| from sumy.summarizers.lsa import LsaSummarizer as Summarizer | |
| from sumy.nlp.stemmers import Stemmer | |
| from sumy.utils import get_stop_words |