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
fs = require 'fs' | |
{exec} = require 'child_process' | |
util = require 'util' | |
appFiles = [ | |
{ | |
destination: "path/to/public/scripts/", | |
join: true | |
output: "application.js" | |
files: [ |
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 | |
TODOTXT_VERBOSE=0 | |
DEFAULT_NOTES_ACTION="listnotes" | |
listnotes() { | |
TODO_LIST_NOTES="ls $TODO_NOTES_DIR | xargs -0 basename | sed -e 's/\.[a-z]\{3\}$//'" | |
if [ ! -z $TODO_NOTES_PROJECT ] | |
then | |
TODO_LIST_NOTES+=" | grep -i $TODO_NOTES_PROJECT" |
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 if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
/** | |
* CodeIgniter Native Session Library | |
* | |
* @package Session | |
* @subpackage Libraries | |
* @category Session | |
* @author Topic Deisgn | |
*/ |
NewerOlder