Skip to content

Instantly share code, notes, and snippets.

View maxbmx's full-sized avatar
✌️
Ageno.pl

Maksymilian Śleziak maxbmx

✌️
Ageno.pl
View GitHub Profile
//If you would like fo filter benchmark list on the https://browser.geekbench.com/mac-benchmarks
//you could simply use the Chrome Developer Tools and in the Console tab paste this:
$('table.table.mac-benchmark tr').find('td.name:not(:contains("MacBook Pro"))').parent("tr").remove();
@gildas
gildas / install-openstack-client-osx.sh
Last active February 14, 2021 16:43
Install Openstack client on Mac OS/X
# The cleanest way is to not use the system python at all (like rbenv for Ruby)
brew install python
pip2 install --upgrade pip setuptools
pip2 install --upgrade python-openstackclient
@peterjaap
peterjaap / magento-testing-scenarios.md
Last active October 17, 2022 10:16
Magento testing scenarios

Magento testing scenarios

For use after an upgrade to verify the correct working of Magento

SHIP IT

Frontend

General

  • Activate all logs on the server (PHP, MySQL, Magento, mail, etc)
  • Check meta tags in HTML
@georgiecel
georgiecel / wp-comment-walker
Last active December 28, 2022 15:16
Custom comment walker for HTML5 friendly WordPress comment and threaded replies. To be inserted in functions.php.
<?php
class comment_walker extends Walker_Comment {
var $tree_type = 'comment';
var $db_fields = array( 'parent' => 'comment_parent', 'id' => 'comment_ID' );
// constructor – wrapper for the comments list
function __construct() { ?>
<section class="comments-list">