Set the url with ?XDEBUG_SESSION_START=PHPSTORM and set a header Cookie: XDEBUG_SESSION=PHPSTORM
This file contains hidden or 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
| [ | |
| { | |
| "matchNumber": 1, | |
| "kickOff": "2019-02-01T20:00:00.000Z", | |
| "teamA": "France", | |
| "teamB": "Wales", | |
| "location": "Stade de France, Paris", | |
| "finalScore": "19-24" | |
| }, | |
| { |
This file contains hidden or 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 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')); |
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
This file contains hidden or 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
| html, | |
| body { | |
| padding: 0; | |
| margin: 0; | |
| } | |
| body { | |
| font-family: -apple-system, 'Helvetica Neue', Helvetica, sans-serif; | |
| -webkit-app-region: drag; | |
| } |
This file contains hidden or 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 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 %>'; |
This file contains hidden or 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
| (function () { | |
| 'use strict'; | |
| angular.module('solisPaiementApp.directives') | |
| .directive('myDatepicker', ['$timeout', function ($timeout) { | |
| return { | |
| restrict: 'A', | |
| require: ['^?form', 'ngModel'], | |
| scope: { |
This file contains hidden or 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
Show hidden characters
| { | |
| "color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
| "folder_exclude_patterns": | |
| [ | |
| "dist", | |
| "node_modules", | |
| ".git" | |
| ], | |
| "font_options": | |
| [ |
This file contains hidden or 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
| //C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg | |
| cl_autowepswitch "0" // we dont want to pick up & switch to a rifle up if we're in the middle of firing | |
| cl_disablefreezecam "1" | |
| cl_downloadfilter "nosounds" | |
| cl_disablehtmlmotd "1" // Disables The Servers Message of The Day. | |
| cl_forcepreload "1" // Preloads The Whole Map & Sounds. |