-
Clone the project
[email protected]:author/my-dependency.git
This file contains 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
DROP TABLE default.poc_pg_persondistinctid; | |
CREATE TABLE default.poc_pg_persondistinctid | |
( | |
id UInt32, | |
distinct_id String, | |
version UInt64, | |
person_id UInt32, | |
team_id UInt32 | |
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
SELECT uuid, | |
event, | |
properties, | |
timestamp, | |
team_id, | |
distinct_id, | |
elements_chain, | |
created_at | |
FROM events | |
WHERE team_id = 2 |
This file contains 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
FROM node:16-alpine AS deps | |
RUN apk --no-cache add curl | |
RUN curl -sf https://gobinaries.com/tj/node-prune | sh | |
WORKDIR /usr/src/app | |
COPY ["package.json", "yarn.lock", "./"] | |
# build-dependencies are required for bcrypt on m1 macs | |
RUN apk --no-cache --virtual build-dependencies add python3 make g++ \ | |
&& yarn install --production \ | |
&& apk del build-dependencies | |
RUN /usr/local/bin/node-prune |
This file contains 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 removeAppNameFromProductTitle from './removeAppNameFromProductTitle'; | |
describe('removeAppNameFromProductTitle', () => { | |
it('returns title without app name', () => { | |
const title = 'my test'; | |
const result = removeAppNameFromProductTitle(title); | |
expect(result).toEqual('my test'); | |
}); |
This file contains 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 mongoose from "mongoose"; | |
import { prop as Property, getModelForClass } from "@typegoose/typegoose"; | |
import { withTransaction } from "./transaction"; | |
class Foo { | |
@Property({ required: true }) | |
example!: string; | |
} | |
const FooModel = getModelForClass(Foo); |
This file contains 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
@page { | |
size: 210mm 297mm; /* A4-sized pages in portrait orientation; default is US letter */ | |
margin-top: 2.54cm; | |
margin-bottom: 2.54cm; | |
margin-left: 1.27cm; | |
margin-right: 1.27cm; | |
} | |
body,p,li,td,table,tr,.bodytext,.stepfield { | |
font-size: 15px; |
This file contains 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
tcpdump: data link type PKTAP | |
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode | |
listening on any, link-type PKTAP (Apple DLT_PKTAP), capture size 262144 bytes | |
15:29:42.444866 IP 192.168.188.44.60620 > 1.1.1.1.53: 45006+ A? auth.otc.t-systems.com. (40) | |
15:29:46.660608 IP 1.1.1.1.53 > 192.168.188.44.60620: 45006 ServFail 0/0/0 (40) | |
15:29:54.959125 IP 192.168.188.44.59598 > 1.1.1.1.53: 42927+ A? serverfault.com. (33) | |
15:29:54.975230 IP 1.1.1.1.53 > 192.168.188.44.59598: 42927 4/0/0 A 151.101.193.69, A 151.101.1.69, A 151.101.65.69, A 151.101.129.69 (97) | |
NewerOlder