sudo apt install fonts-noto-color-emoji
- Open
~/.config/fontconfig/conf.d/01-emoji.conffile in an editor. - Copy-paste the lines below:
Note
More information you can find on Microsoft documentation.
Tip
You can install all Visual C++ Redistributable Packages using only one command with winget! https://gist.github.com/ChuckMichael/d4221fd8681a7e962c8d37d623ff3145
Microsoft.VCRedist.2005.x64| #ifdef _WIN32 | |
| // Use discrete GPU by default. | |
| extern "C" { | |
| // http://developer.download.nvidia.com/devzone/devcenter/gamegraphics/files/OptimusRenderingPolicies.pdf | |
| __declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001; | |
| | |
| // http://developer.amd.com/community/blog/2015/10/02/amd-enduro-system-for-developers/ | |
| __declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1; | |
| } | |
| #endif |
| #!/bin/sh | |
| # Call this script as root to fully remove Fuse | |
| # For example: 'sudo ./uninstall_fuse.sh' | |
| rm -rvf \ | |
| /Applications/Fuse.app \ | |
| /usr/local/bin/fuse \ | |
| /usr/local/bin/uno \ | |
| /usr/local/bin/unotest \ |
| #!/usr/bin/python | |
| import os | |
| import sys | |
| import time | |
| import yaml | |
| import subprocess | |
| import re | |
| import struct |
| /* | |
| * Copyright 2014 Chris Banes | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| import os | |
| import struct | |
| import socket | |
| state_table = ( | |
| "EMPTY SLOT", | |
| "ESTABLISHED", | |
| "SENT", | |
| "RECV", | |
| "WAIT1", |
| #!/bin/bash | |
| #cut/join videos using ffmpeg without quality loss | |
| if [ "$(uname)" == "Darwin" ]; then | |
| if ! [ -x "$(command -v brew)" ]; then | |
| echo 'homebrew is not installed.' | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| fi | |
| if ! [ -x "$(command -v ffmpeg)" ]; then | |
| echo 'ffmpeg is not installed.' |
| import com.google.gson.Gson; | |
| import com.google.gson.JsonSyntaxException; | |
| import com.android.volley.AuthFailureError; | |
| import com.android.volley.NetworkResponse; | |
| import com.android.volley.ParseError; | |
| import com.android.volley.Request; | |
| import com.android.volley.Response; | |
| import com.android.volley.Response.ErrorListener; | |
| import com.android.volley.Response.Listener; |