Ascii Table
The below is a PDF for Ascii Characters, click the link to view it or click the download to save the file
The below is a PDF for Ascii Characters, click the link to view it or click the download to save the file
Amazon Elastic Container Registry (ECR) is a fully managed container registry that makes it easy to store, manage, share, and deploy your container images and artifacts anywhere. Amazon ECR eliminates the need to operate your own container repositories or worry about scaling the underlying infrastructure.
Gitflow Workflow is a Git workflow that helps with continuous software development and implementing DevOps practices. ... The Gitflow Workflow defines a strict branching model designed around the project release. This provides a robust framework for managing larger projects.
Redis is an in-memory data structure store, used as a distributed, in-memory key–value database, cache and message broker, with optional durability. Redis supports different kinds of abstract data structures, such as strings, lists, maps, sets, sorted sets, HyperLogLogs, bitmaps, streams, and spatial indices
AWS Lambda is an event-driven, serverless computing platform provided by Amazon as a part of Amazon Web Services. It is a computing service that runs code in response to events and automatically manages the computing resources required by that code. It was introduced in November 2014.
Having trouble connecting to a Aurora DB in EC2 AWS server.
You cannot change a VPS after setting up a Database, this is explicitly stated when creating a database. Below you can read up more on VPC's and RDS's
https://aws.amazon.com/premiumsupport/knowledge-center/change-vpc-rds-db-instance/
$(document).on("click","tr",function(){
var projectId = $(this).attr("data-projectId");
$(this).nextAll("tr:eq(0)").toggle(500);
$(this).nextAll("tr:eq(1)").toggle(500);
});
$("#debtor-customer-filter").on('submit', function(e) {
e.preventDefault();
var data = new FormData(this);
$("#debtors-table").DataTable().destroy();
$("#debtors-list").load("debtor/filterCustomerDebtorById", {
debtorFilter: $("#customer-filter").val(), // This set's the status to fetch all records
fromDate: $("#from-date").val(),
toDate: $("#to-date").val(),
cid: $("#customer-id").val()
}, function (response,status,xhr) {
$("#debtors-table").DataTable();
fetchDebtors(response);
});
});
function fetchDebtors(response) {
$(this).html(response);
}
Setting up xDebug is a bit of a pain as the links are not clearly linked.
So below is some info to help you 😉
In order to use the Install Wizard.
Open your PHPinfo() page from the xampp default dashboard page
http://localhost/dashboard/phpinfo.php
Copy all "Ctrl+A" and paste into the install wizard box and you will get further instructions
The Install Wizard (I think this is mainly for windows. Linux and mac can use terminal)
https://xdebug.org/wizard
Here's the downloads you going to need as the one you get from the wizard is not working. (currently at the time of this post creation)
https://xdebug.org/download#releases
// Limit media library access
add_filter( 'ajax_query_attachments_args', 'wpb_show_current_user_attachments' );
function wpb_show_current_user_attachments( $query ) {
$user_id = get_current_user_id();
if ( $user_id && !current_user_can('activate_plugins') && !current_user_can('edit_others_posts
') ) {
$query['author'] = $user_id;
}
return $query;
}