1. Ensure systemd-timesyncd
is installed:
Open the terminal and install systemd-timesyncd
if it's not already installed:
sudo apt install systemd-timesyncd
2. Configure NTP servers:
1. Ensure systemd-timesyncd
is installed:
Open the terminal and install systemd-timesyncd
if it's not already installed:
sudo apt install systemd-timesyncd
2. Configure NTP servers:
I have a notebook running Ubuntu Mate and the trackpad stopped working after login (it worked on the login screen). This is what I did to fix it:
xinput
command on the terminal.xinput --list-props [trackpad ID]
.Synaptics Off
is set to 1.xinput --set-prop [trackpad ID] 'Synaptics Off' 0
Solution found on Ubuntu Ask.
// Run this code in the browser's console | |
// Replace de 'emoji' constant code by the one you need to convert | |
const emoji = '\u{1F639}'; | |
highSurrogate = emoji[0].codePointAt(0).toString(16); | |
lowSurrogate = emoji[1].codePointAt(0).toString(16); | |
console.log(`Unicode for "${emoji}" = \\u${highSurrogate}\\u${lowSurrogate}`); |
MECE (pronunciado "me see") é um princípio usado por firmas de consultoria, como a McKinsey, para descrever uma forma de organizar informação que é "mutuamente exclusiva, coletivamente exaustiva".
Ao considerar soluções para qualquer problema de negócio, como "quais as opções de crescimento pra esta empresa?", "como podemos cortar custos?" ou "como podemos aumentar as vendas?", o princípio MECE sugere que todas as causas possíveis ou opções a serem consideradas para resolver esses problemas sejam agrupadas e categorizadas de uma forma particular. Especificamente, toda a informação deve ser agrupada em categorias em que não há sobreposição entre elas (mutualmente exclusivas) e as categorias somadas cobrem todas as opções possíveis (coletivamente exaustivas).
Segue um exemplo de estrutura de agrupamento que não é MECE: agrupar clientes por seus hobbies. Não é MECE, pois um único cliente pode estar em mais de uma categoria de hobby.
Uma alternativa seria agrupar os clientes por grupo de id
{ | |
"theme": "Material-Theme.sublime-theme", | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"font_face": "Source Code Pro", | |
"font_size": 14, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], |
# Custom prompt | |
# Bash colors and formating http://goo.gl/XwihhQ | |
LIGHT_BLUE="\[\e[34m\]" | |
RED="\[\e[31m\]" | |
GREEN="\[\e[32m\]" | |
YELLOW="\[\e[33m\]" | |
DARK_GRAY="\[\e[90m\]" | |
RESET="\[\e[00m\]" | |
export PS1="${DARK_GRAY}\n\u@\h ${GREEN}\w\n${YELLOW}$ ${RESET}" |
" turn on syntax color | |
syntax on | |
" Use spaces for indenting | |
set expandtab | |
" turn off line wraping | |
set nowrap | |
" tab size |