blog.wpde.org
WordPress Deutschland News
http://blog.wpde.org/page/72
Weitere Informationen und den Download findest du auf der offiziellen Anlaufstelle de.wordpress.org. Montag, den 13. Dezember 2004 / Kommentieren. Erklärt im Tutorial „ Faking Multiple Templates in WordPress. 8220; wie in der index.php verschiedene Temlpates eingebunden werden können. Samstag, den 11. Dezember 2004 / Kommentieren. Problem in 1.2.1 und 1.3.x. Die folgenden Zeilen auskommentiert oder entfernt werden:. Freitag, den 10. Dezember 2004 / Kommentieren. ReBlog Plugin 1.0. Flickr Gallery 0.4.
bhansley.blogspot.com
bhansley: Cascading Drop-downs in Rails
http://bhansley.blogspot.com/2007/01/cascading-drop-downs-in-rails.html
Views of a Geek. Monday, January 22, 2007. Cascading Drop-downs in Rails. We were looking for a solid example of cascading dynamic drop-down select lists to use in our rails application, and found the web sorely lacking in solid examples. We found a very good start at http:/ www.railsweenie.com/forums/2/topics/767. There, but make sure this line is in your standard layout. rhtml. Add this function def to application helper. rb. Def update select box( target dom. Id, collection, options={} ). Add somethin...
re-factor.blogspot.com
Re: Factor: Genuine Sieve of Eratosthenes
http://re-factor.blogspot.com/2015/06/genuine-sieve-of-eratosthenes.html
Factor: the language, the theory, and the practice. Monday, June 8, 2015. Genuine Sieve of Eratosthenes. Iain Gray posted on the mailing list. About a paper called the Genuine Sieve of Eratosthenes. By Melissa O'Neill, a Professor of Computer Science at Harvey Mudd College. It begins with a discussion about some clever looking Haskell code that is just trial division. And not the Sieve of Eratosthenes. As a followup to the three versions that I posted about recently. And filter the next. 2 3 5 7 } product.
re-factor.blogspot.com
Re: Factor: December 2014
http://re-factor.blogspot.com/2014_12_01_archive.html
Factor: the language, the theory, and the practice. Thursday, December 18, 2014. Is relatively dated now, but when it was first released in 1991, it had a number of modern features that we would later enjoy in the World Wide Web. In particular, in RFC 1436. It lists these features:. A file-like hierarchical arrangement that would be familiar to users. A system that can be created quickly and inexpensively. Extending the file system metaphor, such as searches. Url { [ host ] [ port 70. 0 - plain text.
re-factor.blogspot.com
Re: Factor: February 2015
http://re-factor.blogspot.com/2015_02_01_archive.html
Factor: the language, the theory, and the practice. Saturday, February 28, 2015. A couple days ago, Verizon posted a press release. Complaining about the FCC's recent changes to Internet regulations. Normally, I wouldn't really bother with things like this, but they posted their statement using morse code. While it would be easy enough to read their English version. I thought it would be fun to decode it using Factor. Step 1. Download the blog post and parse the HTML. Subscribe to: Posts (Atom). Youre sm...
ericsal.com
Prototype and Javascript in Ruby on Rails | Eric Salczynski
http://www.ericsal.com/2009/04/prototype-and-javascript-in-ruby-on-rails
Web developer, graphic designer, wanna-be marketing guy. Prototype and Javascript in Ruby on Rails. I am a purist. Or obsessive compulsive. Or maybe just irrational. But I H-A-T-E inline javascript. Unobtrusive javascript (like SWFObject. Or its predecessor, UFO. Is the only way to go in my opinion. Seriously. Keep that stuff out of my markup. This is why I love the Prototype.js framework. Now, I know that all of these helper methods exist to make implementing neato “ Web 2.0. Its extension of the DOM.
darrennewton.com
Sour Mash: getting your Clojure into a JAR | Miscellanea by Darren Newton
http://www.darrennewton.com/2015/03/08/sour-mash-getting-your-clojure-into-a-jar
Code, design and cultural ephemera. Mar 8, 2015. Sour Mash: getting your Clojure into a JAR. This weekend I decided to finally bite the bullet and deploy one of my Clojure. Apps as a JAR. I thought to myself,. There are great tutorials for this online. Yes, yes there are, except none of them worked for me and in fact did lead to the consumption of some rye whiskey. What are we doing? This post will walk through distilling a small Compojure. Web-app ( codegumi.com. Into a nice JAR. For deployment on a VPS.
delectat.de
DELECTAT.de ★ Design Portfolio & Personal Playground !
http://www.delectat.de/sifr
IFR Headline 1 Test. 8212; site admin @ 12:00 am Edit This. This is a static version of the template WordPress. Uses from its default 1.2.1 installation. It includes a sample entry utlizing many common. Elements in order to make developing stylesheets easier. This allows you to create the design of a WordPress site without having to work live, or even install the program! Dt : Definition Term. H4 : Heading Text - abcdefghijklmnopqrstuvwxyz. H5 : Heading Text - abcdefghijklmnopqrstuvwxyz. Strong : strong ...
re-factor.blogspot.com
Re: Factor: Text-to-PDF
http://re-factor.blogspot.com/2010/10/text-to-pdf.html
Factor: the language, the theory, and the practice. Friday, October 15, 2010. In this article, we will be building step-by-step a program for converting text files into PDF. The PDF specification is at version 1.7 (approximately 750 pages plus some supplements) and is available for download. From the Adobe website. The entire solution listed below is approximately 140 lines of code, and compares favorably to a 600 line Python version. And a 450 line C version. D 0 obj n. Creator (created with Factor).
ericsal.com
User authentication and authorization in a Rails application | Eric Salczynski
http://www.ericsal.com/2009/04/user-authentication-and-authorization-in-a-rails-application
Web developer, graphic designer, wanna-be marketing guy. User authentication and authorization in a Rails application. So today, despite battling a nasty sinus infection-like cold, I decided to get started on setting up SA.org, a project I’m working on with @ TopherBook. By “user system” I mean the part of your Rails app that manages user registration, login, logout, etc — the authentication. Part of the system. In the case of SA, my user system must also include authorization. I turned to @ mileszs.