thomasfrank.se thomasfrank.se

thomasfrank.se

thomasfrank.se

On this web site I write about stuff that interests me, predominantly in the client side web development area - JavaScript, JSON, CSS, usability, design. CoffeeMaker - a LAMP-based tool for CoffeeScript. July 4, 2011. A CoffeeScript compiler/development tool for LAMP that does not require node.js. CoffeeMaker - compiles your CoffeeScript scripts clientside and caches them on the serverside with no need for a node.js installation. Also provides an include command. SQLike - a small query engine. When you r...

http://www.thomasfrank.se/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR THOMASFRANK.SE

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

August

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Sunday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.3 out of 5 with 4 reviews
5 star
1
4 star
3
3 star
0
2 star
0
1 star
0

Hey there! Start your review of thomasfrank.se

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.6 seconds

CONTACTS AT THOMASFRANK.SE

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
thomasfrank.se | thomasfrank.se Reviews
<META>
DESCRIPTION
On this web site I write about stuff that interests me, predominantly in the client side web development area - JavaScript, JSON, CSS, usability, design. CoffeeMaker - a LAMP-based tool for CoffeeScript. July 4, 2011. A CoffeeScript compiler/development tool for LAMP that does not require node.js. CoffeeMaker - compiles your CoffeeScript scripts clientside and caches them on the serverside with no need for a node.js installation. Also provides an include command. SQLike - a small query engine. When you r...
<META>
KEYWORDS
1 thomasfrank se
2 what's up
3 a small test
4 my json editor
5 mysql to json
6 easier than ajax
7 classier json
8 sorting things
9 json stringify revisited
10 flashpaper's api slightly
CONTENT
Page content here
KEYWORDS ON
PAGE
thomasfrank se,what's up,a small test,my json editor,mysql to json,easier than ajax,classier json,sorting things,json stringify revisited,flashpaper's api slightly,when onload fails
SERVER
Apache/2
POWERED BY
PHP/5.4.12
CONTENT-TYPE
iso-8859-1
GOOGLE PREVIEW

thomasfrank.se | thomasfrank.se Reviews

https://thomasfrank.se

On this web site I write about stuff that interests me, predominantly in the client side web development area - JavaScript, JSON, CSS, usability, design. CoffeeMaker - a LAMP-based tool for CoffeeScript. July 4, 2011. A CoffeeScript compiler/development tool for LAMP that does not require node.js. CoffeeMaker - compiles your CoffeeScript scripts clientside and caches them on the serverside with no need for a node.js installation. Also provides an include command. SQLike - a small query engine. When you r...

INTERNAL PAGES

thomasfrank.se thomasfrank.se
1

Developer friendly tabbed browsing: winOpenerFix.js

http://www.thomasfrank.se/theWinOpenerFix.html

Developer friendly tabbed browsing:. May 16, 2008. Cue up boomy speaker voice and threatening dark string sounds:. In the age of tabbed browsing users started to right click links to open them in new tabs not caring if they killed JavaScript apps and thwarted innocent developers. And though some browsers could tell what window had spawned another some just couldn t. Chaos ruled. See this anomoly in action by loading this example. My solution is based on the following steps:. A small html page will load i...

2

CoffeeMaker

http://www.thomasfrank.se/coffeemaker.html

June 4, 2011. I've been playing around with Jeremy Ashkenas' excellent little language CoffeeScript. A bit lately. And I like it a lot! For those of you that haven't tried it - check it out: It's warm and friendly and feels like JavaScript deuglified. (And it compiles to ordinary, quite readable JavaScript.). I wanted to set up a CoffeeScript compiler environment that was between just playing with text/coffeescript. So go there and have a look or downlad a zip file. Set write permissions for the coffeema...

3

JSON stringify revisited

http://www.thomasfrank.se/json_stringify_revisited.html

July 19, 2006. Update May 17, 2008: Small sanitizer added to the toObject-method. The string if it finds any malicious code in it. For even more security: Don't set the includeFunctions. Douglas Crockford, father of the JSON concept. Wrote one of the first stringifiers. For JavaScript. Later Steve Yen at Trim Path wrote a nice improved version. Which I have used for some time. Handle and restore cyclical references. Include the JavaScript code for functions/methods (as an option). Buttons you can remove ...

4

My JSON editor

http://www.thomasfrank.se/json_editor.html

July 5, 2007. The last couple of weeks I've been searching for a good JSON. Editor with a tree view. One that allows you to get a good overview of a JSON structure and make changes to it easily. Yes, I know there's something a bit like that in Firebug. My favourite bug pesticide) and I did actually find a rather promising attempt. By Calm Pear. But I felt neither of these were close enough to home, so I went ahead and wrote my own. Try it out online. Zip file, 26 kB - including images). Click a plus sign...

5

Session variables without cookies

http://www.thomasfrank.se/sessionvars.html

Session variables without cookies. January 20, 2008. Security update May 17, 2008. Sanitizer added to prevent eval(). The flag sessvars.$.prefs.includeFunctions. Now defaults to false. I never liked the JavaScript implementation. Of cookies. The storage space is limited (4 x 20 Kb per domain), the only data format that can be used is a string and the syntax for setting and getting cookies is unnecessarily complicated. Head script type="text/javascript" src="sessionvars.js" /script . /head. On one web pag...

UPGRADE TO PREMIUM TO VIEW 15 MORE

TOTAL PAGES IN THIS WEBSITE

20

LINKS TO THIS WEBSITE

richard-m.blogspot.com richard-m.blogspot.com

Too much recursion: DOM Node Creation Helper Function-updated

http://richard-m.blogspot.com/2006/08/dom-node-creation-helper-function.html

Friday, August 04, 2006. DOM Node Creation Helper Function-updated. Added functionality for text node creation: Just pass in node type as 'textnode' and then the second argument is your text, defaults to. Now you can use it to add styles or attributes to an existing node. Just pass in the node (instead of a type of node). Generic Create Element, $X, exNihilo() R.E.M. 2006. Creates element and/or adds attributes to node and/or adds styles to node. Var exNihilo = $X =function (el,attributes,styles) {.

richard-m.blogspot.com richard-m.blogspot.com

Too much recursion: Quick and Dirty Multiple Inheritence in Javascript

http://richard-m.blogspot.com/2006/07/quick-and-dirty-multiple-inheritence.html

Friday, July 14, 2006. Quick and Dirty Multiple Inheritence in Javascript. This has no checks for overriding properties so last object(arguement) wins:. Function newObject() richard maloney 2006. Usage:send in n objects and it'll return one object inheriting. All the prop and methods of the objects passed in */. Var o=arguments,len=o.length-1,nextObj;. Fprototype =o[0], nextO=o[len 1];. For ( var i in nextO) { f.prototype[i]=nextO[i]; }. Return new f();. Here is some testing code:. Submit to digg.com.

richard-m.blogspot.com richard-m.blogspot.com

Too much recursion: Function.prototype.toEvent (bindAsEventListener)

http://richard-m.blogspot.com/2006/09/functionprototypetoevent.html

Saturday, September 23, 2006. Function.prototype.toEvent (bindAsEventListener). This one keeps this and sends event object as the first argument (no more checking! It also has only one parameter or parameters maybe- the argument/s you want to send to your function. Thats it! Bonus: the last argument is the co-ordinates of the event. Say you want to attach an onclick event to a button with id of 'myBut':. Function doSomTing(e,h,w){. Alert(this.nodeName " " h w);. Return function( ev ){ r[0]= ev= ev event;.

richard-m.blogspot.com richard-m.blogspot.com

Too much recursion: String.prototype.exe part2

http://richard-m.blogspot.com/2006/09/stringprototypeexe-part2.html

Friday, September 22, 2006. String.prototype.exe part2. Think I got it this time:. Executes string as body of function, args = comma seprated arguments. Ex: 'var h=arguments[0]; var w=arguments[1]; alert(h " n" w)'.exe('Hello','World');. String.prototype.exe = function(){. Eval( 'function(){' this '}' ).apply(this,arguments);. Posted by richard.m Perma Link. Bookmark in del.icio.us. Submit to digg.com. Submit to slashdot.com. Comments: Post a Comment. Links to this post:.

richard-m.blogspot.com richard-m.blogspot.com

Too much recursion: Easy Class setTimeout call keeping 'this'

http://richard-m.blogspot.com/2006/08/easy-class-settimeout-call-keeping.html

Sunday, August 20, 2006. Easy Class setTimeout call keeping 'this'. I'm working on an a.p.i called this.js. Its a jquery clone in its functionality. I needed to call functions within the same class, keeping this all the same. (arguments can be passed using the same technique, but it borks in IE6.its better to have the arguments as class members anyway). Here is some code from this.js showing the technique:. ThisfadeIn= function ( speed, delay ){. Thisel.style.visibility='visible';. Submit to digg.com.

richard-m.blogspot.com richard-m.blogspot.com

Too much recursion: Say Your Prayers with Javascript

http://richard-m.blogspot.com/2006/07/say-your-prayers-with-javascript.html

Sunday, July 23, 2006. Say Your Prayers with Javascript. Boy I love Javascript. Now its even saying my prayers for me. :). Heres an app I coded, called Rosary.Beads.v1.0. It says the rosary (a Catholic prayer said on beads) automatically. It features low tech cross-domain 'ajax' counter, 2 images, flash audio, and slightly overcomplicated js. ;). Posted by richard.m Perma Link. Bookmark in del.icio.us. Submit to digg.com. Submit to slashdot.com. Comments: Post a Comment. Links to this post:.

richard-m.blogspot.com richard-m.blogspot.com

Too much recursion: Almost ajax- Synchronous Javascript Remote Scripting

http://richard-m.blogspot.com/2006/07/almost-ajax-synchronous-javascript.html

Thursday, July 13, 2006. Almost ajax- Synchronous Javascript Remote Scripting. Ok, its time I started to do some. Asynchronous JavaScript and XML. Type stuff. Why? Maybe it'll help get me a job. There are already so many libraries and good stuff out there, I'm not going to re-invent the wheel. In the next few weeks I'll look at some good/and/or/popular ajax 'suites'. I got my eye on a few obscure ones; I'll share these after I know what a bit more. Var done is to keep track of setTimeout checks. Im impre...

richard-m.blogspot.com richard-m.blogspot.com

Too much recursion: Confirm User Exit

http://richard-m.blogspot.com/2006/07/confirm-user-exit.html

Sunday, July 23, 2006. Here is some code that alerts users that leaving the page might be a bad idea. It counts the number of attempts to leave the page and stops displaying the message after n attempts. Times ; if(times= 2){window.onbeforeunload=' }. Return 'All your sensitive information (email,posts,Google searches) '. Is gathered by smart routers and warehoused in your namespace';. Window.onbeforeunload= confirmExit;. Posted by richard.m Perma Link. Bookmark in del.icio.us. Submit to digg.com.

typeit.org typeit.org

About TypeIt

http://www.typeit.org/about.htm

TypeIt app for Windows. If you have the need to type anything in a foreign language which has accents and other strange-looking characters, and you only have a US keyboard, your life used to be miserable. You used to have to do one of the following:. Ignore the special characters. Memorize unintuitive keyboard shortcuts such as Alt 0128. Go letter-hunting with the Character Map in Windows or Word. Buy and install third-party text input software. Ctrl    letter. By Chris Veness. When developing the cu...

richard-m.blogspot.com richard-m.blogspot.com

Too much recursion: Higher Order DOM Scripting

http://richard-m.blogspot.com/2006/07/higher-order-dom-scripting.html

Thursday, July 27, 2006. Higher Order DOM Scripting. Here is an example of using functional programming to speed up DOM scripting. We'll take a Quirksmode text select script, (beautiful in its own right), and give it the functional treatment. After the first function call(in this case), or after initialization, what this type of programming gives us is a function that no longer needs any environment object checks. This is as fast as browser programming can get. Else if (document.getSelection){.

UPGRADE TO PREMIUM TO VIEW 56 MORE

TOTAL LINKS TO THIS WEBSITE

66

OTHER SITES

thomasfrank.com thomasfrank.com

THOMAS FRANK / FOTOGRAFIE

thomasfrank.de thomasfrank.de

Thomas Frank - private Homepage

thomasfrank.deviantart.com thomasfrank.deviantart.com

thomasfrank (Thomas Frank) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Deviant for 8 Years. This deviant's full pageview. Last Visit: 18 weeks ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. Why," you ask?

thomasfrank.lnfre.com thomasfrank.lnfre.com

Thomas W. Frank - Real Estate Agent

Thomas W. Frank. Office Number:610-225-7400 X 7180. About Long and Foster. Long and Foster Services. Local and State Government. The Panhandle of Tredyffrin Township. Thomas W. Frank. About Thomas W. Frank. Devon, PA 19333-1305. You can send the listing information for this property to any email. Address by completing the fields below. Click Submit when you are finished. Send this listing to. Thank You. This listing has been emailed to your friend. Search by price and location. Put Prosperity in Your Life.

thomasfrank.org thomasfrank.org

:: Thomas Frank : Paintings

thomasfrank.se thomasfrank.se

thomasfrank.se

On this web site I write about stuff that interests me, predominantly in the client side web development area - JavaScript, JSON, CSS, usability, design. CoffeeMaker - a LAMP-based tool for CoffeeScript. July 4, 2011. A CoffeeScript compiler/development tool for LAMP that does not require node.js. CoffeeMaker - compiles your CoffeeScript scripts clientside and caches them on the serverside with no need for a node.js installation. Also provides an include command. SQLike - a small query engine. When you r...

thomasfrankcarr.com thomasfrankcarr.com

Home

FLEXIBLE, AFFORDABLE, FRIENDLY. A quiet, sleepy Pennsylvania town that has strong roots in the past. I chose to do this series in black and white to accentuate the deep connection with the past that Bellefonte displays. Thomas Frank Carr 814-706-5257.

thomasfranke.net thomasfranke.net

www.thomasfranke.net

Ein faszinierender Roman à ber die Kraft von Geschichten. Und à ber den Autor der grà à ten Geschichte der Welt. Thomas Franke liefert kluge Unterhaltung. Sie berà hrt das Herz und schà rft gleichzeitig den Blick auf die Welt.". Humorvolle, einfà hlsame und tiefgrà ndige Geschichten, verpackt in eine spannende Rahmenhandlung - das ist Thomas Franke. Ein ganz Groà er unter den Geschichtenerzà hlern.". Http:/ www.gerth.de/index.php? Wer zuvor bei Amazon mal schmà kern mà chte - hier der Link:.  Jedes Mal,...

thomasfranke.org thomasfranke.org

Thomas Franke: Features + Reportagen

Moskau Fon: 7 (8) 916 044 9338. Moloch, Märchen, Mythos - Istanbul lterarisch. Deutschlandfunk Sonntagsspaziergang. 25.7.2010. 22:47. Das Prinzip Pussy Riot. Deutschlandfunk Corso, 18.7.2013. 4:00. Tavisupleba - Junge georgische Autoren und das Problem mit der Freiheit (Webversion). SWR2 Literaturen, 28.5.2013. Die Angst war immer da - Russische Künstler nach dem Urteil gegen Pussy Riot. SWR2 Tandem, 11.02.13. Regie: Friederike Wigger. Shalom Berlin 27:36 BBC Radio4 Documentary, 13.6.2011. Vermintes Gelä...

thomasfrankejazz.de thomasfrankejazz.de

Thomas Franke Jazz Trio Herrenberg Saxofon Saxophon

Das Ensemble formierte sich Ende 2002 und kann auf eine Reihe vielbeachteter Auftritte zurückblicken. Höhepunkte waren drei Tourneen nach Istanbul 2005, 2007 und 2009, die auch z.T. die Kompositionen der Band beeinflussten. Ein musikalischer Genuss, nicht nur für eingefleischte Jazz Fans! Thomas Franke Jazz Trio.