text
stringlengths
2
100k
meta
dict
import extractRootDomain from "../extractRootDomain"; describe("extractRootDomain", () => { test("extracts from 2-character TLDs", () => { expect(extractRootDomain("https://ssorallen.github.io/react-todos/")).toEqual("github.io"); }); test("extracts country code TLDs", () => { expect(extractRootDomain("https://www.bbc.co.uk/")).toEqual("bbc.co.uk"); }); test("extracts one of those shenanigans TLDs", () => { expect(extractRootDomain("http://www.diy.guru/")).toEqual("diy.guru"); }); });
{ "pile_set_name": "Github" }
package org.thp.cortex.util import com.typesafe.config.ConfigValueType.{BOOLEAN, NULL, NUMBER, STRING} import com.typesafe.config.{ConfigList, ConfigObject, ConfigValue} import play.api.Configuration import play.api.libs.json._ import scala.collection.JavaConverters._ object JsonConfig { implicit val configValueWrites: Writes[ConfigValue] = Writes((value: ConfigValue) => value match { case v: ConfigObject => configWrites.writes(Configuration(v.toConfig)) case v: ConfigList => JsArray(v.asScala.map(x => configValueWrites.writes(x))) case v if v.valueType == NUMBER => JsNumber(BigDecimal(v.unwrapped.asInstanceOf[Number].toString)) case v if v.valueType == BOOLEAN => JsBoolean(v.unwrapped.asInstanceOf[Boolean]) case v if v.valueType == NULL => JsNull case v if v.valueType == STRING => JsString(v.unwrapped.asInstanceOf[String]) } ) implicit def configWrites = OWrites { (cfg: Configuration) => JsObject(cfg.subKeys.map(key => key -> configValueWrites.writes(cfg.underlying.getValue(key))).toSeq) } }
{ "pile_set_name": "Github" }
# -*- coding: utf-8 -*- import re import ast try: from setuptools import setup except (ImportError): from distutils.core import setup _version_re = re.compile(r'__version__\s+=\s+(.*)') with open('jpush/__init__.py', 'rb') as f: version = str(ast.literal_eval(_version_re.search( f.read().decode('utf-8')).group(1))) setup( name='jpush', version=version, description='JPush\'s officially supported Python client library', keywords=('JPush', 'JPush API', 'Android Push', 'iOS Push'), license='MIT License', long_description=open("README.rst", "r").read(), long_description_content_type="text/markdown", url='https://github.com/jpush/jpush-api-python-client', author='jpush', author_email='support@jpush.cn', packages=['jpush', 'jpush.push', 'jpush.device', 'jpush.report', 'jpush.schedule'], platforms='any', classifiers=[ 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', ], install_requires=[ 'requests>=1.2', ], )
{ "pile_set_name": "Github" }
using Blog.Core.Common; using Blog.Core.Common.LogHelper; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Logging; using System; using System.IO; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace Blog.Core.Middlewares { /// <summary> /// 中间件 /// 记录请求和响应数据 /// </summary> public class RequRespLogMildd { /// <summary> /// /// </summary> private readonly RequestDelegate _next; private readonly ILogger<RequRespLogMildd> _logger; /// <summary> /// /// </summary> /// <param name="next"></param> public RequRespLogMildd(RequestDelegate next, ILogger<RequRespLogMildd> logger) { _next = next; _logger = logger; } public async Task InvokeAsync(HttpContext context) { if (Appsettings.app("Middleware", "RequestResponseLog", "Enabled").ObjToBool()) { // 过滤,只有接口 if (context.Request.Path.Value.Contains("api")) { context.Request.EnableBuffering(); Stream originalBody = context.Response.Body; try { // 存储请求数据 await RequestDataLog(context); using (var ms = new MemoryStream()) { context.Response.Body = ms; await _next(context); // 存储响应数据 ResponseDataLog(context.Response, ms); ms.Position = 0; await ms.CopyToAsync(originalBody); } } catch (Exception ex) { // 记录异常 _logger.LogError(ex.Message + "" + ex.InnerException); } finally { context.Response.Body = originalBody; } } else { await _next(context); } } else { await _next(context); } } private async Task RequestDataLog(HttpContext context) { var request = context.Request; var sr = new StreamReader(request.Body); var content = $" QueryData:{request.Path + request.QueryString}\r\n BodyData:{await sr.ReadToEndAsync()}"; if (!string.IsNullOrEmpty(content)) { Parallel.For(0, 1, e => { LogLock.OutSql2Log("RequestResponseLog", new string[] { "Request Data:", content }); }); request.Body.Position = 0; } } private void ResponseDataLog(HttpResponse response, MemoryStream ms) { ms.Position = 0; var ResponseBody = new StreamReader(ms).ReadToEnd(); // 去除 Html var reg = "<[^>]+>"; var isHtml = Regex.IsMatch(ResponseBody, reg); if (!string.IsNullOrEmpty(ResponseBody)) { Parallel.For(0, 1, e => { LogLock.OutSql2Log("RequestResponseLog", new string[] { "Response Data:", ResponseBody }); }); } } } }
{ "pile_set_name": "Github" }
import sys, os import argparse import argcomplete import textwrap class Base (object): always_complete_options = True def __init__ (self, args): self.inputs = args @classmethod def _get_description (klass): return klass.__doc__.split("\n\n")[0] @classmethod def _get_epilog (klass): return "\n\n".join(klass.__doc__.split("\n\n")[1:]) def prep_parser (self): prog = None if self.inputs: prog = self.inputs[0] epilog = textwrap.dedent(self._get_epilog( )) description = self._get_description( ) self.parser = argparse.ArgumentParser(prog=prog, description=description , epilog=epilog , formatter_class=argparse.RawDescriptionHelpFormatter) def configure_parser (self, parser): pass def prolog (self): pass def get_described_parser (self): self.prep_parser( ) self.configure_parser(self.parser) return self.parser def epilog (self): pass def __call__ (self): self.prep_parser( ) self.configure_parser(self.parser) argcomplete.autocomplete(self.parser, always_complete_options=self.always_complete_options); self.args = self.parser.parse_args(self.inputs) self.prolog( ) self.run(self.args) self.epilog( ) def run (self, args): print self.inputs print args from openaps import config class ConfigApp (Base): def read_config (self): cfg_file = os.environ.get('OPENAPS_CONFIG', 'openaps.ini') if not os.path.exists(cfg_file): print "Not an openaps environment, run: openaps init" sys.exit(1) pwd = os.getcwd( ) cfg_dir = os.path.dirname(cfg_file) if cfg_dir and os.getcwd( ) != cfg_dir: os.chdir(os.path.dirname(cfg_file)) self.config = config.Config.Read(cfg_file) def prolog (self): self.read_config( ) def epilog (self): self.create_git_commit( ) def git_repo (self): from git import Repo, GitCmdObjectDB self.repo = getattr(self, 'repo', Repo(os.getcwd( ), odbt=GitCmdObjectDB)) return self.repo def create_git_commit (self): self.git_repo( ) if self.repo.is_dirty( ) or self.repo.index.diff(None): # replicate commit -a, automatically add any changed paths # should help # https://github.com/openaps/openaps/issues/87 diffs = self.repo.index.diff(None) for diff in diffs: self.repo.git.add([diff.b_path], write_extension_data=False) git = self.repo.git msg = """{0:s} {1:s} TODO: better change descriptions {2:s} """.format(self.parser.prog, ' '.join(sys.argv[1:]), ' '.join(sys.argv)) # https://github.com/gitpython-developers/GitPython/issues/265 # git.commit('-avm', msg) self.repo.index.commit(msg) self.repo.git.gc(auto=True)
{ "pile_set_name": "Github" }
<html> <body> <%= yield %> </body> </html>
{ "pile_set_name": "Github" }
{ stdenv , fetchFromGitHub , ncurses , SDL }: stdenv.mkDerivation rec { pname = "curseofwar"; version = "1.3.0"; src = fetchFromGitHub { owner = "a-nikolaev"; repo = pname; rev = "v${version}"; sha256 = "1wd71wdnj9izg5d95m81yx3684g4zdi7fsy0j5wwnbd9j34ilz1i"; }; buildInputs = [ ncurses SDL ]; makeFlags = (if isNull SDL then [] else [ "SDL=yes" ]) ++ [ "PREFIX=$(out)" # force platform's cc on darwin, otherwise gcc is used "CC=${stdenv.cc.targetPrefix}cc" ]; meta = with stdenv.lib; { description = "A fast-paced action strategy game"; homepage = "https://a-nikolaev.github.io/curseofwar/"; license = licenses.gpl3; maintainers = with maintainers; [ fgaz ]; platforms = platforms.all; }; }
{ "pile_set_name": "Github" }
package shape import "github.com/oakmound/oak/v2/oakerr" // BezierCurve will form a Bezier on the given coordinates, expected in (x,y) // pairs. If the inputs have an odd length, an error noting so is returned, and // the Bezier returned is nil. func BezierCurve(coords ...float64) (Bezier, error) { if len(coords) == 0 { return nil, oakerr.InsufficientInputs{AtLeast: 2, InputName: "coords"} } if len(coords)%2 != 0 { return nil, oakerr.IndivisibleInput{ InputName: "coords", IsList: true, MustDivideBy: 2, } } pts := make([]Bezier, len(coords)/2) for i := 0; i < len(coords); i += 2 { pts[i/2] = BezierPoint{coords[i], coords[i+1]} } for len(pts) > 1 { for i := 0; i < len(pts)-1; i++ { pts[i] = BezierNode{pts[i], pts[i+1]} } pts = pts[:len(pts)-1] } return pts[0], nil } // A Bezier has a function indicating how far along a curve something is given // some float64 progress between 0 and 1. This allows points, lines, and limitlessly complex // bezier curves to be represented under this interface. // // Beziers will not necessarily break if given an input outside of 0 to 1, but the results // shouldn't be relied upon. type Bezier interface { Pos(progress float64) (x, y float64) } // A BezierNode ties together and find points between two other Beziers type BezierNode struct { Left, Right Bezier } // Pos returns the a point progress percent between this node's left and // right progress percent points. func (bn BezierNode) Pos(progress float64) (x, y float64) { x1, y1 := bn.Left.Pos(progress) x2, y2 := bn.Right.Pos(progress) return x1 + ((x2 - x1) * progress), y1 + ((y2 - y1) * progress) } // A BezierPoint covers cases where only 1 point is supplied, and serve as roots. // Consider: merging with floatgeom.Point2 type BezierPoint struct { X, Y float64 } // Pos returns this point. func (bp BezierPoint) Pos(float64) (x, y float64) { return bp.X, bp.Y }
{ "pile_set_name": "Github" }
/** * (C) Copyright IBM Corp. 2019. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. **/ import Foundation /** The objects in a collection that are detected in an image. */ public struct CollectionObjects: Codable, Equatable { /** The identifier of the collection. */ public var collectionID: String /** The identified objects in a collection. */ public var objects: [ObjectDetail] // Map each property name to the key that shall be used for encoding/decoding. private enum CodingKeys: String, CodingKey { case collectionID = "collection_id" case objects = "objects" } }
{ "pile_set_name": "Github" }
// Copyright (c) .NET Foundation and contributors. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.IO; using System.IO.Compression; using System.Linq; using System.Xml.Linq; using FluentAssertions; using Microsoft.DotNet.Tools.Test.Utilities; using Microsoft.NET.TestFramework; using Microsoft.NET.TestFramework.Assertions; using Microsoft.NET.TestFramework.Commands; using Microsoft.NET.TestFramework.Utilities; using Xunit; using Xunit.Abstractions; namespace Microsoft.DotNet.Pack.Tests { public class PackTests : SdkTest { public PackTests(ITestOutputHelper log) : base(log) { } [Fact] public void OutputsPackagesToConfigurationSubdirWhenOutputParameterIsNotPassed() { var testInstance = _testAssetsManager.CopyTestAsset("TestLibraryWithConfiguration") .WithSource(); var packCommand = new DotnetPackCommand(Log) .WithWorkingDirectory(testInstance.Path); var result = packCommand.Execute("-c", "Test"); result.Should().Pass(); var outputDir = new DirectoryInfo(Path.Combine(testInstance.Path, "bin", "Test")); outputDir.Should().Exist() .And.HaveFiles(new [] { "TestLibraryWithConfiguration.1.0.0.nupkg" }); } [Fact] public void OutputsPackagesFlatIntoOutputDirWhenOutputParameterIsPassed() { var testInstance = _testAssetsManager.CopyTestAsset("TestLibraryWithConfiguration") .WithSource(); var outputDir = new DirectoryInfo(Path.Combine(testInstance.Path, "bin2")); var packCommand = new DotnetPackCommand(Log) .WithWorkingDirectory(testInstance.Path) .Execute("-o", outputDir.FullName) .Should().Pass(); outputDir.Should().Exist() .And.HaveFiles(new [] { "TestLibraryWithConfiguration.1.0.0.nupkg" }); } [Fact] public void SettingVersionSuffixFlag_ShouldStampAssemblyInfoInOutputAssemblyAndPackage() { var testInstance = _testAssetsManager.CopyTestAsset("TestLibraryWithConfiguration") .WithSource(); new DotnetPackCommand(Log) .WithWorkingDirectory(testInstance.Path) .Execute("--version-suffix", "85", "-c", "Debug") .Should().Pass(); var output = new FileInfo(Path.Combine(testInstance.Path, "bin", "Debug", "netstandard1.5", "TestLibraryWithConfiguration.dll")); var informationalVersion = PeReaderUtils.GetAssemblyAttributeValue(output.FullName, "AssemblyInformationalVersionAttribute"); informationalVersion.Should().NotBeNull() .And.BeEquivalentTo("1.0.0-85"); var outputPackage = new FileInfo(Path.Combine(testInstance.Path, "bin", "Debug", "TestLibraryWithConfiguration.1.0.0-85.nupkg")); outputPackage.Should().Exist(); } [Fact(Skip="Test project missing")] public void HasIncludedFiles() { var testInstance = _testAssetsManager.CopyTestAsset("EndToEndTestApp") .WithSource(); new DotnetPackCommand(Log) .WithWorkingDirectory(testInstance.Path) .Execute() .Should().Pass(); var outputPackage = new FileInfo(Path.Combine(testInstance.Path, "bin", "Debug", "EndToEndTestApp.1.0.0.nupkg")); outputPackage.Should().Exist(); ZipFile.Open(outputPackage.FullName, ZipArchiveMode.Read) .Entries .Should().Contain(e => e.FullName == "packfiles/pack1.txt") .And.Contain(e => e.FullName == "newpath/pack2.txt") .And.Contain(e => e.FullName == "anotherpath/pack2.txt"); } [Fact(Skip="Test project doesn't override assembly name")] public void PackAddsCorrectFilesForProjectsWithOutputNameSpecified() { var testInstance = _testAssetsManager.CopyTestAsset("LibraryWithOutputAssemblyName") .WithSource(); new DotnetPackCommand(Log) .WithWorkingDirectory(testInstance.Path) .Execute() .Should().Pass(); var outputPackage = new FileInfo(Path.Combine(testInstance.Path, "bin", "Debug", "LibraryWithOutputAssemblyName.1.0.0.nupkg")); outputPackage.Should().Exist(); ZipFile.Open(outputPackage.FullName, ZipArchiveMode.Read) .Entries .Should().Contain(e => e.FullName == "lib/netstandard1.5/MyLibrary.dll"); var symbolsPackage = new FileInfo(Path.Combine(testInstance.Path, "bin", "Debug", "LibraryWithOutputAssemblyName.1.0.0.symbols.nupkg")); symbolsPackage.Should().Exist(); ZipFile.Open(symbolsPackage.FullName, ZipArchiveMode.Read) .Entries .Should().Contain(e => e.FullName == "lib/netstandard1.5/MyLibrary.dll") .And.Contain(e => e.FullName == "lib/netstandard1.5/MyLibrary.pdb"); } [Theory] [InlineData("TestAppSimple")] [InlineData("FSharpTestAppSimple")] public void PackWorksWithLocalProject(string projectName) { var testInstance = _testAssetsManager.CopyTestAsset(projectName) .WithSource(); new DotnetPackCommand(Log) .WithWorkingDirectory(testInstance.Path) .Execute() .Should().Pass(); } [Fact] public void ItImplicitlyRestoresAProjectWhenPackaging() { var testInstance = _testAssetsManager.CopyTestAsset("TestAppSimple") .WithSource(); new DotnetPackCommand(Log) .WithWorkingDirectory(testInstance.Path) .Execute() .Should().Pass(); } [Fact] public void ItDoesNotImplicitlyBuildAProjectWhenPackagingWithTheNoBuildOption() { var testInstance = _testAssetsManager.CopyTestAsset("TestAppSimple") .WithSource(); var result = new DotnetPackCommand(Log) .WithWorkingDirectory(testInstance.Path) .Execute("--no-build"); result.Should().Fail(); if (!TestContext.IsLocalized()) { result.Should().NotHaveStdOutContaining("Restore") .And.HaveStdOutContaining("project.assets.json"); } } [Fact] public void ItDoesNotImplicitlyRestoreAProjectWhenPackagingWithTheNoRestoreOption() { var testInstance = _testAssetsManager.CopyTestAsset("TestAppSimple") .WithSource(); new DotnetPackCommand(Log) .WithWorkingDirectory(testInstance.Path) .Execute("--no-restore") .Should().Fail() .And.HaveStdOutContaining("project.assets.json"); } [Fact] public void HasServiceableFlagWhenArgumentPassed() { var testInstance = _testAssetsManager.CopyTestAsset("TestLibraryWithConfiguration") .WithSource(); var packCommand = new DotnetPackCommand(Log) .WithWorkingDirectory(testInstance.Path); var result = packCommand.Execute("-c", "Debug", "--serviceable"); result.Should().Pass(); var outputDir = new DirectoryInfo(Path.Combine(testInstance.Path, "bin", "Debug")); outputDir.Should().Exist() .And.HaveFile("TestLibraryWithConfiguration.1.0.0.nupkg"); var outputPackage = new FileInfo(Path.Combine(outputDir.FullName, "TestLibraryWithConfiguration.1.0.0.nupkg")); var zip = ZipFile.Open(outputPackage.FullName, ZipArchiveMode.Read); zip.Entries.Should().Contain(e => e.FullName == "TestLibraryWithConfiguration.nuspec"); var manifestReader = new StreamReader(zip.Entries.First(e => e.FullName == "TestLibraryWithConfiguration.nuspec").Open()); var nuspecXml = XDocument.Parse(manifestReader.ReadToEnd()); var node = nuspecXml.Descendants().Single(e => e.Name.LocalName == "serviceable"); Assert.Equal("true", node.Value); } [Fact] public void ItPacksAppWhenRestoringToSpecificPackageDirectory() { var rootPath = Path.Combine(_testAssetsManager.CreateTestDirectory().Path, "TestProject"); Directory.CreateDirectory(rootPath); var rootDir = new DirectoryInfo(rootPath); string dir = "pkgs"; new DotnetCommand(Log, "new", "console", "-o", rootPath, "--no-restore") .WithWorkingDirectory(rootPath) .Execute() .Should() .Pass(); new DotnetRestoreCommand(Log, rootPath) .Execute("--packages", dir) .Should() .Pass(); new DotnetPackCommand(Log) .WithWorkingDirectory(rootPath) .Execute("--no-restore") .Should() .Pass(); new DirectoryInfo(Path.Combine(rootPath, "bin")) .Should().HaveFilesMatching("*.nupkg", SearchOption.AllDirectories); } [Fact] public void DotnetPackDoesNotPrintCopyrightInfo() { var testInstance = _testAssetsManager.CopyTestAsset("MSBuildTestApp") .WithSource(); var result = new DotnetPackCommand(Log) .WithWorkingDirectory(testInstance.Path) .Execute("--nologo"); result.Should().Pass(); if (!TestContext.IsLocalized()) { result.Should().NotHaveStdOutContaining("Copyright (C) Microsoft Corporation. All rights reserved."); } } } }
{ "pile_set_name": "Github" }
/////////////////////////////////////////////////////////////////////////////////// /// OpenGL Mathematics (glm.g-truc.net) /// /// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net) /// Permission is hereby granted, free of charge, to any person obtaining a copy /// of this software and associated documentation files (the "Software"), to deal /// in the Software without restriction, including without limitation the rights /// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell /// copies of the Software, and to permit persons to whom the Software is /// furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// Restrictions: /// By making use of the Software for military purposes, you choose to make /// a Bunny unhappy. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE /// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, /// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN /// THE SOFTWARE. /// /// @ref gtx_common /// @file glm/gtx/common.hpp /// @date 2014-09-08 / 2014-09-08 /// @author Christophe Riccio /// /// @see core (dependence) /// @see gtc_half_float (dependence) /// /// @defgroup gtx_common GLM_GTX_common /// @ingroup gtx /// /// @brief Provide functions to increase the compatibility with Cg and HLSL languages /// /// <glm/gtx/common.hpp> need to be included to use these functionalities. /////////////////////////////////////////////////////////////////////////////////// #pragma once // Dependencies: #include "../vec2.hpp" #include "../vec3.hpp" #include "../vec4.hpp" #include "../gtc/vec1.hpp" #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED)) # pragma message("GLM: GLM_GTX_common extension included") #endif namespace glm { /// @addtogroup gtx_common /// @{ /// Returns true if x is a denormalized number /// Numbers whose absolute value is too small to be represented in the normal format are represented in an alternate, denormalized format. /// This format is less precise but can represent values closer to zero. /// /// @tparam genType Floating-point scalar or vector types. /// /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/isnan.xml">GLSL isnan man page</a> /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a> template <typename genType> GLM_FUNC_DECL typename genType::bool_type isdenormal(genType const & x); /// Similiar to 'mod' but with a different rounding and integer support. /// Returns 'x - y * trunc(x/y)' instead of 'x - y * floor(x/y)' /// /// @see <a href="http://stackoverflow.com/questions/7610631/glsl-mod-vs-hlsl-fmod">GLSL mod vs HLSL fmod</a> /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/mod.xml">GLSL mod man page</a> template <typename T, precision P, template <typename, precision> class vecType> GLM_FUNC_DECL vecType<T, P> fmod(vecType<T, P> const & v); /// @} }//namespace glm #include "common.inl"
{ "pile_set_name": "Github" }
#---------------------------------------------------------------------------- # Tables table BASE { HorizAxis.BaseTagList ideo romn; HorizAxis.BaseScriptList DFLT romn -216 0, latn romn -216 0, gujr romn -236 0, gjr2 romn -236 0; } BASE; table head { FontRevision include(../../version.fea); } head; table OS/2 { FSType 0; Panose 2 13 0 0 0 4 0 0 0 0; UnicodeRange 0 # Basic Latin 1 # Latin-1 Supplement 2 # Latin Extended-A 3 # Latin Extended-B 6 # Combining Diacritical Marks 18 # Gujarati 0A80-0AFF 29 # Latin Extended Additional 31 # General Punctuation 32 # Superscripts And Subscripts 33 # Currency Symbols ; CodePageRange 1250 # Latin 2: Eastern Europe 1252 # Latin 1 1254 # Turkish 1257 # Baltic ; winAscent 930; winDescent 430; TypoAscender 930; TypoDescender -430; TypoLineGap 0; XHeight 413; CapHeight 568; include(WeightClass.fea); include(../WidthClass.fea); Vendor " RST"; } OS/2; table hhea { #CaretOffset -50; Ascender 930; Descender -430; LineGap 0; } hhea; table name { nameid 0 "Copyright 2010 Yrsa and Rasa Project Authors (info@rosettatype.com)"; nameid 5 "Autohinted with: ttfautohint (1.5) --hinting-range-max=96 --ignore-restrictions --strong-stem-width=G --increase-x-height=14"; nameid 7 "Yrsa and Rasa are trademarks of Rosetta Type Foundry s.r.o."; nameid 8 "Rosetta Type Foundry"; nameid 9 "Anna Giedrys (Yrsa+Rasa design), David Brezina (Yrsa art-direction, Rasa art-direction, design)"; nameid 11 "http://rosettatype.com"; nameid 12 "http://davi.cz & http://ancymonic.com"; nameid 13 "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL"; nameid 14 "http://scripts.sil.org/OFL"; } name; table GDEF { include(../uprights.gdef.fea) } GDEF; #---------------------------------------------------------------------------- # Language systems languagesystem DFLT dflt; languagesystem latn dflt; languagesystem latn AZE; languagesystem latn CRT; languagesystem latn TRK; languagesystem latn TAT; languagesystem latn KAZ; languagesystem latn MOL; languagesystem latn ROM; languagesystem latn CAT; languagesystem latn NLD; languagesystem gujr dflt; languagesystem gjr2 dflt;
{ "pile_set_name": "Github" }
<!--## Licensed to the Apache Software Foundation (ASF) under one ## or more contributor license agreements. See the NOTICE file ## distributed with this work for additional information ## regarding copyright ownership. The ASF licenses this file ## to you under the Apache License, Version 2.0 (the ## "License"); you may not use this file except in compliance ## with the License. You may obtain a copy of the License at ## ## http://www.apache.org/licenses/LICENSE-2.0 ## ## Unless required by applicable law or agreed to in writing, ## software distributed under the License is distributed on an ## "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ## KIND, either express or implied. See the License for the ## specific language governing permissions and limitations ## under the License.--> <ManagementPackFragment SchemaVersion="2.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Presentation> <ComponentTypes> <ComponentType ID="Ambari.SCOM.Presentation.Component.CommonDataSourceInterface" Accessibility="Internal"> <Property Name="Properties" Type="xsd://Microsoft.SystemCenter.Visualization.Library!Microsoft.SystemCenter.Visualization.DataSourceTypes/ValueDefinition[]" BindingDirection="In" /> <Property Name="DataSourceIncludeProperties" Type="xsd://string" BindingDirection="In" /> <Property Name="Output" Type="BaseDataType[]" BindingDirection="Out" /> <Property Name="OutputItem" Type="BaseDataType" BindingDirection="Out" /> <Property Name="DisplayStrings" Type="BaseDataType" BindingDirection="Out" /> <Property Name="Refresh" Type="xsd://Microsoft.SystemCenter.Visualization.Library!Microsoft.SystemCenter.Visualization.ActionTypes/RefreshAction" BindingDirection="In" /> <Property Name="ConnectionSessionTicket" Type="xsd://string" BindingDirection="In" /> <Property Name="IsBusy" Type="BaseDataType" BindingDirection="Out" /> <Property Name="LastError" Type="BaseDataType" BindingDirection="Out" /> </ComponentType> </ComponentTypes> </Presentation> </ManagementPackFragment>
{ "pile_set_name": "Github" }
package org.springframework.web.servlet.tags; import javax.servlet.jsp.JspException; public abstract class HtmlEscapingAwareTag extends RequestContextAwareTag { private Boolean htmlEscape; public void setHtmlEscape(boolean htmlEscape) throws JspException { this.htmlEscape = htmlEscape; } protected boolean isHtmlEscape() { return false; } protected boolean isDefaultHtmlEscape() { return false; } }
{ "pile_set_name": "Github" }
// // AppEngineConnection.h // AppEngine // // Created by Makara Khloth on 11/19/11. // Copyright 2011 __MyCompanyName__. All rights reserved. // #import <Foundation/Foundation.h> #import "SocketIPCReader.h" #import "ActivationListener.h" #import "MessagePortIPCReader.h" @class AppEngine; @interface AppEngineConnection : NSObject <SocketIPCDelegate, ActivationListener, MessagePortIPCDelegate> { @private AppEngine* mAppEngine; SocketIPCReader* mEngineSocket; MessagePortIPCReader *mEngineMessagePort; NSInteger mUICommandCode; } @property (nonatomic, assign) NSInteger mUICommandCode; - (id) initWithAppEngine: (AppEngine*) aAppEngine; - (void) processCommand: (NSInteger) aCmdId withCmdData: (id) aCmdData; @end
{ "pile_set_name": "Github" }
Expecting a primary expression, got token:+ on line 5 of input031.c
{ "pile_set_name": "Github" }
var optimist = require('../'); var test = require('tap').test; test('parse with modifier functions' , function (t) { t.plan(1); var argv = optimist().boolean('b').parse([ '-b', '123' ]); t.deepEqual(fix(argv), { b: true, _: ['123'] }); }); function fix (obj) { delete obj.$0; return obj; }
{ "pile_set_name": "Github" }
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, install, // copy or use the software. // // // License Agreement // For Open Source Computer Vision Library // // Copyright (C) 2000-2008, Intel Corporation, all rights reserved. // Copyright (C) 2009, Willow Garage Inc., all rights reserved. // Third party copyrights are property of their respective owners. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // // * Redistribution's of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // * Redistribution's in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // // * The name of the copyright holders may not be used to endorse or promote products // derived from this software without specific prior written permission. // // This software is provided by the copyright holders and contributors "as is" and // any express or implied warranties, including, but not limited to, the implied // warranties of merchantability and fitness for a particular purpose are disclaimed. // In no event shall the Intel Corporation or contributors be liable for any direct, // indirect, incidental, special, exemplary, or consequential damages // (including, but not limited to, procurement of substitute goods or services; // loss of use, data, or profits; or business interruption) however caused // and on any theory of liability, whether in contract, strict liability, // or tort (including negligence or otherwise) arising in any way out of // the use of this software, even if advised of the possibility of such damage. // //M*/ #ifndef OPENCV_CUDA_TRANSFORM_HPP #define OPENCV_CUDA_TRANSFORM_HPP #include "common.hpp" #include "utility.hpp" #include "detail/transform_detail.hpp" /** @file * @deprecated Use @ref cudev instead. */ //! @cond IGNORED namespace cv { namespace cuda { namespace device { template <typename T, typename D, typename UnOp, typename Mask> static inline void transform(PtrStepSz<T> src, PtrStepSz<D> dst, UnOp op, const Mask& mask, cudaStream_t stream) { typedef TransformFunctorTraits<UnOp> ft; transform_detail::TransformDispatcher<VecTraits<T>::cn == 1 && VecTraits<D>::cn == 1 && ft::smart_shift != 1>::call(src, dst, op, mask, stream); } template <typename T1, typename T2, typename D, typename BinOp, typename Mask> static inline void transform(PtrStepSz<T1> src1, PtrStepSz<T2> src2, PtrStepSz<D> dst, BinOp op, const Mask& mask, cudaStream_t stream) { typedef TransformFunctorTraits<BinOp> ft; transform_detail::TransformDispatcher<VecTraits<T1>::cn == 1 && VecTraits<T2>::cn == 1 && VecTraits<D>::cn == 1 && ft::smart_shift != 1>::call(src1, src2, dst, op, mask, stream); } }}} //! @endcond #endif // OPENCV_CUDA_TRANSFORM_HPP
{ "pile_set_name": "Github" }
1012 1566590872982 httpcache-v1 Method: POST URL: https://www.notion.so/api/v3/getRecordValues Body:+110 { "requests": [ { "id": "56216027-c0e3-43b2-985d-35648b9c0891", "table": "block" } ] } Response:+813 { "results": [ { "role": "comment_only", "value": { "alive": true, "content": [ "7af0dd02-4b0c-40b5-8cc6-9962d5b2487f", "e02763be-e996-4099-ba96-beb5f21adf59", "ed8507d0-2182-480f-89d0-aea3152a2802" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1505957118372, "id": "56216027-c0e3-43b2-985d-35648b9c0891", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120465430, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "lldb" ] ] }, "type": "page", "version": 9 } } ] } 10435 1566590872982 httpcache-v1 Method: POST URL: https://www.notion.so/api/v3/loadPageChunk Body:+152 { "chunkNumber": 0, "cursor": { "stack": [] }, "limit": 50, "pageId": "56216027-c0e3-43b2-985d-35648b9c0891", "verticalColumns": false } Response:+10194 { "cursor": { "stack": [] }, "recordMap": { "block": { "56216027-c0e3-43b2-985d-35648b9c0891": { "role": "comment_only", "value": { "alive": true, "content": [ "7af0dd02-4b0c-40b5-8cc6-9962d5b2487f", "e02763be-e996-4099-ba96-beb5f21adf59", "ed8507d0-2182-480f-89d0-aea3152a2802" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1505957118372, "id": "56216027-c0e3-43b2-985d-35648b9c0891", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120465430, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "lldb" ] ] }, "type": "page", "version": 9 } }, "568ac4c0-64c3-4ef6-a6ad-0b8d77230681": { "role": "comment_only", "value": { "alive": true, "content": [ "08e19004-306b-413a-ba6e-0e86a10fec7a", "623523b6-7e15-48a0-b525-749d6921465c", "25a256f9-0ce4-4eb7-8839-0ecc3cf9cd65", "d61b4f94-b10d-4d80-8d3d-238a4e7c4d10", "4da97980-9fb6-45cb-886a-51c656751d35", "aea20e01-890c-4874-ae08-4557d7789195", "c9bef0f1-c8fe-40a2-bc8b-06ace2bd7d8f", "ee0eee35-e706-4e75-9b2f-69d1d03125b2", "9a07ca64-c0c1-4dc0-9e8b-d134b348678d", "db9e9c03-e3e8-4287-a51d-4da5d507138b", "c5210d90-4251-437b-95d8-87da49bd8706", "ec1723d0-39f3-4a5c-a305-68a0deb2ad76", "e4132d5a-4401-4b2a-ad81-d8158c803ad1", "03ece883-f7df-4ce7-8596-73d04811479e", "36859b86-c5ac-423e-a037-4f3a4331b814" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1528059171080, "format": { "page_full_width": true, "page_small_text": true }, "id": "568ac4c0-64c3-4ef6-a6ad-0b8d77230681", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1555525560000, "parent_id": "bc202e06-6caa-4e3f-81eb-f226ab5deef7", "parent_table": "space", "permissions": [ { "role": "editor", "type": "user_permission", "user_id": "bb760e2d-d679-4b64-b2a9-03005b21870a" }, { "allow_duplicate": false, "allow_search_engine_indexing": false, "role": "comment_only", "type": "public_permission" } ], "properties": { "title": [ [ "Website" ] ] }, "type": "page", "version": 370 } }, "62b80980-1615-4854-be6e-a27b1af66960": { "role": "comment_only", "value": { "alive": true, "content": [ "66c160f5-e60e-4aa2-8683-c9dce71188bc", "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512456410501, "id": "62b80980-1615-4854-be6e-a27b1af66960", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1512456410501, "parent_id": "c9bef0f1-c8fe-40a2-bc8b-06ace2bd7d8f", "parent_table": "block", "type": "column_list", "version": 0 } }, "66c160f5-e60e-4aa2-8683-c9dce71188bc": { "role": "comment_only", "value": { "alive": true, "content": [ "9733706b-8f79-42bd-9f80-c02690d40285", "18de5d58-6b9f-4be4-a1d6-5f30f9e61ef1", "ffc69e47-0694-46f6-8f81-227e30e04d33", "de2c62d4-7248-4f73-adef-ceb936ea5eb7", "ee81607f-5650-4a86-acd6-b16b82fb1982", "921e0268-afd1-4d8c-8d00-630d0a4056ff", "1eaf4ae2-2268-47e6-aea9-72369bd5a4e9", "46231b41-455b-457b-8305-d189add1004b", "3e513ded-acab-49d3-86f8-24f51993ce49", "24f3e1d0-9d10-48b6-9e66-b47de19abac4", "c843f1e0-eea9-43ed-b394-009b7a9f1b56", "2d968e01-ffe9-45bf-bd90-b4616396cf0a", "f676ae9b-cd87-48cb-a757-821ea1f0a264", "9743fc3f-6f03-4022-bce3-d3f66cbd162f", "840474db-f4cb-4f62-9792-d854e9108155", "7b012643-f530-458c-9ff2-d36203f7aeae", "c7a9a476-031a-4c7c-9fc5-59bcc9f84433", "d79f6a5f-2804-40f6-a396-13ede3b6f4fd", "c45ea742-c768-4df4-90ff-81e015598690", "53b6fc6e-1f19-4550-885e-3a0717e706cc", "1ae71445-1f07-461d-bf6d-7932f4d43c51", "5be79f93-59c2-454e-8181-e841e607c33e", "854d9940-a0f1-4b54-981f-6d25d2c064c5", "1912e300-19b2-480f-acc4-47baae12b454", "d773aa82-9dae-4e5c-91fd-5df9bf00b506", "c1bd7ffd-6690-49d3-a4f5-4ab5e4c02817", "4ea4d79a-628a-446b-bbd9-fe437cae5f84", "d94e10ca-0a08-419e-8b02-79c832275207", "db5ebfcd-5966-401f-8ba5-bd2f7c088730", "afb51309-3534-4530-93b1-f4a56d95c294", "d596823b-59e2-41b0-ac3c-983228bf492d", "56216027-c0e3-43b2-985d-35648b9c0891", "53b92beb-07b0-40e7-9ac3-133b1697d5ce", "a9969fdc-d396-4544-91f8-980bc5517d13" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512456410501, "format": { "column_ratio": 0.5 }, "id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1565826360000, "parent_id": "62b80980-1615-4854-be6e-a27b1af66960", "parent_table": "block", "type": "column", "version": 221 } }, "7af0dd02-4b0c-40b5-8cc6-9962d5b2487f": { "role": "comment_only", "value": { "alive": true, "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1505957127306, "id": "7af0dd02-4b0c-40b5-8cc6-9962d5b2487f", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1505957127306, "parent_id": "56216027-c0e3-43b2-985d-35648b9c0891", "parent_table": "block", "properties": { "title": [ [ "Links:" ] ] }, "type": "text", "version": 0 } }, "c9bef0f1-c8fe-40a2-bc8b-06ace2bd7d8f": { "role": "comment_only", "value": { "alive": true, "content": [ "943f9255-a27b-472d-8d24-169797f4f780", "62b80980-1615-4854-be6e-a27b1af66960" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1492378440043, "format": { "page_full_width": true, "page_small_text": true }, "id": "c9bef0f1-c8fe-40a2-bc8b-06ace2bd7d8f", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1565826360000, "parent_id": "568ac4c0-64c3-4ef6-a6ad-0b8d77230681", "parent_table": "block", "permissions": [ { "role": "editor", "type": "user_permission", "user_id": "bb760e2d-d679-4b64-b2a9-03005b21870a" } ], "properties": { "title": [ [ "Tools and services" ] ] }, "type": "page", "version": 81 } }, "e02763be-e996-4099-ba96-beb5f21adf59": { "role": "comment_only", "value": { "alive": true, "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1505957129105, "id": "e02763be-e996-4099-ba96-beb5f21adf59", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1505957129105, "parent_id": "56216027-c0e3-43b2-985d-35648b9c0891", "parent_table": "block", "properties": { "title": [ [ "https://medium.com/flawless-app-stories/debugging-swift-code-with-lldb-b30c5cf2fd49", [ [ "a", "https://medium.com/flawless-app-stories/debugging-swift-code-with-lldb-b30c5cf2fd49" ] ] ] ] }, "type": "bulleted_list", "version": 0 } }, "ed8507d0-2182-480f-89d0-aea3152a2802": { "role": "comment_only", "value": { "alive": true, "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1506048950233, "id": "ed8507d0-2182-480f-89d0-aea3152a2802", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1506048950233, "parent_id": "56216027-c0e3-43b2-985d-35648b9c0891", "parent_table": "block", "type": "text", "version": 0 } } }, "notion_user": { "bb760e2d-d679-4b64-b2a9-03005b21870a": { "role": "reader", "value": { "clipper_onboarding_completed": true, "email": "kkowalczyk@gmail.com", "family_name": "Kowalczyk", "given_name": "Krzysztof", "id": "bb760e2d-d679-4b64-b2a9-03005b21870a", "mobile_onboarding_completed": true, "onboarding_completed": true, "profile_photo": "https://s3-us-west-2.amazonaws.com/public.notion-static.com/2dcaa66c-7674-4ff6-9924-601785b63561/head-bw-640x960.png", "version": 182 } } }, "space": {} } } 36394 1566590872984 httpcache-v1 Method: POST URL: https://www.notion.so/api/v3/getRecordValues Body:+3014 { "requests": [ { "id": "18de5d58-6b9f-4be4-a1d6-5f30f9e61ef1", "table": "block" }, { "id": "1912e300-19b2-480f-acc4-47baae12b454", "table": "block" }, { "id": "1ae71445-1f07-461d-bf6d-7932f4d43c51", "table": "block" }, { "id": "1eaf4ae2-2268-47e6-aea9-72369bd5a4e9", "table": "block" }, { "id": "24f3e1d0-9d10-48b6-9e66-b47de19abac4", "table": "block" }, { "id": "2d968e01-ffe9-45bf-bd90-b4616396cf0a", "table": "block" }, { "id": "3e513ded-acab-49d3-86f8-24f51993ce49", "table": "block" }, { "id": "46231b41-455b-457b-8305-d189add1004b", "table": "block" }, { "id": "4ea4d79a-628a-446b-bbd9-fe437cae5f84", "table": "block" }, { "id": "53b6fc6e-1f19-4550-885e-3a0717e706cc", "table": "block" }, { "id": "53b92beb-07b0-40e7-9ac3-133b1697d5ce", "table": "block" }, { "id": "5be79f93-59c2-454e-8181-e841e607c33e", "table": "block" }, { "id": "7b012643-f530-458c-9ff2-d36203f7aeae", "table": "block" }, { "id": "840474db-f4cb-4f62-9792-d854e9108155", "table": "block" }, { "id": "854d9940-a0f1-4b54-981f-6d25d2c064c5", "table": "block" }, { "id": "921e0268-afd1-4d8c-8d00-630d0a4056ff", "table": "block" }, { "id": "9733706b-8f79-42bd-9f80-c02690d40285", "table": "block" }, { "id": "9743fc3f-6f03-4022-bce3-d3f66cbd162f", "table": "block" }, { "id": "a9969fdc-d396-4544-91f8-980bc5517d13", "table": "block" }, { "id": "afb51309-3534-4530-93b1-f4a56d95c294", "table": "block" }, { "id": "c1bd7ffd-6690-49d3-a4f5-4ab5e4c02817", "table": "block" }, { "id": "c45ea742-c768-4df4-90ff-81e015598690", "table": "block" }, { "id": "c7a9a476-031a-4c7c-9fc5-59bcc9f84433", "table": "block" }, { "id": "c843f1e0-eea9-43ed-b394-009b7a9f1b56", "table": "block" }, { "id": "d596823b-59e2-41b0-ac3c-983228bf492d", "table": "block" }, { "id": "d773aa82-9dae-4e5c-91fd-5df9bf00b506", "table": "block" }, { "id": "d79f6a5f-2804-40f6-a396-13ede3b6f4fd", "table": "block" }, { "id": "d94e10ca-0a08-419e-8b02-79c832275207", "table": "block" }, { "id": "db5ebfcd-5966-401f-8ba5-bd2f7c088730", "table": "block" }, { "id": "de2c62d4-7248-4f73-adef-ceb936ea5eb7", "table": "block" }, { "id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "table": "block" }, { "id": "ee81607f-5650-4a86-acd6-b16b82fb1982", "table": "block" }, { "id": "f676ae9b-cd87-48cb-a757-821ea1f0a264", "table": "block" }, { "id": "ffc69e47-0694-46f6-8f81-227e30e04d33", "table": "block" } ] } Response:+33288 { "results": [ { "role": "comment_only", "value": { "alive": true, "content": [ "76d0eb54-8a0d-4298-b110-e303192a2811", "8ea25660-9981-4f34-bd37-ddb9c86f85aa", "df0d5323-8b6f-455a-a3f3-4a0a2ca9057d", "cb7716bc-7913-44ef-ac37-a87900771c05" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1535939776129, "format": { "page_full_width": true, "page_small_text": true }, "id": "18de5d58-6b9f-4be4-a1d6-5f30f9e61ef1", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1545787532587, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "apt" ] ] }, "type": "page", "version": 25 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "ca979f63-cd96-44c9-87f8-3ba74c26d2c3" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512369603578, "id": "1912e300-19b2-480f-acc4-47baae12b454", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1512369603578, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "hexdump" ] ] }, "type": "page", "version": 0 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "5f4e205a-2444-43fc-8e14-068cc33d60fb", "bed7eb1a-9a3e-4896-b262-8181cb8179b7", "4920987a-92b8-4732-a8d1-417459511266", "d51c0352-e843-4f90-8a52-4d4f56bc8f01" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1535486620389, "format": { "page_full_width": true, "page_small_text": true }, "id": "1ae71445-1f07-461d-bf6d-7932f4d43c51", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1559948580000, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "gitpod.io" ] ] }, "type": "page", "version": 46 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "ff1194fe-141e-45f6-a353-b25f0609eced", "81c42ede-23f7-4efa-84ba-775ec6ddfa87", "c5a8115d-568e-4bc9-bfca-706433689878" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1531178482303, "id": "1eaf4ae2-2268-47e6-aea9-72369bd5a4e9", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1531178554449, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "caddy" ] ] }, "type": "page", "version": 23 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "bdef791a-0335-4052-ab4e-04d3c6a78c0e", "ceae5595-93cf-41a4-bf63-3cba3e5c97f9", "4ad1c07e-8626-4b23-b221-e3d7d7c34866", "4858e2a6-def3-41b2-a67c-f3a5252dcdc6", "7dc484b0-c246-4eea-882b-de8d35fb8645" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1548270279254, "format": { "page_full_width": true, "page_small_text": true }, "id": "24f3e1d0-9d10-48b6-9e66-b47de19abac4", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1550085540000, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "chrome cast, chromecast" ] ] }, "type": "page", "version": 71 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "00076f06-7147-4205-b23d-16271790cde6", "6e49a22a-5e80-46d5-bf64-fe101f81824b", "cc9d4161-43a3-40dd-a9f9-3e46a0d934d1", "a5f977f4-d622-4717-ba55-90719374a423", "30740c17-28d6-413c-b434-9479561bf22a", "fcee76c7-6b6f-4511-bbf1-b296bbee7719" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1493937180823, "format": { "page_full_width": true, "page_small_text": true }, "id": "2d968e01-ffe9-45bf-bd90-b4616396cf0a", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1549184880000, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "cmake" ] ] }, "type": "page", "version": 7 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "8ef89358-e0ef-4ec8-acc4-f00d3ef056b7", "a5f880c6-dc96-4e55-8936-ed5b381cd977" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1565826365753, "format": { "page_full_width": true, "page_small_text": true }, "id": "3e513ded-acab-49d3-86f8-24f51993ce49", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1565826360000, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "circleci" ] ] }, "type": "page", "version": 15 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "e4914249-e61f-4dc4-8acf-41e09736992b", "d07e17a3-99f1-46bc-bd29-387b6693c329", "aff2c0f7-7d37-4753-9363-73f2335d9b9f", "324c2d7f-3da0-492b-af1c-c4956ba92f59", "611eb9d7-627f-4473-8994-35bdf6c446ef", "16993f44-7de7-41a0-894a-05e058e92982" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1553024316245, "format": { "page_full_width": true, "page_small_text": true }, "id": "46231b41-455b-457b-8305-d189add1004b", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1553024400000, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "choco, chocolatey" ] ] }, "type": "page", "version": 34 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "63e3782b-4b9b-4a71-83a4-a280615d305e", "f3593e67-9053-4d64-8cb3-6883858e12c6" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1530301265109, "format": { "page_full_width": true, "page_small_text": true }, "id": "4ea4d79a-628a-446b-bbd9-fe437cae5f84", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1535486608816, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "html to pdf" ] ] }, "type": "page", "version": 41 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "c1b7d89e-4672-4e12-a609-36b65fd744df", "fd63da14-a9e5-4bbc-89f1-32ace66405ab" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1550085553791, "format": { "page_full_width": true, "page_small_text": true }, "id": "53b6fc6e-1f19-4550-885e-3a0717e706cc", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1550085540000, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "github" ] ] }, "type": "page", "version": 15 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "1b95afdc-22bb-49f2-ba13-10c542cde7bb" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1552017696817, "format": { "page_full_width": true, "page_small_text": true }, "id": "53b92beb-07b0-40e7-9ac3-133b1697d5ce", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1552723800000, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "GraphQL" ] ] }, "type": "page", "version": 25 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "1493daec-2c31-4c98-8b46-c9940f395bc8", "65ede322-7b66-4fb3-ad0d-1dc3f513a1f9", "6e5258a4-b72e-443c-810b-b65a753f73bb" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1535586591127, "format": { "page_full_width": true, "page_small_text": true }, "id": "5be79f93-59c2-454e-8181-e841e607c33e", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1552098240000, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "goland" ] ] }, "type": "page", "version": 39 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "ab416a80-1f9a-49d8-85e2-aff025ad4856", "4aa6b22c-0882-4b9f-bdb4-ec3e65f271fd" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512370727054, "format": { "page_full_width": true, "page_small_text": true }, "id": "7b012643-f530-458c-9ff2-d36203f7aeae", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120348389, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "ffmpeg" ] ] }, "type": "page", "version": 8 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "fb2c0c20-42c6-48cc-aa49-2634b09147e8" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512356053424, "format": { "page_full_width": true, "page_small_text": true }, "id": "840474db-f4cb-4f62-9792-d854e9108155", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120351883, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "find" ] ] }, "type": "page", "version": 10 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "d94706c5-826b-49cb-8fec-6c9c67229e5d" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512356006769, "format": { "page_full_width": true, "page_small_text": true }, "id": "854d9940-a0f1-4b54-981f-6d25d2c064c5", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120355654, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "grep" ] ] }, "type": "page", "version": 3 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "4556c7df-e3de-415e-bb23-91315250a691", "b94a3c4f-9ba3-466b-825f-d9726cd6a470", "1e253dfe-7fd9-4ee8-ac00-a4599b90f648", "07990fa9-bbeb-4616-8e7c-b520019b348a", "8248ecd0-b93b-466c-a08f-22ee9a077ec4" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512531668874, "format": { "page_full_width": true, "page_small_text": true }, "id": "921e0268-afd1-4d8c-8d00-630d0a4056ff", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1512531668874, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "broken link checking" ] ] }, "type": "page", "version": 0 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "03a72411-5de1-46fd-b5df-19479f0a4547", "bd8b28b4-c929-427c-b577-1eecd64cda0e", "ac6b7ee3-aea9-424b-b43d-4a1df085d753", "bcb8fb7d-fb91-4a8b-b1d0-ad28d0fcaad7", "3a742d00-ddfd-4ebc-ade0-e36203c8beaa", "8a5ef93e-a76d-48ae-98de-4fccf3ad2ab3" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1510030989726, "format": { "page_full_width": true, "page_small_text": true }, "id": "9733706b-8f79-42bd-9f80-c02690d40285", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1519598440030, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "appveyor" ] ] }, "type": "page", "version": 4 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "17a5823b-d8ea-4eaf-9e83-3696ac26a54f", "b196d6bd-5a4b-4653-bac1-6df7ac6d5153", "e25fcb3c-6410-45ed-9c44-6e1ab924f4f1", "1c3d6a50-734d-4529-a0b2-11775afc9986", "291c9e59-2644-4b75-b6ff-b28a4ffcacbb", "08f92405-3431-4d02-9dbf-8dd553784099", "b1268def-9ddb-4061-af66-83f7aa48e152", "bb7dff69-ebd9-4eee-803b-ff68adbe02a2", "6340b10d-9732-4645-87cd-d60f22ba1eca", "f016ae95-c7ca-4024-b306-6b4d1258b643", "305702f0-d107-4a43-8a75-2d34b145f34e" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1473637932738, "format": { "page_full_width": true, "page_small_text": true }, "id": "9743fc3f-6f03-4022-bce3-d3f66cbd162f", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1552448940000, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "Docker" ] ] }, "type": "page", "version": 79 } }, { "role": "comment_only", "value": { "alive": true, "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1553024280000, "id": "a9969fdc-d396-4544-91f8-980bc5517d13", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1553024280000, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "type": "text", "version": 3 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "56ee1aa1-461c-4737-b881-e907bcbf12d8", "2adeca62-ffb8-428a-895a-7ad965799633", "28c34d8a-f027-4363-973d-b616fb25ffa5", "ec99f550-e268-4e5e-9d78-e484f2641894", "01a27617-e1b2-43b1-9589-e55ac960ffbd", "6b885c35-ce06-44e3-896d-636188b6b844", "b13cc342-a357-4777-8a23-258db2deb9b5" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1493538912250, "format": { "page_full_width": true, "page_small_text": true }, "id": "afb51309-3534-4530-93b1-f4a56d95c294", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120367742, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "InnoSetup" ] ] }, "type": "page", "version": 3 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "84404547-467c-49f3-81a6-ed0c867e3eca", "edcb1136-da56-4a0c-8bc1-07c6c4ffeda6" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512456553182, "format": { "page_full_width": true, "page_small_text": true }, "id": "c1bd7ffd-6690-49d3-a4f5-4ab5e4c02817", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1565826300000, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "hosted ci services" ] ] }, "type": "page", "version": 52 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "fb2dcd1a-906b-4a38-8128-bf2321b5b03e", "a4a21d4f-fdbd-43d5-ac3a-c8537319ac7f", "bc513583-9c7a-4101-b70a-9a75789085ee", "38d5121c-06a3-4444-8dd6-0150b692088b", "a9bc96e8-41d8-4c04-987f-ff17cf776d7f", "359e33f0-f6db-4f60-8df1-f55a8d172488", "0e677c6d-6f36-43db-afcf-7bca57ff6650", "4d20225f-09e9-459a-9e3f-efbcc0c10512", "7cb8d4fb-b5fa-491d-96d1-9862abfa5575", "d5b3f1a2-9772-4aa3-980d-6953ec1a5521", "6c40c02e-debb-4057-a5b4-4b7cdb2f52f2", "08152f23-2300-4bd5-be0f-af62a28c6ffc", "8f13c8e0-5193-49ab-a717-ea5c98bf16f8", "4f5f2384-e781-474c-8dee-1b40eeab2838", "1048195e-2735-48e0-b2a2-8f21f3bbcac9" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1492378440043, "format": { "page_full_width": true, "page_small_text": true }, "id": "c45ea742-c768-4df4-90ff-81e015598690", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1565410740000, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "git" ] ] }, "type": "page", "version": 72 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "f5961fec-00ec-43c3-8ebd-d7573b2386b0", "b8e5628a-aefc-4824-b2ce-efa9e13e3b1d" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1493937588703, "format": { "page_full_width": true, "page_small_text": true }, "id": "c7a9a476-031a-4c7c-9fc5-59bcc9f84433", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1493937588703, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "gcc" ] ] }, "type": "page", "version": 0 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "4730a509-4fc9-4282-a7b4-a87bccd20c1e", "97b14779-764a-48ea-bdb2-cbe286951501", "e87d8255-ed5f-4aa1-920b-22f40ae0c382", "1e84213a-b725-4b19-9999-f0403b149d84", "6fb7aad4-876a-46d5-9b29-233c0a6f4320", "d4e5355a-83e4-41cf-b78c-bcb45d3ee8ec" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1501802798124, "format": { "page_full_width": true, "page_small_text": true }, "id": "c843f1e0-eea9-43ed-b394-009b7a9f1b56", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1520966080593, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "clang" ] ] }, "type": "page", "version": 2 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "a096a12e-28af-45b8-b23d-cf52e6845f9f" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512369667028, "id": "d596823b-59e2-41b0-ac3c-983228bf492d", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1512369667028, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "iptables" ] ] }, "type": "page", "version": 0 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "00f5395b-f921-4ff4-b70e-6f820fe48cf5", "82896df5-9360-407e-8572-f775f01f5a72", "11105dc0-2b5f-45c5-aec7-a97307fb5fd6", "a0b2208a-eac4-45c3-8a03-075de7b713f9", "079ce11d-f34e-4bdc-88f7-7f11728589a1" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1508697122041, "format": { "page_full_width": true, "page_small_text": true }, "id": "d773aa82-9dae-4e5c-91fd-5df9bf00b506", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1530046844953, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "homebrew" ] ] }, "type": "page", "version": 15 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "301623d2-fe0a-4144-a197-1f303a8bc1dc", "bd8933d4-7618-439a-b8d5-abbd75158c6d", "138c118d-17fd-4448-a009-049ef2a3a3fd", "84ed0428-4a02-45fc-899a-a08b6da4430b", "be2ffbb8-36b2-4ab8-b7ac-b8bd87788102", "0345da62-ac1e-49bf-a810-fb79366dcfe1", "d18bf04d-40bd-4ad3-b10f-a76f1d763791", "852be8fa-f085-48a7-897f-eecd974d7892", "ee7a49ce-b1b9-465f-8a58-52998e28ed33", "e2c17770-ec85-4595-875b-52c906e64831", "a5b6c04a-36df-40eb-a294-8d2121b23faa", "0373ada3-35b4-4102-a056-e47119b8146a", "c58e4acf-2146-4e44-9e91-75fb08e961fb", "e01477a7-7aae-407b-ab42-ec99e5264a05", "cce64f16-d4f6-436a-bcf9-f39a4ed91ba4", "dcf550fe-5188-4c2a-9d06-11ed540e0c57", "5bd0c01f-05c2-4da0-a703-d147fa16a490", "80d7fab6-8354-4d61-9c68-c72dd4ec45c1", "67a65fe3-07aa-4eb4-9a72-14aa80096e89", "4918614b-dae3-4b17-94d9-97239ad73b05" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512370675523, "format": { "page_full_width": true, "page_small_text": true }, "id": "d79f6a5f-2804-40f6-a396-13ede3b6f4fd", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1535658274470, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "gdb" ] ] }, "type": "page", "version": 52 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "8bbea5a6-ccb0-47be-80ba-4e29febcaadb", "e26bde54-639d-4665-b32c-a369da4575cd" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1517190755795, "id": "d94e10ca-0a08-419e-8b02-79c832275207", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120437058, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "httpie" ] ] }, "type": "page", "version": 23 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "98c573a1-fc33-467a-b347-28b9ed471ce7", "f60f1784-24a1-4f89-9be0-ac2db919810b", "871f1c07-a2d5-4126-ac7e-531e2b72f007" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1517187688278, "id": "db5ebfcd-5966-401f-8ba5-bd2f7c088730", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120433220, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "hyper.is" ] ] }, "type": "page", "version": 36 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "818ff641-b07a-4fe0-846f-42b7b553a1c4", "01265282-d86f-43fa-925b-f37288052188", "df345deb-48ca-421d-8a16-0a99ecd6fb8f", "78575440-41ab-453e-8d88-3648a0089735", "ec7c9b88-e545-4df7-9618-b5e618e0deaf", "8329211a-24a0-4277-9f67-b9fb8613aca3", "b9c9c8d0-feb1-4b87-9d63-00683f1732d7", "2e7d7e9c-71d4-41bb-9eb9-898483d33261" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1511323475543, "format": { "page_full_width": true, "page_small_text": true }, "id": "de2c62d4-7248-4f73-adef-ceb936ea5eb7", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1547585633043, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "bash" ] ] }, "type": "page", "version": 9 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "822e3c01-80bd-468a-8c70-4e9c7e895bb1", "f511e438-4d54-4bf4-9b99-deee90438992", "79f8d68c-67a7-47fb-93bf-88a868e85c36", "d52e2ccc-c605-4e2e-8922-220a3b3cc9fd", "7097d0b0-6616-4177-9ea3-5929049be1c4", "c35e671a-9211-44dd-97e7-71325c4f8c61", "bf1261dd-c29f-49de-9a9b-49611911a6da", "a518f0ec-d095-42b1-9aea-4034849fa37e", "184e6d93-e489-4448-b837-9241accf6bda", "16159d4a-d712-4326-8165-c72f4cfe4eec", "4653fe6a-59f2-4002-bac1-2abba014e77e", "7ec3f72c-03f3-461b-8d53-8bbcf8b9888d", "5749be0d-4e27-4e61-99a5-d9de82cb57f8", "c174875e-f8e4-4d6f-b149-4ae10bd5a33c", "f7d8b37f-6205-4d3e-9012-5b0d3ef44713", "ed889e66-a03b-4980-afe1-e1578ab522e5", "de6b4f3a-a858-466f-9771-6be86ae0a9d4", "2b312d2d-6cc7-48e1-bc0b-ba1d061f88fe", "9d802f54-65d3-4881-8445-c46ba6c7202c", "a6bfde90-c3d5-479b-9c38-85dcb126dea0", "ef11ef21-0f07-45d9-b473-2de7b8563a2a", "896a9d12-f40c-44da-924b-b4979993cef3", "2e8d39a3-a23d-4d33-abbb-4f8154efb231", "282cd1fa-cbd7-40eb-a886-5a44bec4ccc3", "e7b071b3-6bfc-4eaa-aa7c-897f19153802", "e9c202dd-9c5a-4e46-b2da-9c492c12ce9d", "fa7762b1-1c56-4a80-8562-88d08fbfa145", "61ad39c0-e049-4818-92ff-7420fa27a390", "ae389859-fcfe-4b73-9187-6decbe1aab54", "0a56b5a8-7b24-4914-83d1-92f8580efc5e", "1b61c073-c94e-46ed-b1f6-e3cb1b4bad4e", "1154caf2-d6b8-430a-83a6-80be9d0a340c" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512456410501, "format": { "column_ratio": 0.5 }, "id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1564184160000, "parent_id": "62b80980-1615-4854-be6e-a27b1af66960", "parent_table": "block", "type": "column", "version": 143 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "d49bedc1-c98a-47d4-83d3-472b32852620", "36af86f8-c637-4b70-8f65-89ebf75d5cdc" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1535583016286, "format": { "page_full_width": true, "page_small_text": true }, "id": "ee81607f-5650-4a86-acd6-b16b82fb1982", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1535587012834, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "bing" ] ] }, "type": "page", "version": 23 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "0f2796f7-10ff-40cd-b39e-33862b6980ca", "b29ef2d7-1728-433c-bc0d-38121f3d311e", "145e4901-a1cb-4bcc-8e60-bf5a5d68014f", "a29364ae-5509-4db9-b4c0-5619188075b8" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1536057490674, "format": { "page_full_width": true, "page_small_text": true }, "id": "f676ae9b-cd87-48cb-a757-821ea1f0a264", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1545787539606, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "diff2html" ] ] }, "type": "page", "version": 37 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "41c53701-0849-46ae-99cd-2efa84b30d67", "0c9330bc-948e-4b2b-8b4b-dd343a5300e2" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1529120276743, "format": { "page_full_width": true, "page_small_text": true }, "id": "ffc69e47-0694-46f6-8f81-227e30e04d33", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120329318, "parent_id": "66c160f5-e60e-4aa2-8683-c9dce71188bc", "parent_table": "block", "properties": { "title": [ [ "awk" ] ] }, "type": "page", "version": 24 } } ] } 40227 1566590872985 httpcache-v1 Method: POST URL: https://www.notion.so/api/v3/getRecordValues Body:+2838 { "requests": [ { "id": "0a56b5a8-7b24-4914-83d1-92f8580efc5e", "table": "block" }, { "id": "1154caf2-d6b8-430a-83a6-80be9d0a340c", "table": "block" }, { "id": "16159d4a-d712-4326-8165-c72f4cfe4eec", "table": "block" }, { "id": "184e6d93-e489-4448-b837-9241accf6bda", "table": "block" }, { "id": "1b61c073-c94e-46ed-b1f6-e3cb1b4bad4e", "table": "block" }, { "id": "282cd1fa-cbd7-40eb-a886-5a44bec4ccc3", "table": "block" }, { "id": "2b312d2d-6cc7-48e1-bc0b-ba1d061f88fe", "table": "block" }, { "id": "2e8d39a3-a23d-4d33-abbb-4f8154efb231", "table": "block" }, { "id": "4653fe6a-59f2-4002-bac1-2abba014e77e", "table": "block" }, { "id": "5749be0d-4e27-4e61-99a5-d9de82cb57f8", "table": "block" }, { "id": "61ad39c0-e049-4818-92ff-7420fa27a390", "table": "block" }, { "id": "7097d0b0-6616-4177-9ea3-5929049be1c4", "table": "block" }, { "id": "79f8d68c-67a7-47fb-93bf-88a868e85c36", "table": "block" }, { "id": "7ec3f72c-03f3-461b-8d53-8bbcf8b9888d", "table": "block" }, { "id": "822e3c01-80bd-468a-8c70-4e9c7e895bb1", "table": "block" }, { "id": "896a9d12-f40c-44da-924b-b4979993cef3", "table": "block" }, { "id": "9d802f54-65d3-4881-8445-c46ba6c7202c", "table": "block" }, { "id": "a518f0ec-d095-42b1-9aea-4034849fa37e", "table": "block" }, { "id": "a6bfde90-c3d5-479b-9c38-85dcb126dea0", "table": "block" }, { "id": "ae389859-fcfe-4b73-9187-6decbe1aab54", "table": "block" }, { "id": "bf1261dd-c29f-49de-9a9b-49611911a6da", "table": "block" }, { "id": "c174875e-f8e4-4d6f-b149-4ae10bd5a33c", "table": "block" }, { "id": "c35e671a-9211-44dd-97e7-71325c4f8c61", "table": "block" }, { "id": "d52e2ccc-c605-4e2e-8922-220a3b3cc9fd", "table": "block" }, { "id": "de6b4f3a-a858-466f-9771-6be86ae0a9d4", "table": "block" }, { "id": "e7b071b3-6bfc-4eaa-aa7c-897f19153802", "table": "block" }, { "id": "e9c202dd-9c5a-4e46-b2da-9c492c12ce9d", "table": "block" }, { "id": "ed889e66-a03b-4980-afe1-e1578ab522e5", "table": "block" }, { "id": "ef11ef21-0f07-45d9-b473-2de7b8563a2a", "table": "block" }, { "id": "f511e438-4d54-4bf4-9b99-deee90438992", "table": "block" }, { "id": "f7d8b37f-6205-4d3e-9012-5b0d3ef44713", "table": "block" }, { "id": "fa7762b1-1c56-4a80-8562-88d08fbfa145", "table": "block" } ] } Response:+37297 { "results": [ { "role": "comment_only", "value": { "alive": true, "content": [ "713efcff-d6cd-4797-837c-23f2cbc8eabb", "48f01123-f8c7-4acb-852d-2cfbb1902b35", "76f8d8d7-5177-454e-92f2-7d46e05486f3", "0db6ad56-cd18-4c8a-a51a-e98d0934e381", "2689627d-3bc5-46cb-869c-766a2a77a47f", "e0f1bc1a-5234-4351-abe4-adb69930abaa", "081308f2-95d1-4b77-b051-8461ee446026", "276cc271-e3a9-40ac-bbdc-90c0959d8ec1", "db99a3c7-e4fb-49aa-9425-e992bf405e09", "91691dc4-d6fd-494c-8481-d1e97ba0e3cb", "1d8f8c8c-34c2-495b-a54d-2882d582ef45", "a5fae962-a78e-4be7-9705-6049c569150e" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1493937637483, "format": { "page_full_width": true, "page_small_text": true }, "id": "0a56b5a8-7b24-4914-83d1-92f8580efc5e", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1544217561311, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "wsl (Windows Subsystem For Linux)" ] ] }, "type": "page", "version": 7 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "18bb881e-405a-4ae4-8592-d77459e49841", "96294aa2-3531-42d5-935e-0cdf544ed437", "24e5cdc8-89f6-4181-a0a6-3296e76bf22e", "65713321-bafc-49ed-b568-f0250182002b", "79d2de06-8e70-43e2-92e9-0650c98d989b", "c56628b9-cdf4-412d-980f-6ccfdbb29f99" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1564184217877, "format": { "page_full_width": true, "page_small_text": true }, "id": "1154caf2-d6b8-430a-83a6-80be9d0a340c", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1564184820000, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "quickjs" ] ] }, "type": "page", "version": 21 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "474c24ba-fc08-4f31-9760-67ec18d68e9a", "15749353-316e-42a9-9ff1-8626b43ceb9e", "9fe82467-18ee-40e4-95f9-649e38cc122a", "e78f181d-ba7a-4def-aabb-c6b14bfeb741", "383ec2bb-a867-4731-af2a-a2a79c5b3a77", "75eb8bd2-28d2-4784-8328-0e5b485a0826", "55f15c58-4372-4f6c-bc07-03f4a6e05dfd" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1496776428787, "format": { "page_full_width": true, "page_small_text": true }, "id": "16159d4a-d712-4326-8165-c72f4cfe4eec", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1544467667802, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "Prometheus" ] ] }, "type": "page", "version": 15 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "2d8c3352-6977-42a9-b14c-5aa6d847af5b", "92d53d50-211c-42e3-bc76-6b1599caa898", "83310600-ba6c-4a86-9838-f5861645e55b", "66f2ebbc-9b76-4bbb-9a8e-9f888ee3eeea", "57ca43cb-02e1-4adf-9865-471662021f9d", "478e697c-fd27-4565-8c82-5fdb83349853", "cddc87e0-af31-4712-8a2b-1cdd7cea34d1", "6db33da8-ea24-4449-bc96-bd34b430bd12", "c10c78ed-5f5b-4470-9e87-5da114d06753", "80a15633-6ea9-4254-8749-faf263bda954", "3f3c6506-36bd-45fc-bad3-07072b6b3fc1", "84e243b4-9529-40ee-931e-7b00b9a44d77", "be2ab636-589a-4027-a6c0-ef5563392f25", "5812dbe6-8988-4bb8-88c6-24200f32a3bd", "0094238a-6d52-4d09-923a-b82d1974db7e", "aada46f3-7c95-4fca-bd92-0da79d6d20f2", "3d66ee4e-0890-4bdf-aa6c-781149227bb9", "8a7bff56-5ebc-4c11-84cc-9dae11f39e62", "e0932eb6-a70e-4b0e-94ca-05beb2b44ed5", "4f07bf80-3a1b-4194-a1c1-41b515087458", "87cdeed5-0f0b-4359-8a81-c05bc9d7b586", "1b891bca-af44-4c78-93d6-8cd6932a9cd3", "3b1c84ed-13ea-4584-bf27-45fef05538a4", "0773ca17-1fa3-49cb-8e3f-418cf626adad", "388dea10-65d2-434a-aaea-f6c921250284", "59c2be0b-3cf4-4020-8a14-03a48432c070" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1492316308114, "format": { "page_full_width": true, "page_small_text": true }, "id": "184e6d93-e489-4448-b837-9241accf6bda", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "PowerShell" ] ] }, "type": "page", "version": 15 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "b6bdea7e-81a4-4685-b30f-69436b808b97" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1558677074490, "format": { "page_full_width": true, "page_small_text": true }, "id": "1b61c073-c94e-46ed-b1f6-e3cb1b4bad4e", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1558677060000, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "Windows tools" ] ] }, "type": "page", "version": 19 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "c2e36c7c-030c-48db-94f4-4b53d35ca45b", "3b8be8aa-ac63-4e9e-a5d6-062c5d697c5e", "2d4a165e-8814-4dc2-893f-f9a5b9b316fb", "a96f24a4-64fc-4e65-a763-1e5c007d88be" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1493077477989, "id": "282cd1fa-cbd7-40eb-a886-5a44bec4ccc3", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "valgrind" ] ] }, "type": "page", "version": 3 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "42993dd8-add5-40d4-bd4b-517a18dbd778", "194ab6ea-3367-4fad-9556-00152d7445cc", "74c5a4c7-a3ce-49ab-a26c-612c79beb4e2", "754a2830-8f4e-4f37-8e49-ecfc602b959d", "70bd4b2c-f370-4e06-936d-eea9be61644c", "5ca1eb16-d4b4-40c4-9812-5ea4e3b6043e", "d0d9d661-b61e-48a4-9386-4c2b5dd2e8d0", "5b7aa474-5dde-4490-8943-73ecd613260b", "097816eb-49d4-401e-bc2e-f3d7e30d8993", "27549fba-7519-43cf-abd4-e4b7d95c70d8", "bc3b724e-b7df-4270-82b3-1eab14ad9cd0", "a312481d-2ed6-4c20-bfba-af93ab559a56", "b665ef3c-991d-4284-9d21-6a6683e64322", "ab5b73a4-78f5-46f9-b555-d5002a724b6e", "a16c43be-47ab-4813-8142-0278acf8455f", "e8dd5014-7f91-46ce-a0f1-774e8381c3fe", "674e630d-4b9e-4a1d-a4ab-64afc3fbf7f0", "b4a15294-cb57-4b7a-8cfa-6bed498611bd", "9bf78ed0-2663-43f9-bc98-fd94046b6264", "dfb3bdb0-90af-4b4e-9f07-af9ac085d615", "7dd16f60-f99f-4ddb-9d1a-d05d605b2168", "260a027d-21f1-493b-b31f-1429683e5179", "04e4cb5b-7f87-4aec-808c-8c488b379e4c", "0d39179a-9cf9-4355-bf27-d0a58d4141e8", "ffd889de-135a-4079-b5cb-f70fdb23b812", "40edc440-7081-4d01-ae88-310dfaf29fb0", "de466449-ec8c-4a13-8eff-348c6a842c24" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512338170838, "format": { "page_full_width": true, "page_small_text": true }, "id": "2b312d2d-6cc7-48e1-bc0b-ba1d061f88fe", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "tmux" ] ] }, "type": "page", "version": 6 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "e80a0dd1-8458-4f22-ba4b-c65bd34bf5f7", "db05c076-3ce4-40b6-bc79-29ee3703b7d8", "cd13037d-cbf3-4737-8886-99dc21e1b545", "5c10f51f-4af6-4cb6-b243-6090ef7ec4b7", "f7d5b306-4481-45e7-b789-af03f5beff7f", "6722c51b-c7f4-402c-86ff-fb373d214510" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512455139144, "format": { "page_full_width": true, "page_small_text": true }, "id": "2e8d39a3-a23d-4d33-abbb-4f8154efb231", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1565677740000, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "vscode, visual studio code" ] ] }, "type": "page", "version": 33 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "4b53ad19-63d5-4440-a090-fe398c4dec1b", "6f35da28-2e6c-4cb9-a87f-da5fce2a3690", "0d4f3b3a-035e-470f-8338-4b955845ccd0", "184d3fc0-635e-4229-a3ac-13ead03603c2", "0de6711c-ff4e-40ca-954e-47a0bebef20d", "98f1eaa2-2038-4ec5-ac1c-a8b81f7dc6ac", "13e73524-73d1-445f-aa71-6c3bc9304952" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512460418047, "format": { "page_full_width": true, "page_small_text": true }, "id": "4653fe6a-59f2-4002-bac1-2abba014e77e", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "regel" ] ] }, "type": "page", "version": 6 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "4bce442d-6197-47ae-84c3-1808ee626db9", "ac5df18e-25da-4b2f-aed3-e1ddb98e9831", "d61b28a1-bd45-4cdb-b820-6b71902c4821" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1510981209932, "format": { "page_full_width": true, "page_small_text": true }, "id": "5749be0d-4e27-4e61-99a5-d9de82cb57f8", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1535939768807, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "screenshots, video capture" ] ] }, "type": "page", "version": 90 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "e6f4a13b-f493-4216-8c4e-518099e41487", "6bb88584-3490-4390-a05f-7f98249889d7" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1495232569011, "id": "61ad39c0-e049-4818-92ff-7420fa27a390", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "wget" ] ] }, "type": "page", "version": 3 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "88aee8f4-3620-471a-a9db-cad28368174c", "b975c64f-e460-4212-b00c-a4f8a6aaaf20", "c7d2afd0-5d4d-4e05-99bf-80246c5e590b", "6cf6069b-dbc5-4cff-a0bc-d2e9afb45093", "13813823-462b-4a18-af3d-612905ac564d", "d60cadc2-d4ea-4ef6-8c87-64c1e770efcd", "dd914a65-e807-402a-ae0a-d7f715856e7f", "aa4a3d4f-f468-4eb5-9e75-50dbdee2d258", "a5827afa-aaf7-41bf-b840-723d50a3b682", "c61e0393-9453-44eb-b659-333914dcce8d", "152f647c-f97f-4b76-8842-53a7a588c38f" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1528075297200, "format": { "page_full_width": true, "page_small_text": true }, "id": "7097d0b0-6616-4177-9ea3-5929049be1c4", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1565128620000, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "notion" ] ] }, "type": "page", "version": 68 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "9438792c-7f35-440f-adb6-2ecae9b1fdd2" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1545787494208, "format": { "page_full_width": true, "page_small_text": true }, "id": "79f8d68c-67a7-47fb-93bf-88a868e85c36", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1545787524999, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "nintendo switch" ] ] }, "type": "page", "version": 43 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "cb5eae3f-0674-4536-972a-262219645ae5", "99b370b1-d081-4a2c-9819-dc4783898e42" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512294053016, "format": { "page_full_width": true, "page_small_text": true }, "id": "7ec3f72c-03f3-461b-8d53-8bbcf8b9888d", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "rsync" ] ] }, "type": "page", "version": 6 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "64145f01-b3c3-47e7-b515-a0dabaead01e" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512355958893, "format": { "page_full_width": true, "page_small_text": true }, "id": "822e3c01-80bd-468a-8c70-4e9c7e895bb1", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1550085600000, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "lsof" ] ] }, "type": "page", "version": 12 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "feb5521a-7903-4cef-8047-a0cd340a4286", "e799f3c3-6515-45e0-a6a6-acb79dbf35bf", "cdd66100-5f84-4d19-afac-0dccd04f617f", "ce78e74e-fd9c-4c08-9d3d-7f29df3cffb2", "6f4daff2-8c7e-4ea1-af8a-4baf9bd5dff7", "9c1b29e5-1ec1-47a9-99df-5d851840f95d", "9d893132-43ea-47a6-9116-856653d94bb7", "a1c6b1af-f062-455e-8047-94523be443d5", "979b11f2-54f8-4d68-b1d1-a52c63e362cc", "53f47bb1-1d20-4929-abf2-c120ba0ccc9b", "98d106a6-b1a6-46ec-9380-599379b60fb9", "00df0af5-c3bc-4e08-9c06-57bb6cf766d1", "2716af4e-b9d6-4894-99d5-c02d62e233eb", "2dd78490-116a-4c2f-91f9-ec2bdce3c2ba", "ebaeac46-db7b-446d-926e-37480ed235d7", "a48f948b-28b9-4967-bb75-eb9b4bbe65b1" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512457478865, "format": { "page_full_width": true, "page_small_text": true }, "id": "896a9d12-f40c-44da-924b-b4979993cef3", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "ulimit" ] ] }, "type": "page", "version": 3 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "351b5f2f-59d1-4318-a569-c4546ac5827f", "b8870291-5963-49e2-a291-9e04f387238f", "1fefc92b-8c32-4a87-9412-7ffc786f4959", "a3f300d5-e767-4367-a5b1-64ed0ec92659", "7e223d71-9148-4861-b36c-1762026ea80b", "dc0b4f11-edd3-4580-aa24-7ae712bc0566", "1c3d5ecc-2308-478c-b612-7186f3ecf739", "5430b3a6-59ff-4f43-96b4-b59cb13d119c", "95cc9ac6-fa83-4967-b744-3ff8647acf4c", "1f6cc90d-bc2e-4ebe-8a8c-0c1b99fe5cb7", "36a0e0be-e257-44e9-ab6f-f2cf282c8104", "8a703792-6e18-4c08-a8c0-2a4ffd0152d0", "29fccb54-8398-420e-9fbc-cf933454cf01" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512461723347, "format": { "page_full_width": true, "page_small_text": true }, "id": "9d802f54-65d3-4881-8445-c46ba6c7202c", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "transactional email services" ] ] }, "type": "page", "version": 6 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "1f671c7c-a2a6-4659-8087-82691f9b61a5", "2bc1d50e-1b93-4888-9e2b-d57e72c5b213", "b1ec2781-2a31-45b5-ac92-eca01cabe9e9" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1510030723530, "format": { "page_full_width": true, "page_small_text": true }, "id": "a518f0ec-d095-42b1-9aea-4034849fa37e", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "premake" ] ] }, "type": "page", "version": 6 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "615eef5f-dcf0-4ef8-b121-e97db586ce73", "7d19586b-f76c-4770-84ba-6b5efc781ebd", "c04c5f2e-7140-4be1-8d60-35382b16211a", "dcda24b8-9639-46e2-a110-7e182cd00e5a", "80f8ad8e-dfa9-4c1c-a345-901d159c4e86", "c86f21da-7e55-4189-bfdb-5c0c74c7d0a8", "af7e7cca-4a97-4b6e-9088-f5aefa45cf58", "6e35a169-f04b-4c86-b1aa-5c951acd36d4", "e5fbaf6f-2332-4060-9eb8-22c5bb87e5a1", "bc5a33c8-eba9-4f05-811b-23ec207776ec", "6de303db-0753-463b-8557-c69e65200a91", "d7238f65-5a27-4e0f-90a0-906525c44cff", "11869133-8322-4d2b-968e-f1a2fc36c60e", "3fb19a66-cafc-45aa-99d8-0029f8dac26b", "b1545978-6328-4285-b3fc-d1ab6050cc96", "eb41719e-3516-4069-af00-fa1707a9b8b6", "c930ad1b-990c-4874-8249-847ce5ac5248", "615a7090-6f01-4342-89de-9c51ca83ef1d" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1535917334131, "format": { "page_full_width": true, "page_small_text": true }, "id": "a6bfde90-c3d5-479b-9c38-85dcb126dea0", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1565813400000, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "travis.ci" ] ] }, "type": "page", "version": 98 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "62b208f3-e1b4-47ac-9b7d-cee3cc769792", "3355dc8f-e445-43f3-b1f8-e4987ec21ea3", "9ce19161-5a61-408b-be05-b42b9755331d", "14084e6d-e362-4d29-9b85-72bde078df88", "bdd1c218-2222-4ec8-babc-24f5f8c5252b", "70096f01-7911-49c4-b2dd-4fcfd8930632", "644c729b-5463-4de7-8cae-58721d0eb4f4", "e2b021b2-493b-417c-b720-7790a8aa5a4d", "e5d8536c-df8c-4836-82c3-3bdeba35b08e", "02ebfa89-5dea-4227-8dee-03d45ff77f5e", "ede21da9-ba06-4e6d-9c16-b5a3c0775966", "1902f65b-bb3a-4b09-aa1c-5af5984817e5", "2577a859-1701-4992-a2be-1522e923f305", "b0d48b3f-df0d-4297-8c27-9397ccf842af", "19c5bc63-e96f-4a00-8550-ddf3ab368184", "1bccc84a-14ed-4947-90df-18096f1adc32" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1511055631497, "format": { "page_full_width": true, "page_small_text": true }, "id": "ae389859-fcfe-4b73-9187-6decbe1aab54", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "wine on mac" ] ] }, "type": "page", "version": 6 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "4b3c8d8d-d8c8-4c50-a161-749ed3e72aa2", "53e32463-6775-45de-9cae-3d5e31311f68", "01dd660d-3c34-4b87-b52c-5fa2de24db60" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1533933180281, "format": { "page_full_width": true, "page_small_text": true }, "id": "bf1261dd-c29f-49de-9a9b-49611911a6da", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1545787553457, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "perfview" ] ] }, "type": "page", "version": 36 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "b50503cc-ff23-4dd5-a7ff-6d3c0187ddcf", "731720da-6891-40d6-a2e4-cf10e6354062", "e711c967-a2d1-489b-a3af-d2d029074d43", "18adb685-687d-40b8-9d7e-d30cdda6232c", "934623e6-e5ba-4acb-882f-16f1b831a617" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512461382247, "format": { "page_full_width": true, "page_small_text": true }, "id": "c174875e-f8e4-4d6f-b149-4ae10bd5a33c", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "spotlight, mdfind" ] ] }, "type": "page", "version": 3 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "818416e1-2348-42ed-a593-93598465d6a7", "2c3d6216-d19b-4499-a8af-df3b3381052c" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1494637449029, "id": "c35e671a-9211-44dd-97e7-71325c4f8c61", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "nsis" ] ] }, "type": "page", "version": 6 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "e2b59e01-4cbd-4cef-8cba-fa4a81e25432", "58d3fcf2-9026-4778-8c10-d43518b711aa", "426a2eec-8890-4cc9-99a7-cec274c7094d", "25dcf67c-ca52-402d-96a7-5c0cc66ab9d5", "ab6bb8ed-a451-49e7-a159-d3274794391a", "c2df498d-a300-4533-ae40-a37ea032d1d7", "1e175264-e486-42ba-8ef1-dcd91282f8f2", "58af6d08-c60a-456a-b370-da8e6098c3fd", "a20ee926-0f31-4dae-a57c-d63b7699ebb1" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1493754080930, "format": { "page_full_width": true, "page_small_text": true }, "id": "d52e2ccc-c605-4e2e-8922-220a3b3cc9fd", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1532497844053, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "nodebb" ] ] }, "type": "page", "version": 9 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "61ebdc64-67f8-41fe-a352-233848fab6a6", "31c66034-79c4-42e9-996a-f6aa66451ccf", "29bdc697-c7ee-49df-b91c-e1840d5d8fba", "7584602f-3b4b-41a4-a543-c51862e195b8", "beb378b0-db74-4d3f-88d8-1f0b4501527b", "b36ebedb-ce98-4396-8da3-246766d089c0", "a14d3f87-dea9-4063-a9cd-fde0d6edc60c", "6d079aec-9978-4caa-91b4-391cbfb1b60b", "d8277838-2a45-4d07-8039-2d31b4ba6479", "190fe48b-ab63-4ec3-a391-7efad7a71190", "4a729f95-6502-4eb5-be74-f7e58e912cb4", "550c02dd-a657-47d7-b23d-e97826e563bc", "575eb577-811d-49e3-b0ab-b36d892a94a5", "6e4e011a-27ac-46c3-aa7d-31221ab11e1d" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512462295305, "format": { "page_full_width": true, "page_small_text": true }, "id": "de6b4f3a-a858-466f-9771-6be86ae0a9d4", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1532923446891, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "server monitoring services and info" ] ] }, "type": "page", "version": 15 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "6f5618aa-d145-4c54-8c92-fc9efccb5c05", "1e68bcff-940b-4faa-bfa8-8e85df8bf8b8", "35678cee-ceba-49d7-9938-3f7531f53ca4", "42f24c89-5a47-4f7f-b015-5014ffaac0b0", "51657ae6-b9ca-446e-9108-95440a250f14", "072354e5-f4a1-4b2c-b817-6391b5ac79d9", "8f80c82b-3c6c-4fd4-ba98-6e87c5da0b4d", "3fcc8be8-7c26-4854-b400-6a42edf3d6d5", "9379ffb8-e6a7-49ee-8869-36c432d44654", "44e0860c-4980-4319-88d2-7d5953480e89", "cdf32a96-4cf5-4ff5-9671-486264bd7208", "e1591e8b-5589-4cf8-b59c-2deda6114cd1", "d47543e9-a870-4be8-a55b-4c2d1b71574a", "4e5bd69f-15a6-4cc3-bb65-46fea4ed6655", "9bb8d645-12f2-4c59-9839-d2db08e294da" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1476993375898, "format": { "page_full_width": true, "page_small_text": true }, "id": "e7b071b3-6bfc-4eaa-aa7c-897f19153802", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "yarn" ] ] }, "type": "page", "version": 3 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "0852a70e-fa21-4f98-b9b3-78701f062fe3", "c77a4883-99ed-4cca-b864-762f666e2dad", "c194e9e2-ee9c-45aa-ae4a-249c20d0a68e", "674df5f5-229e-4b6d-995e-4fd4ac3d65f4", "c8b109e2-1a25-403c-9fa6-607754e167cd", "cb51951d-ec99-4b40-a884-f52904367983", "9d54b524-a14b-4f17-b945-9d7963f549fb" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512368377513, "format": { "page_full_width": true, "page_small_text": true }, "id": "e9c202dd-9c5a-4e46-b2da-9c492c12ce9d", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "xcode" ] ] }, "type": "page", "version": 22 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "51142e9d-4c35-4640-9328-863443a9b50d", "6573225c-d3eb-4528-bac0-40a354c5dbc0", "ea736457-e340-4b44-aa1a-5c1f74c435ee", "c7a7496f-04be-4cab-a38a-5d4cf17679da", "21a52246-f657-43f5-9236-fbbfbdae1e38", "7498cd9c-c1db-4a4a-bf4d-023ce9ea5eae" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1492922226765, "format": { "page_full_width": true, "page_small_text": true }, "id": "ed889e66-a03b-4980-afe1-e1578ab522e5", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1535944026389, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "ssh" ] ] }, "type": "page", "version": 68 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "46907438-3e04-46ac-a7ab-6613f7f9138d", "c79d1d9d-551f-4c45-81aa-66ab23bd71b3", "23321da8-9227-42d3-93f4-e86ce4b548c9", "5a238a70-a3eb-41c3-b38f-74e85ef30009" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1512338206455, "format": { "page_full_width": true, "page_small_text": true }, "id": "ef11ef21-0f07-45d9-b473-2de7b8563a2a", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1529120456638, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "tcpdump" ] ] }, "type": "page", "version": 5 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "b62c41d9-5d0b-4ae4-b77f-06636bd555ca", "ec378e40-5f1b-4c86-8991-c8ad89872642" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1532497806925, "format": { "page_full_width": true, "page_small_text": true }, "id": "f511e438-4d54-4bf4-9b99-deee90438992", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1535587023074, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "netstat" ] ] }, "type": "page", "version": 32 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "20e5a0b4-d8c4-47bf-82e8-902e047e29e8", "182c176f-d6b9-4180-a2af-a296277b501e", "bf7b2657-b9e1-4d01-b799-f2178feaee9d", "e50cc259-311d-493c-8bee-ae785172ea74", "cab0d952-ae84-455a-accf-7f56b30ab5c7", "fd8f25f7-ec83-4fb5-aa56-94f2e75c269e", "74402181-11f3-4904-90ab-5dc430806401" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1535937497553, "format": { "page_full_width": true, "page_small_text": true }, "id": "f7d8b37f-6205-4d3e-9012-5b0d3ef44713", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1535941217190, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "snap" ] ] }, "type": "page", "version": 37 } }, { "role": "comment_only", "value": { "alive": true, "content": [ "074014b1-8269-4f48-9810-bf8af23272dd", "aa9840f6-599c-468f-8aeb-1c206486af72", "186ca88c-925c-46bc-bffd-33bbd717b320", "19707c25-0014-4e10-b051-8c812fcebcf5", "62d4f4aa-d7bf-4819-89d7-dfd50f0761db", "8361aee7-1e01-46ed-a3a5-965aa0aed69c", "0ab03882-dd23-4485-b756-2e0aee287fde", "c186c258-fc03-4509-8693-4abfbbcdcaf3", "061f2bf1-fb26-4529-86f0-d82f80bb50b0", "51d18aad-8c3f-443d-bed9-121b2a4015e8", "9bccc596-5795-4338-89df-bee1588ad0d5", "ac96adb5-f148-4fd1-ab3c-ce55644dc2d4", "b978f91f-2e7f-44a8-915a-b80cfecafeb6", "7e6f6a6d-6922-4bb9-a8ef-5b17a702a4fe", "6f30e2bf-24ae-4941-beac-841ebf0ef834", "ee6c56f1-72f1-4fe6-a050-ec9d66b19a32" ], "created_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "created_time": 1492760796206, "format": { "page_full_width": true, "page_small_text": true }, "id": "fa7762b1-1c56-4a80-8562-88d08fbfa145", "last_edited_by": "bb760e2d-d679-4b64-b2a9-03005b21870a", "last_edited_time": 1530068370276, "parent_id": "e4fe2d9f-ae30-4e3a-beb9-b8316b9e2d62", "parent_table": "block", "properties": { "title": [ [ "Windbg" ] ] }, "type": "page", "version": 11 } } ] }
{ "pile_set_name": "Github" }
from hyperadmin.resources.models.resources import ModelResource, InlineModelResource
{ "pile_set_name": "Github" }
cloud.google.com/go v0.33.1/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/PuerkitoBio/goquery v1.5.1/go.mod h1:GsLWisAFVj4WgDibEWF4pvYnkVQBpKBKeU+7zCJoLcc= github.com/andybalholm/cascadia v1.1.0/go.mod h1:GsXiBklL0woXo1j/WYWtSYYC4ouU9PqHO0sqidkEA4Y= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4= github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535 h1:4daAzAu0S6Vi7/lbWECcX0j45yZReDZ56BQsrVBOEEY= github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535/go.mod h1:oGkLhpf+kjZl6xBf758TQhh5XrAeiJv/7FRz/2spLIg= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.0 h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM= github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.11 h1:07n33Z8lZxZ2qwegKbObQohDhXDQxiMMz1NOUGYlesw= github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/denisenkom/go-mssqldb v0.0.0-20181014144952-4e0d7dc8888f/go.mod h1:xN/JuLBIz4bjkxNmByTiV1IbhfnYb6oo99phBn4Eqhc= github.com/denisenkom/go-mssqldb v0.0.0-20191124224453-732737034ffd h1:83Wprp6ROGeiHFAP8WJdI2RoxALQYgdllERc3N5N2DM= github.com/denisenkom/go-mssqldb v0.0.0-20191124224453-732737034ffd/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU= github.com/docker/docker v1.13.1 h1:IkZjBSIc8hBjLpqeAbeE5mca5mNgeatLHBy3GO78BWo= github.com/docker/docker v1.13.1/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/dustin/go-humanize v1.0.0 h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 h1:Yzb9+7DPaBjB8zlTR87/ElzFsnQfuHnVUVqpZZIcV5Y= github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5/go.mod h1:a2zkGnVExMxdzMo3M0Hi/3sEU+cWnZpSni0O6/Yb/P0= github.com/gliderlabs/ssh v0.3.0 h1:7GcKy4erEljCE/QeQ2jTVpu+3f3zkpZOxOJjFYkMqYU= github.com/gliderlabs/ssh v0.3.0/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0= github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-sql-driver/mysql v1.5.0 h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs= github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/gofrs/uuid v3.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe h1:lXe2qZdvpiX5WZkZR4hgp4KJVfY3nMkvmwbVkpv1rVY= github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e h1:JKmoR8x90Iww1ks85zJ1lfDGgIiMDuIptTOhJq+zKyg= github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/jinzhu/gorm v1.9.2/go.mod h1:Vla75njaFJ8clLU1W44h34PjIkijhjHIYnZxMqCdxqo= github.com/jinzhu/gorm v1.9.15 h1:OdR1qFvtXktlxk73XFYMiYn9ywzTwytqe4QkuMRqc38= github.com/jinzhu/gorm v1.9.15/go.mod h1:G3LB3wezTOWM2ITLzPxEXgSkOXAntiLHS7UdBefADcs= github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= github.com/jinzhu/now v0.0.0-20181116074157-8ec929ed50c3/go.mod h1:oHTiXerJ20+SfYcrdlBO7rzZRJWGwSTQ0iUY2jI6Gfc= github.com/jinzhu/now v1.0.1 h1:HjfetcXq097iXP0uoPCdnM4Efp5/9MsM0/M+XOTeR3M= github.com/jinzhu/now v1.0.1/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= github.com/joho/godotenv v1.3.0 h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc= github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg= github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/kr/pty v1.1.8 h1:AkaSdXYQOWeaO3neb8EM634ahkXXe3jYbVh/F9lq+GI= github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lib/pq v1.1.1 h1:sJZmqHoEaY7f+NPP8pgLB/WxulyR3fewgCM2qaSlBb4= github.com/lib/pq v1.1.1/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/mattn/go-colorable v0.1.6 h1:6Su7aK7lXmJ/U79bYtBjLNaha4Fs1Rg9plHpcH+vvnE= github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.9 h1:Lm995f3rfxdpd6TSmuVCHVb/QhupuXlYr8sCI/QdE+0= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-sqlite3 v1.10.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= github.com/mattn/go-sqlite3 v1.14.0/go.mod h1:JIl7NbARA7phWnGvh0LKTyg7S9BA+6gx71ShQilpsus= github.com/mattn/go-sqlite3 v2.0.3+incompatible h1:gXHsfypPkaMZrKbD5209QV9jbUTJKjyR5WD3HYQSd+U= github.com/mattn/go-sqlite3 v2.0.3+incompatible/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d h1:5PJl274Y63IEHC+7izoQE9x6ikvDFZS2mDVS3drnohI= github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d/go.mod h1:01TrycV0kFyexm33Z7vhZRXopbI8J3TDReVlkTgMUxE= github.com/olekukonko/tablewriter v0.0.4 h1:vHD/YYe1Wolo78koG299f7V/VAS08c6IpCLn+Ejf/w8= github.com/olekukonko/tablewriter v0.0.4/go.mod h1:zq6QwlOf5SlnkVbMSr5EoBv3636FWnp+qbPhuoO21uA= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/reiver/go-oi v1.0.0 h1:nvECWD7LF+vOs8leNGV/ww+F2iZKf3EYjYZ527turzM= github.com/reiver/go-oi v1.0.0/go.mod h1:RrDBct90BAhoDTxB1fenZwfykqeGvhI6LsNfStJoEkI= github.com/reiver/go-telnet v0.0.0-20180421082511-9ff0b2ab096e h1:quuzZLi72kkJjl+f5AQ93FMcadG19WkS7MO6TXFOSas= github.com/reiver/go-telnet v0.0.0-20180421082511-9ff0b2ab096e/go.mod h1:+5vNVvEWwEIx86DB9Ke/+a5wBI464eDRo3eF0LcfpWg= github.com/russross/blackfriday/v2 v2.0.1 h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/sabban/bastion v0.0.0-20180110125408-b9d3c9b1f4d3 h1:yxUGvEatvDMO6gkhwx82Va+Czdyui9LiCw6a5YB/2f8= github.com/sabban/bastion v0.0.0-20180110125408-b9d3c9b1f4d3/go.mod h1:1Q04m7wmv/IMoZU9t8UkH+n9McWn4i3H9v9LnMgqloo= github.com/shurcooL/sanitized_anchor_name v1.0.0 h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/assertions v0.0.0-20190401211740-f487f9de1cd3 h1:hBSHahWMEgzwRyS6dRpxY0XyjZsHyQ61s084wo5PJe0= github.com/smartystreets/assertions v0.0.0-20190401211740-f487f9de1cd3/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/urfave/cli v1.22.4 h1:u7tSpNPPswAFymm8IehJhy4uJMlUuU/GmqSkvJ1InXA= github.com/urfave/cli v1.22.4/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= golang.org/x/crypto v0.0.0-20181112202954-3d3f9f413869/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191205180655-e7c4368fe9dd/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de h1:ikNHVSjEfnvz6sxdSPCaPt572qowuyMDMJLLm3Db3ig= golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980 h1:OjiUf46hAmXblsZdnoSXsEUSKU8r1UEzcL5RVZ4gO9Y= golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= google.golang.org/appengine v1.3.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/gormigrate.v1 v1.6.0 h1:XpYM6RHQPmzwY7Uyu+t+xxMXc86JYFJn4nEc9HzQjsI= gopkg.in/gormigrate.v1 v1.6.0/go.mod h1:Lf00lQrHqfSYWiTtPcyQabsDdM6ejZaMgV0OU6JMSlw= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= moul.io/srand v1.4.0 h1:r5ZMiWDN0ni0lTV7KzJR/jx0K7GivJYW5WaXmufgeik= moul.io/srand v1.4.0/go.mod h1:P2uaZB+GFstFNo8sEj6/U8FRV1n25kD0LLckFpJ+qvc=
{ "pile_set_name": "Github" }
-----BEGIN RSA PRIVATE KEY----- MIIEpAIBAAKCAQEAwbRctAAbSdMGcx0ebfh8MfUOYXM5i4LYfAq5pWAhXRImZ3Ir b638rtHDS5GzFYEq5hLkye5FCAtbI8CmgCDr6epJVRN72Oam+a+nm4c+laYVlIZo PkCYJI7qSxLqbL5vCxsMtP896Hn6Rb1GpU2+mv5GO1oKyij4qIb3B9rv6d8ENT28 pRA6tKF6ndc9WHKovuvX3cGbEfsxFohxCi7aWeNPdtKvTYQ23uzs9pShqSg1rGOU B3aGPpH5N+R2OsycKJ3OI1tBRFP8hcsq9O7t8QkCPBMDFtWaS7ZsXMYMB9+rv1Pe Rz9ScZO3L9b3yQLb+N3VGq2yUn9enmLNRMkIxQIDAQABAoIBAQChBh5KRAxrQlGK QBqbsIUNwnlB6Vdc8likRQYuw8r4Y64pMG+LV0dGzHlcyLHmnona2Ln4Y2pfVZFe FzhSKwvyWCC96IR7usHzrmHWmIceQAKQhWsC1Q+k1GlQH1lhLK2CvenCTKxaJYw3 jTC9GfPpRJd9n0x44bZT4l5Y2Ve3QYrzLjgfxrwAOCFNRRs+KopNvDUd0xslIzbn ndUwa/FKEgbKj4lZLrXVVrGiRcpgUlAe/z17BQSamcv1E6hZ0Ux2iP+a3qsjW9b0 m1C9Ftz6pXQme6pR2PVMsWGt1JJTrBgOQACVRHmi8S2uxy4ODki1OAMLtXHC+cun P3LDiIHBAoGBAObvLP44Rc72392nUCvLz7Eh9TCBKZqHkQ2ChLbVafWUtHw5pfBE TSJKwySYVsZl5poZu31BMRqz0TpM8fsKKY3cJJN5OcGOCJu1jGUGOBAvMQjgmJcj GgdV25q9YyFixTqnhz5sg4MK798c1IEXTDVfJlRbL2v09CwU9480LqI/AoGBANa6 tQq+5YG8wm7ZoIQJ3X7UV9pJ/Bq9so8wrMFIFgI2xQmwGcgXnM7wlIK0vjXnxgD9 RRa57eh/tVy7u9W5DLwC19s9DDGWO8RHecRjqgmoRRIv32Oxjkes0fRvsM5WUX8H S9cqLcsn4thMzYyfiUiHhN2VDMJ0MeLDG5N1mMv7AoGBAKO1bATv6XT1h+++21Og 0SQ1+XYgKlkUv5x/KQvfsJTajTP/PgZctP2ZWEtJ/0H4HQijM0lw/Jl8Xddhkq0v IBQjun4dEveGc83GXreDOB0pBy7O4P1Lcfk/QUWp+mtBdKXG+1YiYPx1tWRKMM8u r+SqBicI2U5DwRC68GBBUsnLAoGAQSH7HlpPNW4zL/qVRNfVNs5kI5ODg/z8d5CV Jj+eZWeFlu2ytE3tQ5wYABmhBKrcFZq9ZSparsZmFc3gKPDrmu/l19uJolTmph/k IJz2i91drimVQiEufjE+sj1azQvDxptI9ugVYeUkWuXZB4mw064/sBKw/x7NrvHt oGnwQhcCgYA6PxZdjC6cXI/aQCzSzbj1DhOKwKOYdmUfjeI8LWsrUHUILsOqKpsN IzOUI68VB161NB1aRCnTttti0K0hMgjDy7WhnIaqRqA4fDDcVxfo75KEb+djK2cr Ja9HcoDx8JeMguBlWSb+eAmWme+MiI5JhHuRKtxiRogeqyGeWrdA2w== -----END RSA PRIVATE KEY-----
{ "pile_set_name": "Github" }
struct PS_INPUT { float2 uv0 : TEXCOORD0; }; Texture2D<float> ssaoTexture : register(t0); Texture2D<float> depthTexture : register(t1); SamplerState samplerState : register(s0); uniform float2 projectionParams; uniform float4 texelSize; static const float offsets[9] = { -8.0, -6.0, -4.0, -2.0, 0.0, 2.0, 4.0, 6.0, 8.0 }; float getLinearDepth(float2 uv) { float fDepth = depthTexture.Sample(samplerState, uv).x; float linearDepth = projectionParams.y / (fDepth - projectionParams.x); return linearDepth; } float main ( PS_INPUT inPs ) : SV_Target { float flDepth = getLinearDepth(inPs.uv0); float weights = 0.0; float result = 0.0; for (int i = 0; i < 9; ++i) { float2 offset = float2(texelSize.z*offsets[i], 0.0); //Horizontal sample offsets float2 samplePos = inPs.uv0 + offset; float slDepth = getLinearDepth(samplePos); float weight = (1.0 / (abs(flDepth - slDepth) + 0.0001)); result += ssaoTexture.Sample(samplerState, samplePos).x*weight; weights += weight; } result /= weights; return result; }
{ "pile_set_name": "Github" }
{ "browserName": "chrome-docker", "imageSnapshotOptions": { "customDiffConfig": { "threshold": 0.14 }, "noColors": true }, "timeouts": { "directLine": 15000, "fetch": 2500, "fetchImage": 5000, "navigation": 10000, "postActivity": 30000, "scrollToBottom": 2000, "test": 30000, "ui": 1000 } }
{ "pile_set_name": "Github" }
/* * Copyright 2018 Analytics Zoo Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intel.analytics.zoo.feature.text import org.scalatest.{FlatSpec, Matchers} class SequenceShaperSpec extends FlatSpec with Matchers { def genFeature(): TextFeature = { val text = "please annotate my text" val feature = TextFeature(text, label = 0) feature(TextFeature.indexedTokens) = Array(1.0f, 2.0f, 3.0f, 4.0f) feature } "SequenceShaper trun pre for indices" should "work properly" in { val transformer = SequenceShaper(len = 2) val transformed = transformer.transform(genFeature()) require(transformed.getIndices.sameElements(Array(3.0f, 4.0f))) } "SequenceShaper trun post for indices" should "work properly" in { val transformer = SequenceShaper(len = 3, truncMode = TruncMode.post) val transformed = transformer.transform(genFeature()) require(transformed.getIndices.sameElements(Array(1.0f, 2.0f, 3.0f))) } "SequenceShaper pad for indices" should "work properly" in { val transformer = SequenceShaper(len = 7) val transformed = transformer.transform(genFeature()) require(transformed.getIndices.sameElements(Array(1.0f, 2.0f, 3.0f, 4.0f, 0.0f, 0.0f, 0.0f))) } }
{ "pile_set_name": "Github" }
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <title>CommandServiceManager: AckSecResponse Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body onload='searchBox.OnSelectItem(0);'> <!-- Generated by Doxygen 1.7.4 --> <script type="text/javascript"><!-- var searchBox = new SearchBox("searchBox", "search",false,'Search'); --></script> <div id="top"> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="1281869974_phoenix-firebird-avatar.jpg"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CommandServiceManager&#160;<span id="projectnumber">-1.00</span></div> <div id="projectbrief">Phoenix engine interface</div> </td> </tr> </tbody> </table> </div> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="annotated.html"><span>Data&#160;Structures</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li id="searchli"> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Data&#160;Structures</span></a></li> <li><a href="classes.html"><span>Data&#160;Structure&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Data&#160;Fields</span></a></li> </ul> </div> </div> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> initNavTree('interface_ack_sec_response.html',''); </script> <div id="doc-content"> <div class="header"> <div class="headertitle"> <div class="title">AckSecResponse Class Reference</div> </div> </div> <div class="contents"> <!-- doxytag: class="AckSecResponse" --><!-- doxytag: inherits="UnstructResponse" --><div class="dynheader"> Inheritance diagram for AckSecResponse:</div> <div class="dyncontent"> <div class="center"> <img src="interface_ack_sec_response.png" usemap="#AckSecResponse_map" alt=""/> <map id="AckSecResponse_map" name="AckSecResponse_map"> <area href="interface_unstruct_response.html" alt="UnstructResponse" shape="rect" coords="0,0,113,24"/> </map> </div></div> <table class="memberdecls"> </table> <hr/>The documentation for this class was generated from the following file:<ul> <li>/Users/pichaya_s/Desktop/Phoenix 4.2 3/UnstructuredManager/Classes/Response/<a class="el" href="_ack_sec_response_8h_source.html">AckSecResponse.h</a></li> </ul> </div> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="interface_ack_sec_response.html">AckSecResponse</a> </li> <li class="footer">Generated on Mon Oct 10 2011 17:19:13 for CommandServiceManager by&#160; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Properties</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> </body> </html>
{ "pile_set_name": "Github" }
// // Close icons // -------------------------------------------------- .close { float: right; font-size: (@font-size-base * 1.5); font-weight: @close-font-weight; line-height: 1; color: @close-color; text-shadow: @close-text-shadow; .opacity(.2); &:hover, &:focus { color: @close-color; text-decoration: none; cursor: pointer; .opacity(.5); } // Additional properties for button version // iOS requires the button element instead of an anchor tag. // If you want the anchor version, it requires `href="#"`. // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile button& { padding: 0; cursor: pointer; background: transparent; border: 0; -webkit-appearance: none; } }
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>en</string> <key>CFBundleExecutable</key> <string>$(EXECUTABLE_NAME)</string> <key>CFBundleIdentifier</key> <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> <string>$(PRODUCT_NAME)</string> <key>CFBundlePackageType</key> <string>FMWK</string> <key>CFBundleShortVersionString</key> <string>1.0</string> <key>CFBundleVersion</key> <string>$(CURRENT_PROJECT_VERSION)</string> <key>NSPrincipalClass</key> <string></string> </dict> </plist>
{ "pile_set_name": "Github" }
# One to multi 一对多可以建两张表,将一这一方的主键作为多那一方的外键,例如一个学生表可以加一个字段指向班级(班级与学生一对多的关系)
{ "pile_set_name": "Github" }
#ifndef VRPN_FILE_CONNECTION_H #define VRPN_FILE_CONNECTION_H // {{{ vrpn_File_Connection // // Tom Hudson, June 1998 // This class *reads* a file written out by vrpn_Connection's logging hooks. // The interface exactly matches that of vrpn_Connection. To do things that // are meaningful on log replay but not on live networks, create a // vrpn_File_Controller and pass your vrpn_File_Connection to its constructor, // or just ask the Connection for its file connection pointer and do the // operations directly on the FileConnection if the pointer is non-NULL. // Logfiles are recorded as *sent*, not as translated by the receiver, // so we still need to have all the correct names for senders and types // registered. // September 1998: by default preloads the entire log file on startup. // This causes a delay (nontrivial for large logs) but should help smooth // playback. // }}} #include "vrpn_Connection.h" // Global variable used to indicate whether File Connections should // pre-load all of their records into memory when opened. This is the // default behavior, but fails on very large files that eat up all // of the memory. This defaults to "true". User code should set this // to "false" before calling vrpn_get_connection_by_name() or creating // a new vrpn_File_Connection object if it wants that file connection // to not preload. The value is only checked at connection creation time; // the connection behaves consistently once created. This operation is // useful for applications that load large data files and don't want to // wait for them to pre-load. extern VRPN_API bool vrpn_FILE_CONNECTIONS_SHOULD_PRELOAD; // Global variable used to indicate whether File Connections should // keep already-read messages stored in memory. If not, then we have // to re-load the file starting at the beginning on rewind. This // defaults to "true". User code should set this // to "false" before calling vrpn_get_connection_by_name() or creating // a new vrpn_File_Connection object if it wants that file connection // to not preload. The value is only checked at connection creation time; // the connection behaves consistently once created. This operation is // useful for applications that read through large data files and // don't have enough memory to keep them in memory at once, or for applications // that read through only once and have no need to go back and check. extern VRPN_API bool vrpn_FILE_CONNECTIONS_SHOULD_ACCUMULATE; // Global variable used to indicate whether File Connections should // play through all system messages and get to the first user message // when opened or reset to the beginning. This defaults to "true". // User code should set this // to "false" before calling vrpn_get_connection_by_name() or creating // a new vrpn_File_Connection object if it wants that file connection // to not preload. The value is only checked at connection creation time; // the connection behaves consistently once created. Leaving this true // can help with offsets in time that happen at the beginning of files. extern VRPN_API bool vrpn_FILE_CONNECTIONS_SHOULD_SKIP_TO_USER_MESSAGES; class VRPN_API vrpn_File_Connection : public vrpn_Connection { public: vrpn_File_Connection (const char * file_name, const char * local_in_logfile_name = NULL, const char * local_out_logfile_name = NULL); virtual ~vrpn_File_Connection (void); virtual int mainloop (const timeval * timeout = NULL); // returns the elapsed time in the file virtual int time_since_connection_open (timeval * elapsed_time); // returns the current time in the file since the epoch (UTC time). virtual timeval get_time( ) { return d_time; } virtual vrpn_File_Connection * get_File_Connection (void); // Pretend to send pending report, really just clear the buffer. virtual int send_pending_reports (void); // {{{ fileconnections-specific methods (playback control) public: // XXX the following should not be public if we want vrpn_File_Connection // to have the same interface as vrpn_Connection // // If so handler functions for messages for these operations // should be made, and functions added to vrpn_File_Controller which // generate the messages. This seemed like it would be messy // since most of these functions have return values // rate of 0.0 is paused, 1.0 is normal speed void set_replay_rate(vrpn_float32 rate) { d_filetime_accum.set_replay_rate( rate ); } vrpn_float32 get_replay_rate( ) { return d_filetime_accum.replay_rate( ); } // resets to the beginning of the file // returns 0 on success int reset (void); // returns 1 if we're at the end of file int eof(); // end_time for play_to_time() is an elapsed time // returns -1 on error or EOF, 0 on success int play_to_time (vrpn_float64 end_time); int play_to_time (timeval end_time); // end_filetime is an absolute time, corresponding to the // timestamps of the entries in the file, // returns -1 on error or EOF, 0 on success int play_to_filetime(const timeval end_filetime); // plays the next entry, returns -1 or error or EOF, 0 otherwise int playone(); // plays at most one entry, but won't play past end_filetime // returns 0 on success, 1 if at end_filetime, -1 on error or EOF int playone_to_filetime(timeval end_filetime); // returns the elapsed time of the file timeval get_length(); double get_length_secs(); // returns the timestamp of the earliest in time user message timeval get_lowest_user_timestamp(); // returns the timestamp of the greatest-in-time user message timeval get_highest_user_timestamp(); // returns the name of the file const char *get_filename(); // jump_to_time sets the current position to the given elapsed time // return 1 if we got to the specified time and 0 if we didn't int jump_to_time(vrpn_float64 newtime); int jump_to_time(timeval newtime); // jump_to_filetime sets the current position to the given absolute time // return 1 if we got to the specified time and 0 if we didn't int jump_to_filetime( timeval absolute_time ); // Not very useful. // Limits the number of messages played out on any one call to mainloop. // 0 => no limit. void limit_messages_played_back (vrpn_uint32 max_playback) { Jane_stop_this_crazy_thing(max_playback);\ }; // }}} // {{{ tokens for VRPN control messages (data members) protected: vrpn_int32 d_controllerId; vrpn_int32 d_set_replay_rate_type; vrpn_int32 d_reset_type; vrpn_int32 d_play_to_time_type; //long d_jump_to_time_type; // }}} // {{{ time-keeping protected: timeval d_time; // current time in file timeval d_start_time; // time of first record in file timeval d_earliest_user_time; // time of first user message vrpn_bool d_earliest_user_time_valid; timeval d_highest_user_time; // time of last user message vrpn_bool d_highest_user_time_valid; // finds the timestamps of the earliest and highest-time user messages void find_superlative_user_times( ); // these are to be used internally when jumping around in the // stream (e.g., for finding the earliest and latest timed // user messages). They assume // 1) that only functions such as advance_currentLogEntry, // read_entry and manual traversal of d_logHead/d_logTail // will be used. // the functions return false if they don't save or restore the bookmark class VRPN_API vrpn_FileBookmark { public: vrpn_FileBookmark( ); ~vrpn_FileBookmark( ); bool valid; timeval oldTime; long int file_pos; // ftell result vrpn_LOGLIST* oldCurrentLogEntryPtr; // just a pointer, useful for accum or preload vrpn_LOGLIST* oldCurrentLogEntryCopy; // a deep copy, useful for no-accum, no-preload }; bool store_stream_bookmark( ); bool return_to_bookmark( ); vrpn_FileBookmark d_bookmark; // wallclock time at the (beginning of the) last call // to mainloop that played back an event timeval d_last_time; // XXX remove class VRPN_API FileTime_Accumulator { // accumulates the amount of time that we will advance // filetime by when we next play back messages. timeval d_filetime_accum_since_last_playback; // wallclock time when d_filetime_accum_since_last_playback // was last updated timeval d_time_of_last_accum; // scale factor between stream time and wallclock time vrpn_float32 d_replay_rate; public: FileTime_Accumulator(); // return accumulated time since last reset const timeval & accumulated (void) { return d_filetime_accum_since_last_playback; } // return last time accumulate_to was called const timeval & time_of_last_accum (void) { return d_time_of_last_accum; } vrpn_float32 replay_rate (void) { return d_replay_rate; } // add (d_replay_rate * (now_time - d_time_of_last_accum)) // to d_filetime_accum_since_last_playback // then set d_time_of_last_accum to now_time void accumulate_to (const timeval & now_time); // if current rate is non-zero, then time is accumulated // before d_replay_rate is set to new_rate void set_replay_rate (vrpn_float32 new_rate); // set d_time_of_last_accum to now_time // and set d_filetime_accum_since_last_playback to zero void reset_at_time (const timeval & now_time); }; FileTime_Accumulator d_filetime_accum; // }}} // {{{ actual mechanics of the logfile protected: char *d_fileName; FILE * d_file; void play_to_user_message(); // helper function for mainloop() int need_to_play(timeval filetime); // checks the cookie at // the head of the log file; // exit on error! virtual int read_cookie (void); virtual int read_entry (void); // appends entry to d_logTail // returns 0 on success, 1 on EOF, -1 on error // Steps the currentLogEntry pointer forward one. // It handles both cases of preload and non-preload. // returns 0 on success, 1 on EOF, -1 on error virtual int advance_currentLogEntry(void); virtual int close_file (void); // }}} // {{{ handlers for VRPN control messages that might come from // a File Controller object that wants to control this // File Connection. protected: static int VRPN_CALLBACK handle_set_replay_rate (void *, vrpn_HANDLERPARAM); static int VRPN_CALLBACK handle_reset (void *, vrpn_HANDLERPARAM); static int VRPN_CALLBACK handle_play_to_time (void *, vrpn_HANDLERPARAM); // }}} // {{{ Maintains a doubly-linked list structure that keeps // copies of the messages from the file in memory. If // d_accumulate is false, then there is only ever one entry // in memory (d_currentLogEntry == d_logHead == d_logTail). // If d_preload is true, then all of the records from the file // are read into the list in the constructor and we merely step // through memory when playing the streamfile. If d_preload is // false and d_accumulate is true, then we have all of the // records up the d_currentLogEntry in memory (d_logTail points // to d_currentLogEntry but not to the last entry in the file // until we get to the end of the file). // The d_currentLogEntry should always be non-NULL unless we are // past the end of all messages... we will either have preloaded // all of them or else the read routine will attempt to load the // next message each time one is played. The constructor fills it // in with the first message, which makes it non-NULL initially. protected: vrpn_LOGLIST * d_logHead; // the first read-in record vrpn_LOGLIST * d_logTail; // the last read-in record vrpn_LOGLIST * d_currentLogEntry; // Message that we've just loaded, or are at right now vrpn_LOGLIST * d_startEntry; // potentially after initial system messages bool d_preload; // Should THIS File Connection pre-load? bool d_accumulate; // Should THIS File Connection accumulate? // }}} }; #endif // VRPN_FILE_CONNECTION_H
{ "pile_set_name": "Github" }
<?php namespace Oro\Bundle\PaymentBundle\Method\View; use Oro\Bundle\PaymentBundle\Context\PaymentContextInterface; interface PaymentMethodViewInterface { /** * @param PaymentContextInterface $context * @return array */ public function getOptions(PaymentContextInterface $context); /** * @return string */ public function getBlock(); /** * @return string */ public function getLabel(); /** * @return string */ public function getAdminLabel(); /** * @return string */ public function getShortLabel(); /** * @return string */ public function getPaymentMethodIdentifier(); }
{ "pile_set_name": "Github" }