Skip to content

Instantly share code, notes, and snippets.

View amrikarisma's full-sized avatar
💭
I may be slow to respond.

Amri amrikarisma

💭
I may be slow to respond.
View GitHub Profile
@amrikarisma
amrikarisma / docker-compose.yml
Created August 11, 2022 07:30
Run legacy PHP 5.3 and MySQL 5.1 on Docker
# Run legacy PHP 5.3 and MySQL 5.1 on Docker
version: '3.7'
services:
php:
container_name: 'php-5.3.29-apache'
depends_on:
- mysql
image: php:5.3.29-apache
volumes:
- ./www:/var/www
@amrikarisma
amrikarisma / functions.php
Created July 19, 2022 12:13
Remove or hide all about WP Comments from Dashboard Admin
<?php
// Removes from admin menu
add_action( 'admin_menu', 'my_remove_admin_menus' );
function my_remove_admin_menus() {
remove_menu_page( 'edit-comments.php' );
}
// Removes from post and pages
add_action('init', 'remove_comment_support', 100);
function remove_comment_support() {
@amrikarisma
amrikarisma / functions.scss
Last active July 19, 2022 12:14
auto mix color on hover
// Shade a color: mix a color with black
// Example : shade-color($color__btn-primary, 10%)
@function shade-color($color, $weight) {
@return mix(black, $color, $weight);
}
@amrikarisma
amrikarisma / hide-plugin-network.php
Last active July 18, 2022 18:14
Hide WordPress Plugin from table list (WP Multisite)
<?php
function mu_hide_plugins_network( $plugins ) {
// let's hide akismet
if( in_array( 'akismet/akismet.php', array_keys( $plugins ) ) ) {
unset( $plugins['akismet/akismet.php'] );
}
return $plugins;
}
add_filter( 'all_plugins', 'mu_hide_plugins_network' );
@amrikarisma
amrikarisma / hide-plugin.php
Last active July 18, 2022 18:14
Hide WordPress Plugin from table list
<?php
function hide_plugin_kerjadev() {
global $wp_list_table;
$hidearr = array('plugin-directory/plugin-file.php');
$myplugins = $wp_list_table->items;
foreach ($myplugins as $key => $val) {
if (in_array($key,$hidearr)) {
unset($wp_list_table->items[$key]);
}
}
@amrikarisma
amrikarisma / spintax.php
Created September 3, 2017 15:31 — forked from irazasyed/spintax.php
PHP: Text Spinner Class - Nested spinning supported.
<?PHP
/**
* Spintax - A helper class to process Spintax strings.
* @name Spintax
* @author Jason Davis - https://www.codedevelopr.com/
* Tutorial: https://www.codedevelopr.com/articles/php-spintax-class/
*/
class Spintax
{
public function process($text)

Keybase proof

I hereby claim:

  • I am amrikarisma on github.
  • I am amrikarisma (https://keybase.io/amrikarisma) on keybase.
  • I have a public key ASDb915jfT_Z5T9VcaqKVFLb3tCONatTc4BQ_mL1BqNXGgo

To claim this, I am signing this object:

<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:text="Guest List"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />