I cannot guarantee the accuracy of the information and nor being held accountable to any issue if somehow this guide ends up on the internet.
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
@nix { "action": "setPhase", "phase": "unpackPhase" } | |
unpacking sources | |
unpacking source archive /nix/store/4zyifzdw3d8gwwk5r61xsiphvydnrjpy-source | |
source root is source | |
@nix { "action": "setPhase", "phase": "patchPhase" } | |
patching sources | |
patching script interpreter paths in configure | |
configure: interpreter directive changed from "#!/bin/bash" to "/nix/store/mh2ga0rzccp2749ar62gmsij8bfajykj-bash-5.2-p15/bin/bash" | |
@nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" } | |
updateAutotoolsGnuConfigScriptsPhase |
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
# Maintainer: Honghao Li <[email protected]> | |
# Maintainer: Damien Biasotto <[email protected]> | |
pkgname=sublime-merge | |
pkgver=2020 | |
pkgrel=1 | |
pkgdesc="Meet a new Git Client, from the makers of Sublime Text" | |
arch=('x86_64') | |
url="https://www.sublimemerge.com" | |
license=('custom') |
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
;;Trigger a refresh of vc-modeline on some magit functions | |
(require 'magit) | |
(defun refresh-vc-state (&rest r) (message "%S" (current-buffer))(vc-refresh-state)) | |
(advice-add 'magit-checkout-revision :after 'refresh-vc-state '((name . "magit-refresh-on-checkout-revision"))) | |
(advice-add 'magit-branch-create :after 'refresh-vc-state '((name . "magit-refresh-on-branch-create"))) | |
(advice-add 'magit-branch-and-checkout :after 'refresh-vc-state '((name . "magit-refresh-on-checkout-and-branch"))) | |
(advice-add 'magit-branch-or-checkout :after 'refresh-vc-state '((name . "magit-refresh-on-branch-or-checkout"))) |
This file has been truncated, but you can view the full file.
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
Jan 9 10:35:59 Damiens-iPhone com.apple.WebKit.WebContent(WebCore)[294] <Notice>: 0x147dd2770 - PerformanceMonitor::measurePostLoadCPUUsage: Process was using 0.1% CPU after the page load. | |
Jan 9 10:35:59 Damiens-iPhone searchd(PlugInKit)[214] <Error>: plug-in <private> pre-screen sees activating state | |
Jan 9 10:35:59 Damiens-iPhone pkd[88] <Notice>: allowing host 214 <private> to use plug-in <private>(<private>) uuid=17D07AC8-8EBE-4159-8E73-E0EA24A47E1E at <private> | |
Jan 9 10:35:59 Damiens-iPhone searchd(PlugInKit)[214] <Notice>: connection to plug-in <private>(17D07AC8-8EBE-4159-8E73-E0EA24A47E1E) lost | |
Jan 9 10:35:59 Damiens-iPhone searchd(PlugInKit)[214] <Error>: Hub connection error Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.apple.itunesu.SpotlightIndexExtension" UserInfo={NSDebugDescription=connection to service named com.apple.itunesu.SpotlightIndexExtension} | |
Jan 9 10:35:59 Damiens-iPhone searchd(CoreSpotlight)[214] <Error>: Failed to setup a new session for extension: |
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
#!/usr/bin/env bash | |
# Add or remove keywords here | |
KEYWORDS_REGEX="var_dump\(|die\(?|Zend_Debug::|Mage::log\(|print_r\(|console\.(debug|info|log|warn)\(" | |
# Add extensions to check here | |
EXTENSIONS_REGEX="(.php$|.phtml$|.js$)" | |
ERRORS_BUFFER="" | |
TEXT_DEFAULT="\\033[0;39m" | |
TEXT_INFO="\\033[1;32m" |
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
FROM php:fpm-alpine | |
RUN apk add --no-cache --update icu-libs icu icu-dev | |
RUN docker-php-ext-install intl pdo pdo_mysql |
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
web: | |
image: occitech/cakephp:5-apache | |
ports: | |
- 80 | |
links: | |
- db | |
volumes: | |
- .:/var/www/html | |
environment: |
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
" compatible has to be the first of all ( use the real vimpower ) | |
set nocompatible | |
" backup rules | |
set backup " enable backup files (.txt~) | |
set undofile " enable persistent undo | |
silent execute '!mkdir -p $HOME/.vim/tmp/backup' | |
set backupdir=$HOME/.vim/tmp/backup " where to store backup | |
silent execute '!mkdir -p $HOME/.vim/tmp/swap' |
NewerOlder