Look into current implementation
// Execute the phases up to but not including Render Response
public void execute(FacesContext context) throws FacesException {
Look into current implementation
// Execute the phases up to but not including Render Response
public void execute(FacesContext context) throws FacesException {
What is ManagedBean?
wingpanel-[version]
Panel.vala
, replace line center_menubar.add (indicator_entry);
by right_menubar.insert_sorted (indicator_entry);
IndicatorSorter.vala
, add line indicator_order[Indicator.DATETIME] = 10;
in contruct
. Change indicator_order[Indicator.SESSION] = 10;
to indicator_order[Indicator.SESSION] = 11;
meson build --prefix=/usr
docker container stop $(docker container ls -aq) | |
docker container rm $(docker container ls -aq) | |
docker system prune -a |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Test Meet</title> | |
<!-- change domain to match your Jitsi server --> | |
<script src='https://meet.jit.si/external_api.js'></script> | |
<style> | |
html { |
#! /bin/sh | |
sudo curl -o /usr/local/bin/runb https://gist.githubusercontent.com/therealtuyen/320fdafabe1330dac586395e33cf7cd2/raw/863a22c48133d6947168c48bdeec1b50279682e4/run-in-batch.sh | |
sudo chmod a+x /usr/local/bin/runb | |
source ~/.bashrc >/dev/null 2>&1 | |
source ~/.zshrc >/dev/null 2>&1 |
#!/bin/bash | |
sudo apt install -y unzip zip | |
export CONSUL_VERSION=1.13.4 | |
printf "Download & install consul ${CONSUL_VERSION}\n" | |
export CONSUL_URL="https://releases.hashicorp.com/consul" | |
curl --silent --remote-name \ | |
${CONSUL_URL}/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip | |
unzip consul_${CONSUL_VERSION}_linux_amd64.zip | |
sudo chown root:root consul | |
sudo mv consul /usr/bin/ |
#! /bin/bash | |
sudo apt install -y unzip zip | |
export NOMAD_VERSION=1.4.3 | |
printf "Download & install nomad v${NOMAD_VERSION}\n" | |
curl --silent --remote-name https://releases.hashicorp.com/nomad/${NOMAD_VERSION}/nomad_${NOMAD_VERSION}_linux_amd64.zip | |
unzip nomad_${NOMAD_VERSION}_linux_amd64.zip | |
sudo chown root:root nomad | |
sudo mv nomad /usr/local/bin/ | |
nomad version | |
nomad -autocomplete-install |
#!/bin/bash | |
sudo apt install -y unzip zip | |
export CONSUL_VERSION=1.13.4 | |
printf "Download & install consul ${CONSUL_VERSION}\n" | |
export CONSUL_URL="https://releases.hashicorp.com/consul" | |
curl --silent --remote-name \ | |
${CONSUL_URL}/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip | |
unzip consul_${CONSUL_VERSION}_linux_amd64.zip | |
sudo chown root:root consul | |
sudo mv consul /usr/bin/ |