Things to remember when setting up a WordPress site on an Apache server
/etc/hosts
add local url to 127.0.0.1
/etc/apache2/extra/httpd-vhosts.conf
add vhost config for site
- If Wordpress/bedrock the path needs to be the projectfolder/web
EXPLAIN (ANALYZE) SELECT "entry_slip_selections"."id", "entry_slip_selections"."entry_slip_id", "entry_slip_selections"."option_type", "entry_slip_selections"."result", "entry_slip_selections"."actual_stat_value", "entry_slip_selections"."created_at", "entry_slip_selections"."updated_at", "entry_slip_selections"."option_id", "entry_slip_selections"."result_at", "entry_slip_selections"."metadata", "entry_slip_selections"."admin_graded", "entry_slip_selections"."payout_multiplier", "entry_slip_selections"."reboot_id", "entry_slip_selections"."power_up_id", "entry_slip_selections"."entry_slip_selection_match_group_id", "entry_slip_selections"."handle", "entry_slip_selections"."liability" FROM "entry_slip_selections" WHERE ("entry_slip_selections"."option_type" = $1 AND "entry_slip_selections"."option_id" IN ($2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19, $20, $21, $22, $23, $24, $25, $26, $27, $28, $29, $30, $31, $32, $33, $34, $35, $36, $37, $38, $39, $40, $41, $42, $43, $44, |
Things to remember when setting up a WordPress site on an Apache server
/etc/hosts
add local url to 127.0.0.1
/etc/apache2/extra/httpd-vhosts.conf
add vhost config for site
- If Wordpress/bedrock the path needs to be the projectfolder/web
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 |
{"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" |
# 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 = '' |
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% |
#!/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}) | |
} |