Skip to content

Instantly share code, notes, and snippets.

View jacquesbh's full-sized avatar
👋
Hey!

Jacques Bodin-Hullin jacquesbh

👋
Hey!
View GitHub Profile
@jacquesbh
jacquesbh / Use Yubikey (GPG key) for SSH.md
Last active January 3, 2024 14:59
Use my Yubikey with GPG keys to SSH with a guest computer (OSX or Windows)
@jacquesbh
jacquesbh / .blackfire.yml
Created August 22, 2016 09:43
Simple blackfire.yml to get metrics information (Magento 1)
tests:
"Info: Action cms/index/index":
assertions:
- "metrics.magento1.action.cms_index_index.count"
"Info: Action cms/page/view":
assertions:
- "metrics.magento1.action.cms_page_view.count"
"Info: Action catalog/category/view":
assertions:
- "metrics.magento1.action.catalog_category_view.count"
@jacquesbh
jacquesbh / README.md
Last active October 25, 2016 04:12
Patch for fulltext search issue after upgrading to Magento 1.9.3.0

How to apply?

Download the patch and put it in your local environment in the root magento directory.

Run this command in your Main magento directory: patch -p0 < fulltext-search.patch.

Then remove the fulltext-search.patch file and commit the changes.

Thanks to .

@jacquesbh
jacquesbh / install-0.0.1.php
Created April 7, 2017 12:48
IESA Install Setup
<?php
try {
$installer = $this;
$installer->startSetup();
// Create quote table
$tableName = $installer->getTable('iesa_quote/quote');
if (!$installer->tableExists($tableName)) {
$table = $conn->newTable($tableName);
@jacquesbh
jacquesbh / function.sh
Last active July 20, 2018 16:19
Self signed certificates generation
# To include in your ~/.bash_profile or other
# You can change the `monsieurbiz.com` and the `MONSIEUR BIZ` in the code.
#
# The generated certificates are compatible with Chrome 58 and use complete SAN section.
#
# See https://www.thesslstore.com/blog/security-changes-in-chrome-58/
# And specially https://groups.google.com/a/chromium.org/forum/#!msg/security-dev/IGT2fLJrAeo/csf_1Rh1AwAJ
function selfsignedssl () {
echo "Country? [FR]"