Once in a while I forget the queries because I don't use them daily. I have created this document as a reference to me and maybe it can be useful to you.
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
# Use the following command to update, and upgrade all you packages except web browsers. | |
sudo apt-get --just-print upgrade | awk '/^Inst/ { print $2 }' | grep -v 'chromium' | grep -v 'firefox' | grep -v 'brave-browser' | xargs sudo apt install | |
# Full command explanation here: https://x.com/Reedyseth/status/1756790562122797273?s=20 |
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 | |
/** | |
* Plugin Name: Restrict Content | |
* Plugin URI: https://restrictcontentpro.com | |
* Description: Set up a complete membership system for your WordPress site and deliver premium content to your members. Unlimited membership packages, membership management, discount codes, registration / login forms, and more. | |
* Version: 3.1.9 | |
* Author: StellarWP | |
* Author URI: https://stellarwp.com/ | |
* Requires at least: 6.0 | |
* Requires PHP: 7.4 |
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
msgid "" | |
msgstr "" | |
"Project-Id-Version: subscribe-to-comments-reloaded\n" | |
"POT-Creation-Date: 2016-08-23 10:04-0700\n" | |
"PO-Revision-Date: \n" | |
"Last-Translator: Reedyseth <[email protected]>\n" | |
"Language-Team: Ahrale | Atar4U.com <[email protected]>\n" | |
"Language: he\n" | |
"MIME-Version: 1.0\n" | |
"Content-Type: text/plain; charset=UTF-8\n" |
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
{ | |
"added_words": | |
[ | |
"screenshot", | |
"Datatable", | |
"plugin", | |
"usr" | |
], | |
"afn_blacklist_scopes": | |
[ |
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 ng-controller="products_controller"> | |
<div class="col-xs-5 col-sm-5 col-md-5 col-lg-5"> | |
<form action="" method="POST" class="form-horizontal" role="form"> | |
<div class="form-group"> | |
<legend>Form title</legend> | |
</div> | |
<div class="form-group"> | |
<label for="code">Code</label> | |
<input ng-model="product.code" type="text" name="code" id="code" class="form-control" value="" required="required" pattern="" title=""> |
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
<a ng-click="go_to_action('new_product')">New</a> | |
<div ng-controller="products_list_controller" > | |
<table class="table table-striped table-hover"> | |
<thead> | |
<tr> | |
<th>Code</th> | |
<th>Description</th> | |
<th>Cost</th> |
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
/* Replace jQuery UI constants @todo depreciated */ | |
if ( sAttr == "H" ) | |
{ | |
sAttr = classes.sJUIHeader; | |
} | |
else if ( sAttr == "F" ) | |
{ | |
sAttr = classes.sJUIFooter; | |
} |
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
$.extend( DataTable.ext.classes, { | |
"sTable": "dataTable", | |
"sNoFooter": "no-footer", | |
/* Paging buttons */ | |
"sPageButton": "paginate_button", | |
"sPageButtonActive": "current", | |
"sPageButtonDisabled": "disabled", | |
/* Striping classes */ |
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 will parse a given URL into an Object. | |
* @author Reedyseth | |
* | |
* @param qs String The URL to be parse. | |
* @return elements Object With the variables and the values. | |
**/ | |
function parseQueryString(qs) { | |
var elements = {}; | |
var a = qs.split("&"); |
NewerOlder