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
# For complete documentation of this file, please see Geany's main documentation | |
[styling] | |
# foreground;background;bold;italic | |
default=0x000000;0xf3f7f0;false;false | |
error=0xff0000;0xf3f7f0;false;false | |
commentline=0x575757;0xf3f7f0;false;false | |
number=0x524a24;0xf3f7f0;true;false | |
word=0x000000;0xf3f7f0;true;false | |
string=0xff0000;0xf3f7f0;false;false | |
character=0xcf0000;0xf3f7f0;false;false |
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
DBIx::Class::ResultSet::all(): DBI Exception: DBD::SQLite::db prepare_cached failed: | |
ambiguous column name: ruleset.phase_description [for Statement " | |
SELECT me.entity as entity, phase, game.id as gid, ruleset.phase_description as pd | |
FROM Player_to_game me | |
JOIN Game game ON game.id = me.gid | |
JOIN Ruleset ruleset ON ruleset.id = game.ruleset | |
LEFT JOIN Player_to_game player_to_game ON player_to_game.gid = game.id | |
LEFT JOIN Player_to_game player_to_game_2 ON player_to_game_2.gid = game.id | |
JOIN Ruleset ruleset ON ruleset.id = game.ruleset |
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
#!/usr/bin/perl | |
use Modern::Perl; | |
use Glib qw/TRUE FALSE /; | |
use GStreamer qw/-init GST_TIME_FORMAT GST_SECOND/; | |
my $filename = shift @ARGV; | |
die 'nofile' unless $filename; | |
use Cwd 'abs_path'; | |
$filename = abs_path $filename; |
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
... | |
FITS.pm... 6 functions | |
Pic.pm... 7 functions | |
Misc.pm... 11 functions | |
Dumper.pm... 9 functions | |
FastRaw.pm... 4 functions | |
NDF.pm... 3 functions | |
found 1155 functions |
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
#!/usr/bin/perl | |
use warnings; | |
use strict; | |
use POE; | |
use POE::Component::IRC::State; | |
use constant CHANNEL => '#pdl'; | |
# Load the current piddlebot functions: | |
use piddlebot; | |
my $last_modified = (stat('piddlebot.pm'))[9]; |
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 | |
rm -r /tmp/frames | |
mkdir /tmp/frames | |
ln /home/zach/projects/Desulfurize/screenshots/*png /tmp/frames/ | |
COUNTER=0 | |
for FILE in `ls /tmp/frames`; do | |
mv /tmp/frames/$FILE /tmp/frames/`printf "%04d" $COUNTER`.png | |
COUNTER=$(($COUNTER+1)) | |
done |
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
zach@zach-foo:~/codestuff/Terasology$ ./gradlew run | |
:extractLinuxNatives UP-TO-DATE | |
:extractMacOSXNatives UP-TO-DATE | |
:extractWindowsNatives UP-TO-DATE | |
:extractNatives UP-TO-DATE | |
:compileJava UP-TO-DATE | |
:compileGroovy UP-TO-DATE | |
:processResources UP-TO-DATE | |
:classes UP-TO-DATE | |
:jar UP-TO-DATE |
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
# This example uses b2DistanceJoint to simulate a pendulum. | |
use strict; | |
use warnings; | |
use Box2D; | |
use SDL; | |
use SDL::Event; | |
use SDL::Video; | |
use SDLx::App; | |
my $gst_handle; |
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
#!/usr/bin/env perl | |
use warnings; | |
use strict; | |
use PDL; | |
my $a = ones(2,2); | |
$a->inplace->minus($a*2,0); | |
print $a; | |
my $b = ones(2,2); |
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
#!/usr/bin/env perl | |
use Mojolicious::Lite; | |
# Documentation browser under "/perldoc" | |
plugin 'PODRenderer'; | |
get '/' => sub { | |
my $self = shift; | |
$self->render('index', url => $self->req->url); | |
}; |
OlderNewer