Things you should do after installing your new Fedora workstation.
- Method (a): from
Settings->About, changeDevice Name.
| gsettings set org.gnome.shell.extensions.dash-to-dock extend-height false | |
| gsettings set org.gnome.shell.extensions.dash-to-dock dock-position BOTTOM | |
| gsettings set org.gnome.shell.extensions.dash-to-dock transparency-mode FIXED | |
| gsettings set org.gnome.shell.extensions.dash-to-dock dash-max-icon-size 48 | |
| gsettings set org.gnome.shell.extensions.dash-to-dock unity-backlit-items false | |
| gsettings set org.gnome.shell.extensions.dash-to-dock show-apps-at-top true | |
| sudo apt install docker.io maven gradle zip unzip openjdk-11-jdk openjdk-8-jdk | |
| wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz | |
| sudo tar -xzf postman.tar.gz -C /opt |
| adb devices | |
| adb shell | |
| pm uninstall -k --user 0 com.google.android.googlequicksearchbox | |
| pm uninstall -k --user 0 com.google.android.apps.books | |
| pm uninstall -k --user 0 com.google.android.apps.docs.editors.docs | |
| pm uninstall -k --user 0 com.google.android.apps.docs.editors.sheets | |
| pm uninstall -k --user 0 com.google.android.apps.docs.editors.slides | |
| pm uninstall -k --user 0 com.google.android.apps.cloudprint | |
| pm uninstall -k --user 0 com.google.android.apps.docs |
| #!/usr/bin/env bash | |
| # Usage: bash uninstall_vmware.bash | |
| remove() { | |
| entry="$1" | |
| echo -ne "Removing \e[1;34m$entry\e[0m... " | |
| sudo rm -rf "$entry" &> /tmp/uninstall-vmware.log | |
| if [[ ! -e "$entry" ]]; then | |
| echo -e "\e[1;32mOK\e[0m" |
| #!/bin/sh | |
| # Pull current logged in user into 'user' variable. | |
| user=`ls -l /dev/console | cut -d " " -f 4` | |
| # #2 Kill Lync & SfB | |
| killall "Microsoft Lync" | |
| killall "Skype for Business" | |
| # #3 Delete the Lync & SfB applications |
| use Aws\Common\Aws; | |
| // Create a service builder using a configuration file | |
| $aws = Aws::factory('/path/to/my_config.json'); | |
| // Get the client from the builder by namespace | |
| $client = $aws->get('Kinesis'); | |
| $result = $client->putRecords(array( | |
| // Records is required |
| #! /bin/bash | |
| wget https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.gz | |
| tar xzf protobuf-2.6.1.tar.gz | |
| cd protobuf-2.6.1 | |
| sudo apt-get update | |
| sudo apt-get install build-essential | |
| sudo ./configure | |
| sudo make | |
| sudo make check | |
| sudo make install |
| [Unit] | |
| Description=supervisord - Supervisor process control system for UNIX | |
| Documentation=http://supervisord.org | |
| After=network.target | |
| [Service] | |
| Type=forking | |
| ExecStart=/bin/supervisord -c /etc/supervisord/supervisord.conf | |
| ExecReload=/bin/supervisorctl reload | |
| ExecStop=/bin/supervisorctl shutdown |
| function biz_replace_tr_ch($str) | |
| { | |
| return str_replace("ğ", "g", str_replace("ü", "u", str_replace("ş", "s", str_replace("ç", "c", str_replace("ö", "o", str_replace("Ö", "O", str_replace("Ç", "C", str_replace("Ş", "S", str_replace("Ü", "u", str_replace("İ", "i", str_replace("ı", "i", $str))))))))))); | |
| } |
| public @ResponseBody String getServiceResponse() | |
| { | |
| return "hello world"; | |
| } |