Skip to content

Instantly share code, notes, and snippets.

View erezsob's full-sized avatar

Erez Sobel erezsob

View GitHub Profile
@erezsob
erezsob / aliases.config.js
Created December 9, 2020 23:10
Wallaby diagnostics
const path = require('path')
const aliases = {
'@packages': './packages',
'@plugins': './src/plugins',
'@utils': './src/utils',
'@components': './src/components'
}
module.exports = {
'use strict';
angular.module('app')
.config(['$stateProvider', '$urlRouterProvider', function ($stateProvider, $urlRouterProvider) {
$stateProvider
.state('mainNotAuthorized.passwordForgotten', {
url: 'password-forgotten/:errorStatus',
@erezsob
erezsob / language-culture-names-list.json
Last active January 8, 2024 09:00
List of language culture names and their display names as one level object in one JSON file
[
{
"country": "Afghanistan",
"language": "Pashto",
"twoLetter LangCode": "ps",
"threeLetterLangCode": "pus",
"cultureInfoCode": "ps-AF"
},
{
"country": "Afghanistan",
@erezsob
erezsob / tld-list.json
Last active July 10, 2017 13:04
All Top-Level-Domains as single level objects in one JSON file
{
".ac": "Ascension Island",
".ad": "Andorra",
".ae": "United Arab Emirates",
".af": "Afghanistan",
".ag": "Antigua and Barbuda",
".ai": "Anguilla",
".al": "Albania",
".am": "Armenia",
".an": "Netherlands Antilles",
@erezsob
erezsob / _contact_details.scss
Last active September 25, 2015 14:00
Code samples (html, css & js) from a management webapp project
p {
line-height: 18px;
}
.contactItem {
padding-left: 15px;
padding-right: 15px;
margin-right: auto;
margin-left: auto;
}