1:
<div>
<p-foo [shift]="shift"></p-foo>
<p-foo [shift]="shift"></p-foo>
<p-bar [shiftModel]="shiftModel"></p-bar>
</div>
2:
import { EventProcessor, Hub, Integration, Event } from '@sentry/types'; | |
export class PSentryFilterIntegration implements Integration { | |
public static id : string = 'PSentryFilterIntegration'; | |
public name : string = PSentryFilterIntegration.id; | |
constructor(private ignoreErrors : RegExp[]) {} | |
/** | |
* Sets the integration up only once. |
#!/bin/bash | |
# Commandline tools required for this script: | |
# pidof (can be installed with `brew install pidof`) | |
# lockfile (can be installed with `brew install procmail`) | |
# Number of seconds we wait after a file is received before we consider the | |
# batch to be completed. | |
TIMEOUT=2 | |
# Title of the tab in Kaleidoscope |
0815.ru | |
0wnd.net | |
0wnd.org | |
10minutemail.co.za | |
10minutemail.com | |
123-m.com | |
1fsdfdsfsdf.tk | |
1pad.de | |
20minutemail.com | |
21cn.com |
1:
<div>
<p-foo [shift]="shift"></p-foo>
<p-foo [shift]="shift"></p-foo>
<p-bar [shiftModel]="shiftModel"></p-bar>
</div>
2:
var i = performance.now(); | |
yourFunction(); | |
performance.now() - i; | |
//Or make a helper function, like this: | |
function performanceTest(testFunction, iterations) { | |
'use strict'; | |
var sum = 0; | |
var start = performance.now(); | |
for (var i = 0; i < iterations; i++) { |
# Kirby .htaccess for Projects by DerZyklop | |
# Source: https://gist.github.com/DerZyklop/609d1e0245c798ceccec7c7fba660041 | |
# Deflate Compression by MimeType | |
<IfModule mod_deflate.c> | |
<FilesMatch "\.(js|jpg|jpeg|gif|png|css)$"> | |
ExpiresActive on | |
ExpiresDefault "access plus 1 month" | |
SetOutputFilter DEFLATE | |
</FilesMatch> |
uberspace-configure-webserver enable hsts | |
uberspace-configure-webserver enable nosniff | |
uberspace-configure-webserver enable xframe_deny | |
uberspace-configure-webserver enable xxss_protection |
* { | |
// https://twitter.com/mmatuzo/status/968479911668338689 | |
-webkit-line-clamp: 3; | |
} |
/** | |
* Add the correct genitive ending to a given name. | |
*/ | |
private addGenitiveEnding(name : string) : string { | |
if (name.charAt(name.length - 1).match(/[s|z|ß|x]/)) { | |
return name + '’'; | |
} else { | |
return name + 's'; | |
} |
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |