rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
yum install -y http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpmyum-config-manager --enable elrepo-kernel| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. | |
| # | |
| # This program is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| # GNU General Public License for more details. | |
| # |
| #Uninstall 3D Builder | |
| Get-AppxPackage *3dbuilder* | Remove-AppxPackage | |
| #Uninstall Alarms and Clock | |
| Get-AppxPackage *windowsalarms* | Remove-AppxPackage | |
| #Uninstall Calculator | |
| Get-AppxPackage *windowscalculator* | Remove-AppxPackage | |
| #Uninstall Calendar and Mail: |
| # Save as <folder with your playbook>/callback_plugins/<some name>.py | |
| # Optionally use no_log: True on your playbook/roles/tasks to suppress other output | |
| from __future__ import (absolute_import, division, print_function) | |
| __metaclass__ = type | |
| import os | |
| import time | |
| import json | |
| import sys |
C++ code style written in markdown.
Astyle code automatic formatting settings
You can use clang-format too.
Use tools like vera++
| #!/bin/bash | |
| U=${SUDO_USER:=${USER}} | |
| if [[ -x `which realpath` ]]; then | |
| T=$(realpath ${BASH_SOURCE[0]:=${0}}) | |
| else | |
| T=${BASH_SOURCE[0]:=${0}} | |
| fi | |
| D=$(dirname ${T}) | |
| #apt-get install libfcgi-dev libfcgi0ldbl libjpeg62-turbo-dbg libmcrypt-dev libssl-dev libc-client2007e libc-client2007e-dev libxml2-dev libbz2-dev libcurl4-openssl-dev libjpeg-dev libpng12-dev libfreetype6-dev libkrb5-dev libpq-dev libxml2-dev libtidy-dev libmemcached-dev imagemagick-dev msgpack-dev |
Hi, I am a fork from https://gist.github.com/patrickhammond/4ddbe49a67e5eb1b9c03.
A high level overview for what I need to do to get most of an Android environment setup and maintained on OSX higher Catalina and Big Sur with and without Android Studio been installed.
Considering the SDK is installed under /Users/<your_user>/Library/Android/sdk folder which is the Android Studio preferred SDK location, but it works fine under /usr/local/share/android-sdk as well, which is a location pretty much used on CI mostly.
https://github.com/shyiko/jabba instead ?
| reduce inputs as $obj ( | |
| {}; | |
| if $obj.severity == "E" then | |
| . + { | |
| ($obj.severity): (.[$obj.severity] + 1) | |
| } | |
| else | |
| . | |
| end | |
| ) |
| # Taken from https://medium.com/@nurblieh/ipv6-on-the-edgerouter-lite-c95e3cc8d49d | |
| # just a copy in case that goes away someday | |
| # eth1 is my WAN | |
| # switch0 is my LAN | |
| configure | |
| # Firewall Rule 1/2 | |
| edit firewall ipv6-name WAN6_IN |
| /* | |
| The MIT License (MIT) | |
| Copyright (c) 2018 Ivor Wanders | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is |