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 datetime | |
| import requests | |
| import csv | |
| import time | |
| base_url = "https://api.pushshift.io/reddit/search/submission/?subreddit={subreddit}&sort=asc&sort_type=created_utc&after={after}&size=1000&before={before}" | |
| now = datetime.datetime.now() | |
| now_stamp = datetime.datetime.strftime(now, "%s") | |
| # UTC 2018/01/01 0:0: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
| #!/usr/bin/env python3 | |
| from __future__ import print_function | |
| import os | |
| import time | |
| import sys | |
| if sys.version_info.major >= 3: | |
| timer = time.perf_counter | |
| else: | |
| timer = time.time |
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
| ALLOCA: | |
| AR: ar | |
| ARCHFILE: | |
| ARCH_FLAG: | |
| AS: as | |
| ASFLAGS: | |
| BASERUBY: echo executable host ruby is required. use --with-baseruby option.; false | |
| BUILTIN_TRANSSRCS: newline.c | |
| CAPITARGET: nodoc | |
| CC: gcc |
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
| ALLOCA: | |
| AR: ar | |
| ARCHFILE: | |
| ARCH_FLAG: | |
| AS: as | |
| ASFLAGS: | |
| BASERUBY: echo executable host ruby is required. use --with-baseruby option.; false | |
| BUILTIN_TRANSSRCS: newline.c | |
| CAPITARGET: nodoc | |
| CC: gcc |
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/local/bigbluebutton/core | |
| % sudo bundle | |
| Fetching gem metadata from http://rubygems.org/........ | |
| Fetching gem metadata from http://rubygems.org/.. | |
| Using builder (2.1.2) | |
| Using diff-lcs (1.1.2) | |
| Using json (1.4.6) | |
| Using term-ansicolor (1.0.5) | |
| Installing gherkin (2.2.9) with native extensions | |
| Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension. |
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
| $Global:passwordPath = $("$env:APPDATA\dotuserpass.xml") | |
| $Global:passwordXml = @{} | |
| $Global:loggedin = $false | |
| <# | |
| Unserialize xml into object | |
| #> | |
| function load_passwords() | |
| { | |
| try |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| namespace CalcInterestTable | |
| { | |
| class Program | |
| { | |
| /// <summary> |
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
| SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; | |
| SET AUTOCOMMIT=0; | |
| START TRANSACTION; | |
| SET time_zone = "+00:00"; | |
| /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
| /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
| /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
| /*!40101 SET NAMES utf8 */; |