Skip to content

Instantly share code, notes, and snippets.

View codebycliff's full-sized avatar

Cliff Braton codebycliff

View GitHub Profile
@codebycliff
codebycliff / ApacheWordPressSites.md
Created March 25, 2021 17:44 — forked from zachwright/ApacheWordPressSites.md
Setting up Apache WordPress Sites

Apache Server WordPress Sites

Things to remember when setting up a WordPress site on an Apache server

First add url to hosts

/etc/hosts add local url to 127.0.0.1

Second add virtual host

/etc/apache2/extra/httpd-vhosts.conf add vhost config for site - If Wordpress/bedrock the path needs to be the projectfolder/web

@codebycliff
codebycliff / Dangerfile
Created May 27, 2020 18:45
Dangerfile for structure.sql
migration_added = git.added_files.include?('db/migrate/*.rb')
schema_modified = git.modified_files.include?('db/structure.sql')
warn 'Migration has been added, but structure.sql has not been modified' if
migration_added && !schema_modified
warn 'Schema has been modified, but no migration has been added' if
schema_modified && !migration_added
@codebycliff
codebycliff / cloudSettings
Created May 10, 2019 18:57 — forked from tegandbiscuits/cloudSettings
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-04-03T15:00:53.348Z","extensionVersion":"v3.2.7"}
begin
require "bundler/inline"
rescue LoadError => e
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler"
raise e
end
gemfile(true) do
source "https://rubygems.org"
@codebycliff
codebycliff / Rakefile
Created January 27, 2017 17:07 — forked from zach-taylor/Rakefile
Rake script to migrate all repos from Bitbucket org to Github org
# gem install bitbucket_rest_api
# gem install octokit
require 'bitbucket_rest_api'
require 'octokit'
task :migrate do
bitbucket = BitBucket.new login: '', password: ''
bitbucket_owner = ''
github = Octokit::Client.new login: '', password: ''
github_org = ''
@codebycliff
codebycliff / GetHashMapResource.java
Created April 23, 2014 00:03
Android get hashmap resource from xml.
public static Map<String, String> getHashMapResource(Context c, int hashMapResId) {
Map<String, String> map = null;
XmlResourceParser parser = c.getResources().getXml(hashMapResId);
String key = null, value = null;
try {
int eventType = parser.getEventType();
while (eventType != XmlPullParser.END_DOCUMENT) {
package com.xxx.xxx.preference;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import android.content.Context;
import android.content.res.TypedArray;
@rem Do not use "echo off" to not affect any child calls.
@setlocal
@rem Get the abolute path to the parent directory, which is assumed to be the
@rem Git installation root.
@for /F "delims=" %%I in ("%~dp0..") do @set git_install_root=%%~fI
@set PATH=%git_install_root%\bin;%git_install_root%\mingw\bin;%PATH%
@if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH%
@if not exist "%HOME%" @set HOME=%USERPROFILE%
@codebycliff
codebycliff / Freshmeat.sh
Created January 20, 2014 00:08
Bash functions for interacting with the freshmeat API.
#!/bin/bash
FRESHMEAT_TOKEN=xtJ4zwGPM14iBmKnledd
DATA="auth_code=$FRESHMEAT_TOKEN"
ROOT="http://freshmeat.net"
function get {
[ -z "$1" ] && echo "Error: Must supply request path." && return
echo $(curl -G -d $DATA $ROOT/${1})
}
@codebycliff
codebycliff / PocketBookmarklet.js
Created January 13, 2014 21:32
The pocket bookmarklet modified to add the tag "archive" automatically.
var PKT_D = "getpocket.com";
var PKT_STATUS = "3";
try {
if (ISRIL_TEST) {}
} catch (e) {
ISRIL_TEST = false
}
var PKT_BM_OVERLAY = function (e) {
this.inited = false;
this.saveTagsCallback = e.saveTagsCallback