Skip to content

Instantly share code, notes, and snippets.

View acotie's full-sized avatar

Akiko Yokoyama acotie

View GitHub Profile
if has("gui_running")
set fuoptions=maxvert,maxhorz
au GUIEnter * set fullscreen
endif
<cffunction name="QueryToStruct" access="private" returntype="struct" output="no" hint="I convert a row of a query to a struct.">
<cfargument name="query" type="query" required="yes">
<cfargument name="rownum" type="numeric" default="1">
<cfset var result = StructNew()>
<cfloop index="col" list="#query.ColumnList#">
<cfset result[col] = query[col][rownum]>
</cfloop>
<mx:Script>
<![CDATA[
import flash.net.*;
public function openNewWindow(event:MouseEvent):void {
var u:URLRequest = new URLRequest("http://www.adobe.com/flex");
navigateToURL(u,"_self");
}
]]>
</mx:Script>
<cffunction name="QueryToStructArray" access="private" returntype="array" output="no" hint="convert to Array of query to Struct.">
<cfargument name="query" type="query" required="yes">
<cfargument name="rownum" type="numeric" default="1">
<cfset var local = StructNew()>
<cfset local.result = ArrayNew(1)>
<cfif arguments.query.RecordCount gte 1>
<cfloop index="local.i" from="1" to="#arguments.query.RecordCount#">
<cffunction name="query2array" access="public" output="false" returntype="array" displayname="query2array" hint="query2array (Values only)">
<cfargument name="Querys" type="query" required="yes" />
<cfset var aResults = arrayNew(1)>
<cfloop from="1" to="#arguments.Querys.recordCount#" index="i">
<cfloop list="#arguments.Querys.columnList#" index="columnName">
<cfset aResults[i] = arguments.Querys[columnName][i]>
</cfloop>
</cfloop>
<cfscript>
objDate = createobject("java", "java.util.Date");
objCalendar = createobject("java", "java.util.Calendar");
//theDate = now();
//calendar.set(datepart("yyyy",theDate),datepart("m",theDate),datepart("d",theDate),datepart("h",theDate),datepart("n",theDate),datepart("s",theDate));
</cfscript>
<cfdump var="#objDate#">
<cfdump var="#objCalendar#">
sudo port -v selfupdate
sudo port -v sync
sudo port install wget tree proctools git-core
sudo port install nkf
sudo port install subversion
sudo port install vim
sudo port install emacs
sudo port install ImageMagick +lcms +jpeg2
sudo port install graphviz
@acotie
acotie / bench.pl
Created October 27, 2010 06:19 — forked from yappo/bench.pl
#! /usr/bin/perl
use common::sense;
use Benchmark qw/cmpthese/;
use Perl6::Say;
say $^V;
my $datetime = '20101028120000';
cmpthese(1000000, {
unpack => sub {
structure of Flaskr.
├── README
├── TODO
├── flaskr.db
├── flaskr.py
├── flaskr.pyc
├── flaskr_tests.py
├── schema.sql
$ sudo cpan
Password:
CPAN is the world-wide archive of perl resources. It consists of about
300 sites that all replicate the same contents around the globe. Many
countries have at least one CPAN site already. The resources found on
CPAN are easily accessible with the CPAN.pm module. If you want to use
CPAN.pm, lots of things have to be configured. Fortunately, most of
them can be determined automatically. If you prefer the automatic
configuration, answer 'yes' below.