- Open the Terminal.
- Type:
sudo nano ~/.config/openbox/lxqt-rc.xml
- Look for
<animateIconify>yes</animateIconify>
then change it to<animateIconify>no</animateIconify>
- Save the file.
- Type:
openbox --reconfigure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Afghanistan, | |
Albania, | |
Algeria, | |
Andorra, | |
Angola, | |
Antigua & Deps, | |
Argentina, | |
Armenia, | |
Australia, | |
Austria, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
Türkçe Ülke Listesi | |
*/ | |
$countries = [ | |
'TR' => 'Türkiye', | |
'VI' => 'ABD Virgin Adaları', | |
'AF' => 'Afganistan', | |
'AX' => 'Aland Adaları', | |
'DE' => 'Almanya', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="ui form"> | |
<div class="two fields"> | |
<div class="four wide field"> | |
<label> | |
Input Label | |
</label> | |
</div> | |
<div class="twelve wide field"> | |
<input type="text" value="" placeholder="Input placeholder..."> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Semantic UI | |
* Includes previous and next buttons | |
* @example $pages->links('pagination-advanced', ['paginator' => $pages]) | |
* @example @include('pagination-advanced', ['paginator' => $pages]) | |
* | |
* @link https://semantic-ui.com/collections/menu.html#inverted Inverted styles | |
* @see <div class="ui pagination inverted blue menu"> Inverted blue menu | |
**/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update | |
# | |
# APACHE2 | |
# | |
sudo apt install apache2 | |
# | |
# PHP 7.3 | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
This collection is including my favorite custom themes. | |
Copypaste the following snippet into the file GraphicsConfiguration.xml, replacing (only) the similar lines | |
inside the <GUIColour><Default> tags. Note that this file is overwritten when the game updates, | |
so you will need to re-apply your theme every time that happens. | |
--> | |
<!-- | |
Original Theme | |
http://arkku.com/elite/hud_editor/ | |
--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Bulma CSS Framework | |
* Includes previous and next buttons | |
* @example $pages->links('pagination', ['paginator' => $pages]) | |
* @example @include('pagination', ['paginator' => $pages]) | |
* | |
* @link https://bulma.io/documentation/components/pagination/ | |
**/ | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion | |
--> | |
<input type="email" autocomplete="new-email"> | |
<input type="password" autocomplete="new-password"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?PHP | |
// Generates a strong password of N length containing at least one lower case letter, | |
// one uppercase letter, one digit, and one special character. The remaining characters | |
// in the password are chosen at random from those four sets. | |
// | |
// The available characters in each set are user friendly - there are no ambiguous | |
// characters such as i, l, 1, o, 0, etc. This, coupled with the $add_dashes option, | |
// makes it much easier for users to manually type or speak their passwords. | |
// | |
// Note: the $add_dashes option will increase the length of the password by |
OlderNewer