Name: Material Icon Theme Id: PKief.material-icon-theme Description: Material Design Icons for Visual Studio Code Version: 4.15.0 Publisher: Philipp Kief VS Marketplace Link: https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme Name: Debugger for Firefox Id: firefox-devtools.vscode-firefox-debug
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
akamud.vscode-theme-onedark | |
alexcvzz.vscode-sqlite | |
amazonwebservices.aws-toolkit-vscode | |
christian-kohler.npm-intellisense | |
davidanson.vscode-markdownlint | |
dbaeumer.vscode-eslint | |
donjayamanne.githistory | |
donjayamanne.python-environment-manager | |
donjayamanne.python-extension-pack | |
dsznajder.es7-react-js-snippets |
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
{ "countries": [{"_id":"57a98abc241e64fa038b45b7","name":"Afghanistan","a2":"AF","a3":"AFG","num":4,"itu":"AFG","gec":"AF","ioc":"AFG","fifa":"AFG","ds":"AFG","wmo":"AF","gaul":1,"marc":"af","dial":"93","independent":"Yes\n ","updated_at":"2016-08-09 07:48:12","created_at":"2016-08-09 07:48:12"},{"_id":"57a98abc241e64fa038b45b8","name":"\u00c5land","a2":"AX","a3":"ALA","num":248,"itu":"\u00a0","gec":"\u00a0","ioc":"\u00a0","fifa":"ALD","ds":"FIN","wmo":"\u00a0","gaul":1242,"marc":"\u00a0","dial":"358","independent":"Part of FI\n ","updated_at":"2016-08-09 07:48:12","created_at":"2016-08-09 07:48:12"},{"_id":"57a98abc241e64fa038b45b9","name":"Albania","a2":"AL","a3":"ALB","num":8,"itu":"ALB","gec":"AL","ioc":"ALB","fifa":"ALB","ds":"AL","wmo":"AB","gaul":3,"marc":"aa","dial":"355","independent":"Yes\n ","updated_at":"2016-08-09 07:48:12","created_at":"2016-08-09 07:48:12"},{"_id":"57a98abc241e64fa038b45ba","name":"Algeria","a2":"DZ","a3":"DZA","num":12,"itu":"ALG","gec":"AG","ioc":"ALG","f |
קישורים שימושיים ללוקחי משכנתא
Recomended rates - ריביות מומלצות
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
<dml> | |
<waterfall-dialog id='main'> | |
<step> | |
<!-- TODO: Provide as entry --> | |
<assign to='cars' value='[ { model: "Audi", plate: "EVR-7733" }, { model: "Mercedes", plate: "CAS-921" } ]' /> | |
<assign to='drivers' value='[ { name: "Bill Gates", id: "422279296" }, { name: "Melinda Gates", id: "422279296" } ]' /> | |
<assign to='profile' value='{ name: "Bill Gates", firstName: "Bill" }' /> | |
<message>I’m Ava, your friendly auto insurance claims bot. I can help you file a claim, check claim status or contact your claim manager.</message> | |
<!-- <go to='get-profile' /> --> | |
</step> |
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
/* eslint no-magic-numbers: ["error", { "ignore": [1, 5, 24, 48, 60000, 3600000] }] */ | |
function xMinutesAgo(dateStr) { | |
const date = new Date(dateStr); | |
const dateTime = date.getTime(); | |
if (isNaN(dateTime)) { | |
return dateStr; | |
} |
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
const typeSizes = { | |
"undefined": () => 0, | |
"boolean": () => 4, | |
"number": () => 8, | |
"string": item => 2 * item.length, | |
"object": item => !item ? 0 : Object | |
.keys(item) | |
.reduce((total, key) => sizeOf(key) + sizeOf(item[key]) + total, 0) | |
}; |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
</head> | |
<body> | |
<script type="text/css" id="iframe-stylesheet"> |
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
#install-Module -Name ACMESharp | |
import-module ACMESharp | |
$email = "mailto:[email protected]" | |
$domain = "codepaste.net" | |
$alias = "codepaste" | |
$iissitename = "codepaste.net" | |
$certname = "codepaste$(get-date -format yyyy-MM-dd--HH-mm)" | |
$pfxfile = "c:\Admin\Certs\$certname.pfx" |
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
<?php | |
use Illuminate\Foundation\Testing\WithoutMiddleware; | |
use Illuminate\Foundation\Testing\DatabaseMigrations; | |
use Illuminate\Foundation\Testing\DatabaseTransactions; | |
class ExamplePassportTest extends \PassportTestCase | |
{ | |
use DatabaseTransactions; |