Search Results For “Tag:programming” - # - rss
JR:
Installing a Perl Module
- perl -MCPAN -e 'install HTML::Template'
OR
Download module to install.
tar -zxvf HTML-Template-2.8.tar.gz
(cd into the module directory)
perl Makefile.PL
make
make test
make install
#perl - #programming - #howto
- Jan 13, 2015
JR:
Cross-Origin Resource Sharing header
- for client-side javascripts that get downloaded from server that want to access an API on another server.
#api - #web - #programming - #javascript
- Jan 09, 2015
JR:
Creating a programming language
- https://news.ycombinator.com/item?id=8831689
#programming
- Jan 03, 2015
JR:
Programming languages for long-term projects
- Perl did not even get mentioned. If it did, it would probably be given the same response as PhP.
https://news.ycombinator.com/item?id=8818926
Discussing programming languages is always a good way to start a flame-war. And naturally, someone wil...
more>>
4 min read
- Dec 31, 2014
- #programming #history #humor
JR:
Node.js and JSON
- #programming - #nodejs - #json
- Dec 29, 2014
JR:
Flakes client-side JavaScript framework
- Flakes is an Open Source Design Frontend Framework that serves as a foundation for internal business applications.
Flakes is a combination of CSS Libraries, JavaScript Libraries and Design files that serve as a foundation. Flakes gives priority to ...
more>>
- Dec 18, 2014
- #javascript #css #html #framework #design #programming #todo #testing
JR:
Ember.js posts to read
- Building a test app
Building an App with Ember.js
https://www.youtube.com/watch?v=Ga99hMi7wfY
In 7 minutes learn to use jQuery Ajax promises with Ember.js.
https://www.youtube.com/watch?v=0MHwsje0tO4
https://github.com/til...
more>>
- Dec 16, 2014
- #javascript #programming #ember
JR:
Regular Expressions with JavaScript
- no \s like in perl, so : use [\s\S]* in regex
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions?redirectlocale=en-USredir...
more>>
1 min read
- Dec 04, 2014
- #regex #javascript #programming
JR:
Don't vote, can't complain?
- Intelligent people can occasionally sound like imbeciles.
It's like they say, if you don't vote, you can't really argue with the outcome.
If you dont vote, then everything bad our government does is your fault, and you dont get to complain...
more>>
- Dec 04, 2014
- #programming #politics #moronism
JR:
Perl programming tools to test
- HTTP::Engine
Dancer
PSGI/Plack
Starman
#perl - #programming - #todo
- Nov 14, 2014
JR:
Run perl script as a daemon
- #!/usr/bin/perl
use strict;
use warnings;
use Proc::Daemon;
Proc::Daemon::Init;
my $continue = 1;
$SIG{TERM} = sub { $continue = 0 };
while ($continue) {
a href=/cgi-bin/junco.pl/tag/do#do/a stuff
}
#perl - #programming -...
more>>
- Nov 14, 2014
- #do #perl #programming #howto
JR:
Node.js methods to learn
- when = require('when')
when.reject()
when.resolve()
when.defer()
require('path')
path.resolve(...)
.promise
.req.session.user
#nodejs - #programming
- Nov 11, 2014
JR:
Learning Node.JS Programming
- https://github.com/jacwright/date.format
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference
https://github.com/request/request
https://github.com/cliss/camel/blob/master/camel.js
https://github.com/ericf/express-handlebars
No...
more>>
5 min read
- Nov 10, 2014
- #nodejs #programming #javascript #howto
JR:
My current web sites as of November 2014
- - junco
- jquery mobile web app
- parula
- kinglet
- grebe
- grebe
- grebe
Test sites:
- diff ports
#programming
- Nov 05, 2014