-
This is a numbered list.
-
I'm going to include a fenced code block as part of this bullet:
Code More Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[mark@endpointf2e4f62a tmp]$ find /tmp -maxdepth 1 -user ee1e319c567d43489dd4d3d5443e711f -ls | |
655920 0 -rw-r--r-- 1 ee1e319c567d43489dd4d3d5443e711f ee1e319c567d43489dd4d3d5443e711f 0 Apr 1 05:00 /tmp/info-html.tmp | |
656201 0 -rw-r--r-- 1 ee1e319c567d43489dd4d3d5443e711f ee1e319c567d43489dd4d3d5443e711f 0 Apr 1 05:01 /tmp/info-html1.tmp | |
656482 0 -rw-r--r-- 1 ee1e319c567d43489dd4d3d5443e711f ee1e319c567d43489dd4d3d5443e711f 0 Apr 1 05:01 /tmp/info-html2.tmp | |
656514 0 -rw-r--r-- 1 ee1e319c567d43489dd4d3d5443e711f ee1e319c567d43489dd4d3d5443e711f 0 Apr 1 05:01 /tmp/info-html3.tmp | |
656758 0 -rw-r--r-- 1 ee1e319c567d43489dd4d3d5443e711f ee1e319c567d43489dd4d3d5443e711f 0 Apr 1 05:01 /tmp/info-html4.tmp | |
656903 0 -rw-r--r-- 1 ee1e319c567d43489dd4d3d5443e711f ee1e319c567d43489dd4d3d5443e711f 0 Apr 1 05:01 /tmp/info-html5.tmp | |
659716 0 -rw-r--r-- 1 ee1e319c567d43489dd4d3d5443e711f ee1e319c567d43489dd4d3d5443e711f 0 Apr 1 05:01 /tmp/i |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Implements hook_drush_command(). | |
*/ | |
function mymodule_drush_command() { | |
$items['text-analysis'] = array( | |
'description' => 'Analyse text.', | |
'aliases' => array('ta'), | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Version: v1.0.0-pre.2-395-ge4af09e | |
// Last commit: e4af09e (2013-01-13 21:57:54 -0800) | |
(function() { | |
/*global __fail__*/ | |
/** | |
Ember Debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Version: v1.0.0-pre.2-398-g1051f2f | |
// Last commit: 1051f2f (2013-01-15 10:06:03 -0800) | |
(function() { | |
/*global __fail__*/ | |
/** | |
Ember Debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Version: v1.0.0-pre.2-395-ge4af09e | |
// Last commit: e4af09e (2013-01-13 21:57:54 -0800) | |
(function() { | |
/*global __fail__*/ | |
/** | |
Ember Debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sites/all/modules/contrib/simplesamlphp_auth/simplesamlphp_auth.module b/sites/all/modules/contrib/simplesamlphp_auth/simplesamlphp_auth.module | |
index 05ceba3..f9b7d3f 100644 | |
--- a/sites/all/modules/contrib/simplesamlphp_auth/simplesamlphp_auth.module | |
+++ b/sites/all/modules/contrib/simplesamlphp_auth/simplesamlphp_auth.module | |
@@ -159,6 +159,11 @@ function simplesamlphp_auth_init() { | |
global $_simplesamlphp_auth_saml_config; | |
global $_simplesamlphp_auth_saml_version; | |
+ // Bail on pages that aren't concerned with user login. | |
+ if (arg(0) !== 'saml_login' && arg(0) !== 'user' && arg(0) !== 'my-account') { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ----------------------------------------------------------------------- | |
# Installs Ruby 2.3 using rbenv/ruby-build on the Raspberry Pi (Raspbian) | |
# | |
# Run from the web: | |
# bash <(curl -s raw_script_url_here) | |
# ----------------------------------------------------------------------- | |
# Set up variables |
OlderNewer