git update-index --assume-unchanged package.json
git update-index --assume-unchanged resources/assets/sass/old_css/helper.css
git update-index --assume-unchanged resources/views/errors/500.blade.php
git update-index --assume-unchanged resources/views/layouts/admin/head.blade.php
git update-index --assume-unchanged resources/views/layouts/admin/master.blade.php
git update-index --assume-unchanged resources/views/layouts/student/head.blade.php
git update-index --assume-unchanged resources/views/layouts/student/master.blade.php
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
@if (env('APP_ENV') === 'local') | |
<script async src="http://localhost:3000/browser-sync/browser-sync-client.js"></script> | |
@endif |
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
sudo add-apt-repository ppa:serge-rider/dbeaver-ce -y | |
sudo apt-get update | |
sudo apt-get install dbeaver-ce -y |
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
{ | |
"font_face": "Fira Code Regular", | |
"font_size": 9, | |
"line_padding_top": 8, | |
"line_padding_bottom": 8, | |
"color_scheme": "Packages/Nord/Nord.sublime-color-scheme", | |
"ignored_packages": | |
[ | |
"Vintage" | |
], |
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
xdebug.idekey=docker | |
xdebug.remote_connect_back=0 | |
xdebug.remote_host=10.0.1.2 | |
xdebug.remote_port=9001 | |
xdebug.remote_autostart=1 | |
xdebug.remote_enable=1 | |
xdebug.remote_handler=dbgp | |
xdebug.remote_mode=req | |
xdebug.cli_color=1 | |
xdebug.profiler_enable=0 |
Just before Gnome shell is completely started, Ubuntu freezes completely, nothing is clickable. Only mouse moves. It is possible to note that clock freezes to, the seconds stopped. When it returns, I can see this entries on /var/log/syslog
:
Oct 24 10:04:03 thiago-ubuntu gnome-shell[2183]: Window manager warning: Overwriting existing binding of keysym ffb6 with keysym ffb6 (keycode 55).
Oct 24 10:04:03 thiago-ubuntu gnome-shell[2183]: Window manager warning: Overwriting existing binding of keysym ffb7 with keysym ffb7 (keycode 4f).
Oct 24 10:04:03 thiago-ubuntu gnome-shell[2183]: Window manager warning: Overwriting existing binding of keysym ffb1 with keysym ffb1 (keycode 57).
Oct 24 10:04:03 thiago-ubuntu gnome-shell[2183]: Window manager warning: Overwriting existing binding of keysym ffb2 with keysym ffb2 (keycode 58).
Oct 24 10:04:03 thiago-ubuntu gnome-shell[2183]: Window manager warning: Overwriting existing binding of keysym ffb1 with keysym ffb1 (
The idea is to use an array, PATHS
for example, to store the folders needed to be in PATH, and use the method join()
, taken from this post, to merge correctly all paths.
#!/bin/bash
# Define PATH environment variable in a more organized way.
# ------------------------------------------------------------------------------
PATHS=(
Source: https://codewithhugo.com/install-just-redis-cli-on-ubuntu-debian-jessie
cd /tmp
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
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
module.exports = { | |
config: { | |
fontFamily: 'Fira Code', | |
fontSize: 12, | |
fontWeight: 'normal', | |
fontWeightBold: 'bold', | |
backgroundColor: '#000', | |
borderColor: '#333', | |
foregroundColor: '#fff', | |
selectionColor: 'rgba(255,255,255,0.075)', |
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
{ | |
"globals": { | |
"alwaysShowTabs": true, | |
"defaultProfile": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}", | |
"initialCols": 90, | |
"initialRows": 25, | |
"requestedTheme": "system", | |
"showTabsInTitlebar": true, | |
"showTerminalTitleInTitlebar": true, | |
"wordDelimiters": " ./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}~?\u2502", |
NewerOlder