This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"collection": "@nestjs/schematics", | |
"sourceRoot": "apps/core/src", | |
"projects": { | |
"clock": { | |
"type": "library", | |
"root": "libs/clock", | |
"entryFile": "index", | |
"sourceRoot": "libs/clock/src", | |
"compilerOptions": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Avatar } from '../schema/avatars.schema'; | |
import { Place } from '../schema/places.schema'; | |
import { Protest } from '../schema/protests.schema'; | |
import { User, UserAvatar } from '../schema/users.schema'; | |
export class GraphMap { | |
public avatarsMap: Map<number, Avatar>; | |
public avatars: Avatar[]; | |
public placesMap: Map<number, Place>; | |
public places: Place[]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+--+--+--+--+ | |
|1 |2 |3 |4 | | |
+--+--+--+--+ | |
|5 |6 |7 |8 | | |
+--+--+--+--+ | |
|9 |10|11|12| | |
+--+--+--+--+ | |
|13|14|15| | | |
+--+--+--+--+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default 20:15:24.351671 +0200 commerce storeuid[658] starting request p2-product-offers | |
default 20:15:24.363829 +0200 commerce <CKStoreRequest: 0x7f8a9fd23c00> https://itunes.apple.com/WebObjects/MZStore.woa/wa/fetchSoftwareAddOns?appAdamId=1354318707&appExtVrsId=828487436&bvrs=1.3&bid=io.coressh.tunnel&offerNames=io.coressh.tunnel.premium.oneyear3 | |
default 20:15:24.382651 +0200 commerce Starting purchase transaction <Transaction id:5BCD7754-0B8E-4274-8D43-F3852D8D3F55 gid:0B7CBF18-B6E2-4D9A-A2CF-8AF391AE8125> on queue io.coressh.tunnel.purchase_queue | |
default 20:15:24.439466 +0200 commerce -[LAContext initWithExternalizedContext:] 0 on <private> | |
default 20:15:24.439757 +0200 commerce runningInSystemContext = 0 | |
default 20:15:24.440249 +0200 commerce runningInOsxRecovery = 0 | |
default 20:15:24.460001 +0200 commerce -[LAContext canEvaluatePolicy:error:]_block_invoke 1 on <private> | |
default 20:15:24.460152 +0200 commerce -[LAClient evaluatePolicy:options:uiDelegate:reply:] 1, { | |
1000 = 1; | |
}, (null) on <private> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func (b *bot) runLoop(ctx *schema.Ctx) { | |
b.log.Info(ctx, "Initializing bot, channel id=%d", b.channelId) | |
init: | |
retryCounter := 0 | |
for { | |
err := b.init(ctx) | |
if err == nil { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var cronJob = require('cron').CronJob, | |
bubSubConverse = require('./lib').bubSubConverse, | |
talkToMammut = require('./lib').talkToMammut, | |
thisCronjobs = require('./thisCronjobs'); | |
var cronjobs = function () { | |
this.cronjobs = {}; | |
return this; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ok": true, | |
"result": [ | |
{ | |
"update_id": 906800468, | |
"message": { | |
"message_id": 63, | |
"from": { | |
"id": 307774, | |
"first_name": "Alexander", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.PHONY: all build test | |
SHELL:=/bin/bash | |
DOCKER_REGISTRY=021181094716.dkr.ecr.us-east-1.amazonaws.com | |
staging: clean build staging-image deploy-staging | |
production: clean build production-image deploy-production | |
npm-auth: | |
test -f .npmrc || docker run --rm -e NPM_REGISTRY=http://npm.klab-berlin.de -e NPM_USER=ci -e NPM_PASS=QM6CcwsfvY3rW32w -e [email protected] bravissimolabs/generate-npm-authtoken > .npmrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"total": 1, | |
"next": { | |
"product": { | |
"id": 5, | |
"isbn": "0000000000005", | |
"kspn": "d88e1c51-60d9-5deb-881e-5ab07d268e80", | |
"name": "Test product 5", | |
"author": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import json | |
import logging | |
from .models import * | |
from . import tables | |
from payme import utm | |
from payme.forms import form_to_dict | |
logger = logging.getLogger(__name__) |