Skip to content

Instantly share code, notes, and snippets.

View raftaar1191's full-sized avatar
🏠
Working from home

Deepak Gupta raftaar1191

🏠
Working from home
View GitHub Profile
@aamnah
aamnah / google_api_qrcode.php
Created April 4, 2015 10:05
Generate a QR code using Google Charts API
<?php
// Source: http://stackoverflow.com/questions/5943368/dynamically-generating-a-qr-code-with-php
// Google Charts Documentation: https://developers.google.com/chart/infographics/docs/qr_codes?csw=1#overview
// CHart Type
$cht = "qr";
// CHart Size
$chs = "300x300";
@growdigital
growdigital / installConfig.sh
Last active March 17, 2019 09:29
Install script for brew and cask for Mac OS X
#!/bin/sh
#
# Brew packages
#
brew install git
# brew install node - having npm install issues, so installed manually
brew install wget
brew install homebrew/php/php56
brew install homebrew/php/composer
# brew install task - didn't install with gnutls, had to make from source
@DevinWalker
DevinWalker / Beanstalk_to_GitHub
Created October 9, 2015 17:19
Move Git Repository from Beanstalk to GitHub with full repository history
#Example moving the DPSG Global Library
# 1 Checkout the Beanstalk Repo
git clone --bare [email protected]:/dpsg-global-library.git
# 2 Push into your desired GitHub repo. (Please note that you must create the github repo prior to this step)
git push --mirror [email protected]:codeandtheory/dpsg-global-library.git
@keesiemeijer
keesiemeijer / setup-phpunit.sh
Last active September 5, 2024 01:56
Setup PHPUnit for use in the Local by Flywheel app
#!/usr/bin/env bash
# ===============================================================================
# Script to install PHPUnit in the Local by Flywheel Mac app
# These packages are installed
#
# PHPUnit, curl wget, rsync, git, subversion and composer.
#
# WordPress is installed in the `/tmp/wordpress` directory for use by PHPUnit.
# The WordPress test suite is installed in the `/tmp/wordpress-tests-lib` directory.
@raftaar1191
raftaar1191 / terminal
Last active July 24, 2018 11:52
Terminal PHP standard
phpcs --standard=PHPCompatibility -d date.timezone=Europe/Amsterdam --extensions=php,inc,module,install --runtime-set testVersion 5.3-7.2 -pvs .
@raftaar1191
raftaar1191 / Gulp give
Last active August 9, 2018 06:26
Gulp command to run first time when installing the give and running the gulp
npm install --save-dev del eslint fs-extra gulp gulp-bower gulp-checktextdomain gulp-concat gulp-cssmin gulp-filter gulp-imagemin gulp-livereload gulp-notify gulp-rename gulp-rtlcss gulp-sass gulp-sort gulp-sourcemaps gulp-uglify gulp-watch gulp-wp-pot main-bower-files
@kevinwhoffman
kevinwhoffman / resources-web-developers-designers.md
Last active August 1, 2024 06:59
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

@raftaar1191
raftaar1191 / shell
Created December 5, 2017 05:53
Clone all repo from wordimpress
curl "https://api.github.com/users/wordimpress/repos?page=1&per_page=100" |
grep -e 'git_url*' |
cut -d \" -f 4 |
xargs -L1 git clone
@raftaar1191
raftaar1191 / wp-config.php
Last active February 24, 2023 10:04 — forked from emgk/wp-config.php
WP Debug Configurations
define( 'WP_DEBUG', true );
define( 'SCRIPT_DEBUG', true );
if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'log_errors', 'On' );
@ini_set( 'display_errors', 'Off' );
@ini_set( 'error_reporting', E_ALL );
@ini_set( 'error_log', 'php_error.log' );
@raftaar1191
raftaar1191 / installConfig.sh
Created December 15, 2017 20:49 — forked from growdigital/installConfig.sh
Install script for brew and cask for Mac OS X
#!/bin/sh
#
# Brew packages
#
brew install git
# brew install node - having npm install issues, so installed manually
brew install wget
brew install homebrew/php/php56
brew install homebrew/php/composer
# brew install task - didn't install with gnutls, had to make from source