Skip to content

Instantly share code, notes, and snippets.

View cyrusdavid's full-sized avatar

Cyrus David cyrusdavid

  • Philippines
View GitHub Profile
.PKGINFO
.INSTALL
.MTREE
lib/
lib/firmware/
lib/firmware/8188eu/
lib/firmware/8188eu/rtl8188eufw.bin
usr/
usr/src/
usr/src/8188eu-v4.1.4_6773/
@cyrusdavid
cyrusdavid / cmd.sh
Created March 20, 2015 09:17
Generate CSR for StartSSL
openssl req -nodes -newkey rsa:2048 -keyout myserver.key -out server.csr
@cyrusdavid
cyrusdavid / portal.pot
Last active August 29, 2015 14:18
Portal theme translations file
# Copyright (C) 2015 MyThemeShop
# This file is distributed under the same license as the Portal by MyThemeShop package.
msgid ""
msgstr ""
"Project-Id-Version: Portal by MyThemeShop 1.1\n"
"Report-Msgid-Bugs-To: http://wordpress.org/support/theme/portal\n"
"POT-Creation-Date: 2015-04-10 14:57:14+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
# Copyright (C) 2015 MyThemeShop
# This file is distributed under the same license as the MagXP package.
msgid ""
msgstr ""
"Project-Id-Version: MagXP 2.0\n"
"Report-Msgid-Bugs-To: http://wordpress.org/support/theme/mts_magxp\n"
"POT-Creation-Date: 2015-04-16 02:28:22+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

Keybase proof

I hereby claim:

  • I am vohof on github.
  • I am vohof (https://keybase.io/vohof) on keybase.
  • I have a public key whose fingerprint is A68B 6553 483A 3B0F 7021 4F9C 0E89 8AFF C428 7C68

To claim this, I am signing this object:

@cyrusdavid
cyrusdavid / hide-elementor-license-notice.php
Last active January 7, 2025 05:52
Hide the "Your License Will Expire in" notice
<?php
if (class_exists('\ElementorPro\Plugin')) {
add_action('admin_init', function() {
remove_action('admin_notices', [\ElementorPro\Plugin::instance()->license_admin, 'admin_license_details'], 20);
});
}