Current version: 3.3.7
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)| { | |
| "window.zoomLevel": 2, | |
| "window.autoDetectColorScheme": true, | |
| "window.newWindowDimensions": "maximized", | |
| // Editor | |
| "editor.renderWhitespace": "trailing", | |
| "editor.formatOnSave": true, | |
| "editor.detectIndentation": false, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll": "explicit" |
| [ | |
| { | |
| "matchNumber": 1, | |
| "kickOff": "2019-02-01T20:00:00.000Z", | |
| "teamA": "France", | |
| "teamB": "Wales", | |
| "location": "Stade de France, Paris", | |
| "finalScore": "19-24" | |
| }, | |
| { |
| const Config = require('electron-config'); | |
| const config = new Config(); | |
| config.set('unicorn', '🦄'); | |
| console.log(config.get('unicorn')); | |
| //=> '🦄' | |
| // use dot-notation to access nested properties | |
| config.set('foo.bar', true); | |
| console.log(config.get('foo')); |
Set the url with ?XDEBUG_SESSION_START=PHPSTORM and set a header Cookie: XDEBUG_SESSION=PHPSTORM
f.lux - Make the color of your computer's display adapt to the time of day
Bartender - Organize your menu bar apps
Clean My Mac - Cleaning software
Molotov - French live TV and VOD
CyberDuck - Libre FTP, SFTP, WebDAV, S3, Backblaze B2, Azure & OpenStack Swift browser
| html, | |
| body { | |
| padding: 0; | |
| margin: 0; | |
| } | |
| body { | |
| font-family: -apple-system, 'Helvetica Neue', Helvetica, sans-serif; | |
| -webkit-app-region: drag; | |
| } |
| const gulp = require('gulp'); | |
| const babel = require('gulp-babel'); | |
| const debug = require('gulp-debug'); | |
| const cache = require('gulp-cached'); | |
| const plumber = require('gulp-plumber'); | |
| const notify = require("gulp-notify"); | |
| const electron = require('electron-connect').server.create(); | |
| const errorTemplate = '<%= error.message %>'; |
| (function () { | |
| 'use strict'; | |
| angular.module('solisPaiementApp.directives') | |
| .directive('myDatepicker', ['$timeout', function ($timeout) { | |
| return { | |
| restrict: 'A', | |
| require: ['^?form', 'ngModel'], | |
| scope: { |