Skip to content

Instantly share code, notes, and snippets.

View ArRolin's full-sized avatar
🌍
Remote Dev

G M Ashiqur Rahaman ArRolin

🌍
Remote Dev
View GitHub Profile
@ArRolin
ArRolin / #1 Gilroy F-O-N-T.png
Last active April 21, 2020 14:05 — forked from femicodes/06.png
Gilroy font
#1 Gilroy F-O-N-T.png
@ArRolin
ArRolin / Contract Killer 3.md
Created July 5, 2019 17:27 — forked from tony-caffe/Contract Killer 3.md
The latest version of Bytes Unlimted ‘killer contract’ for web professionals

Contract Killer

The popular open-source contract for web professionals by Stuff & Nonsense

  • Originally published: 23rd December 2008
  • Revised date: March 15th 2016
  • Revised by Bytes Unlimited : June 14th 2017

@ArRolin
ArRolin / themeforest-contract.md
Created July 5, 2019 17:23 — forked from primozcigler/themeforest-contract.md
Modified version of @malarkey's Killing Contract for use for the ThemeForest cooperation (more dev to dev team than dev to client).

Contract for developing a Drupal theme for selling on the ThemeForest

Between us: [ProteusNet d.o.o., Rudarska cesta 11, 8281 Senovo, Slovenia, EU] and you: [partner]

Summary:

We’ll always do our best to fulfil the scope of this cooperation, but it’s important to have things written down so that we both know what’s what, who should do what and when, and what will happen if something goes wrong. In this contract you won’t find any complicated legal terms or long passages of unreadable text. We’ve no desire to trick you into signing something that you might later regret. What we do want is what’s best for both parties, now and in the future.

So in short;

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH

Keybase proof

I hereby claim:

  • I am arrolin on github.
  • I am arrolin (https://keybase.io/arrolin) on keybase.
  • I have a public key ASDHvwJQncRkrvzHABKGKoVTxGvah-UL5fBVfeGSl0yBEwo

To claim this, I am signing this object:

@ArRolin
ArRolin / acf_href.php
Created August 8, 2018 02:11 — forked from dnavarrojr/acf_href.php
Create an HREF link with a shortcode using ACF fields
<?php
/*****************************************************************************************************************************************************
*
* Usage: [acf_href href_before="mailto:" href="acf:field_name" text="acf:field_name"]
*
* acf:fieldname will retrieve the value of the specified "fieldname" and use that.
* get:url_variable will grab a variable from the URL and use that.
*
* [acf_href href="acf:my_link" text="Link to web site"]
@ArRolin
ArRolin / custom-domain-localhost-xampp
Created February 10, 2018 14:45 — forked from oozman/custom-domain-localhost-xampp
How to add a custom domain name on your localhost using XAMPP. Codes are based on Windows, but Step 2 onwards are pretty much applicable on other operating system.
Step 1:
Go to: C:\Windows\System32\Drivers\etc\hosts
And add this to the bottom of the file:
=============
127.0.0.1 your.domain.com
=============
Step 2:
Go to [your XAMPP directory]/apache/conf/httpd-xampp.conf
@ArRolin
ArRolin / mail css
Created January 18, 2018 09:13 — forked from shaikotahmed19/mail form.html
mail ajax
/*mail*/
.cf-msg {
padding: 10px;
text-align: center;
margin-bottom: 30px;
}
.cf-msg p {
margin-bottom: 0;
@ArRolin
ArRolin / resources-web-developers-designers.md
Created November 1, 2017 06:19 — forked from kevinwhoffman/resources-web-developers-designers.md
Resources for Web Developers and Designers

Resources for Web Developers and Designers

This is an incomplete list of resources including courses and individuals who publish content that has helped me grow as a web developer and designer. Many of these resources are WordPress-specific as that is my current area of specialization. This list will grow over time. If you've got something to add, send me a link @kevinwhoffman and I'll check it out!

Course Providers

@ArRolin
ArRolin / functions.php
Created February 6, 2017 16:56 — forked from EmranAhmed/functions.php
Hook Info. Get Action hook info. What functions are hooked to an action / filter in WordPress? How can I see all the actions attached to an "add_action" hook?
<?php
if ( ! function_exists( 'hippo_plugin_hook_info' ) ):
function hippo_plugin_hook_info( $hook_name ) {
global $wp_filter;
$docs = array();
$template = "\t - %s Priority - %s.\n\tin file %s #%s\n\n";
echo '<pre>';