giffmex.tiddlyspot.comTiddlyWiki in Action - A showcase of TiddlyWikis used creatively around the world

giffmex.tiddlyspot.com Profile

Giffmex.tiddlyspot.com is a subdomain of Tiddlyspot.com, which was created on 2006-02-07,making it 19 years ago. It has several subdomains, such as jeffchen.tiddlyspot.com twhelp.tiddlyspot.com , among others.

Discover giffmex.tiddlyspot.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

giffmex.tiddlyspot.com Information

HomePage size: 502.965 KB
Page Load Time: 0.50185 Seconds
Website IP Address: 45.79.184.152

giffmex.tiddlyspot.com Similar Website

Together Blog – from Nova Natural – Ideas for Living Creatively with Children
blog.novanatural.com
World Time Zone - Current time around the World and standard world time zones map of the world
m.worldtimezone.com
Rainforest Action Network - Community Action Grants - Community Action Grants
grants.ran.org
Showcase Honda Direct Store | Showcase Honda
express.showcasehonda.com
Community Action Development Bethlehem | Community Action Lehigh Valley
cadcb.caclv.org
Around Southeastern Find Out Whats Going on Around
aroundse.sebts.edu
TiddlyWiki - Download
tiddlywiki.en.lo4d.com
TiddlyVault - An index of TiddlyWiki extensions from http://www.giffmex.org
tiddlyvault.tiddlyspot.com
Chocolight Creative – Creating Creatively
creative.chocolightbd.com
Credo Action - Taking Action for a Better World
act.credoaction.com
Used Mercedes Benz Parts - Harouts Used Auto Parts Used
wwww.haroutr.com
Outdoor The World - Outdoor Activties Around The World
dev.outdoortheworld.com
Tzu Chi Journals – Uncover the wisdom of compassion in action in the U.S. and around the world.
journal.tzuchi.us
Creatively Blog | Work and Live
blog.creatively.life
Showcase Realty, LLC - Showcase Realty
homes.showcaserealty.net

giffmex.tiddlyspot.com PopUrls

TiddlyWiki in Action - A showcase of TiddlyWikis used ...
https://giffmex.tiddlyspot.com/

giffmex.tiddlyspot.com Httpheader

Server: nginx/1.25.5
Date: Tue, 14 May 2024 17:01:01 GMT
Content-Type: text/html; charset=utf-8
Content-Length: 508885
Connection: keep-alive
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block
x-content-type-options: nosniff
x-download-options: noopen
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
etag: XXW7TMHBPS7P6MzQqNuP2w==
cache-control: max-age=0, private, must-revalidate
x-request-id: 6efc202c-8b17-4f66-9448-9e7a1270a0e8
x-runtime: 0.029329

giffmex.tiddlyspot.com Meta Info

content="text/html;charset=utf-8" http-equiv="Content-Type"/

giffmex.tiddlyspot.com Ip Information

Ip Country: United States
City Name: Cedar Knolls
Latitude: 40.8229
Longitude: -74.4592

giffmex.tiddlyspot.com Html To Plain Text

: **Category (if the current categories aren’t adequate, feel free to invent a category) **Site url **Site name, if any **Site creator’s name (that should be you - please don’t send me links to sites other than your own) **Subject matter that the site deals with **Any brief description and notes you want mentioned I will do my best to get your site info up within a day or two of your submitting it. Entries in each list are posted in alphabetical order by creators’ last name. Thanks and blessings to you. config.options.chkHttpReadOnly = false; /*** | Name:|CloseOnCancelPlugin| | Description:|Closes the tiddler if you click new tiddler then cancel. Default behaviour is to leave it open| | Version:|6.9.3| | Date:|30-Sep-2006| | Source:|http://mptw.tiddlyspot.com/#CloseOnCancelPlugin| | Author:|Simon Baird simon.baird@gmail.com| | CoreVersion:|2.1.x| ***/ //{{{ merge(config.commands.cancelTiddler,{ handler_orig_closeUnsaved: config.commands.cancelTiddler.handler, handler: function(event,src,title) { this.handler_orig_closeUnsaved(event,src,title); if (!store.tiddlerExists(title) && !store.isShadowTiddler(title)) story.closeTiddler(title,true); return false; } }); //}}} //{{{ config.options.chkHttpReadOnly = false; // means web visitors can experiment with your site by clicking edit config.views.wikified.defaultText = ""; // don’t need message when a tiddler doesn’t exist config.views.editor.defaultText = ""; // don’t need message when creating a new tiddler //}}} [[TiddlyWiki Showcase]] [[MptwEditTemplate]] /*** | Name:|HideWhenPlugin| | Description:|Allows conditional inclusion/exclusion in templates| | Version:|6.9.3| | Date:|30-Sep-2006| | Source:|http://mptw.tiddlyspot.com/#HideWhenPlugin| | Author:|Simon Baird simon.baird@gmail.com| For use in ViewTemplate and EditTemplate. Eg {{{div macro="showWhen tiddler.tags.contains(’Task’)"[[TaskToolbar]]/div}}} {{{div macro="showWhen tiddler.modifier == ’BartSimpson’"img src="bart.gif"//div}}} ***/ //{{{ merge(config.macros,{ hideWhen: { handler: function (place,macroName,params,wikifier,paramString,tiddler) { if (eval(paramString)) { removeChildren(place); place.parentNode.removeChild(place); } }}, showWhen: { handler: function (place,macroName,params,wikifier,paramString,tiddler) { config.macros.hideWhen.handler(place,macroName,params,wikifier,’!(’+paramString+’)’,tiddler); }} }); //}}} /*** |’’Name:’’|LegacyStrikeThroughPlugin| |’’Description:’’|Support for legacy (pre 2.1) strike through formatting| |’’Version:’’|1.0.1| |’’Date:’’|Jul 21, 2006| |’’Source:’’|http://www.tiddlywiki.com/#LegacyStrikeThroughPlugin| |’’Author:’’|MartinBudden (mjbudden (at) gmail (dot) com)| |’’License:’’|[[BSD open source license]]| |’’CoreVersion:’’|2.1.0| |’’Browser:’’|Firefox 1.0.4+; Firefox 1.5; InternetExplorer 6.0| ***/ //{{{ // Ensure that the LegacyStrikeThrough Plugin is only installed once. if(!version.extensions.LegacyStrikeThroughPlugin) { version.extensions.LegacyStrikeThroughPlugin = true; config.formatters.push( { name: "legacyStrikeByChar", match: "==", termRegExp: /(==)/mg, element: "strike", handler: config.formatterHelpers.createElementAndWikify }); } // end of "install only once" //}}} [[TiddlyWiki Showcase]] [[Add your TiddlyWiki to the showcase]] {{niceTable{ |!Title/link|[[Tiddlyspot’s FAQ|http://faq.tiddlyspot.com]]| |!Creator|Daniel Baird| |!Subject matter| FAQ | |!Description/notes|A nice example of a lightly modified TiddlyWiki servingbr up FAQs | |!Screenshot|[img[http://www.giffmex.org/twinactionimgs/tiddlyspotfaq.png]]| }}} {{niceTable{ |!Title/link|[[TiddlyWiki User’s Guide|http://danielbaird.com/tiddlywikiguides/userguide-sample.html#%5B%5BTiddlyWiki%20User’s%20Guide%5D%5D]]| |!Creator|Daniel Baird| |!Subject matter|Single-page design| |!Description/notes|An example of a TW that uses SinglePagePlugin andbr substantially modifies the page layout to look morebr like a single page website.| |!Screenshot|[img[http://www.giffmex.org/twinactionimgs/twusersguide.png]]| }}} /*** | Name:|MptwLayoutPlugin| | Description:|A package containing templates and css for the MonkeyPirateTiddlyWiki layout| | Version:|6.1.1| | Date:|01-Oct-2006| | Source:|http://mptw.tiddlyspot.com/#MptwLayoutPlugin| | Author:|Simon Baird simon.baird@gmail.com| | CoreVersion:|2.1.x| !Notes Presumes you have TagglyTaggingPlugin installed. ***/ //{{{ config.shadowTiddlers.GettingStarted += "\n\nSee also MonkeyPirateTiddlyWiki."; //}}} //{{{ merge(config.shadowTiddlers,{ MonkeyPirateTiddlyWiki:[ "[[MonkeyPirateTiddlyWiki|http://mptw.tiddlyspot.com]] is a distribution of [[TiddlyWiki|http://www.tiddlywiki.com/]] created by Simon Baird. See [[the web site|http://mptw.tiddlyspot.com/]] for more information.", "!!Upgrading ~MonkeyPirateTiddlyWiki", "This \"empty\" ~MonkeyPirateTiddlyWiki file comes pre-installed with the core ~MonkeyPirateTiddlyWiki plugins. You canAlso using ExcludeSearchand ExcludeList - basicallybr hiding anything that might freak out the end user.| |!Screenshot|[img[http://www.giffmex.org/twinactionimgs/bcqsupport.png]]| }}} || {{niceTable{ |!Title/link|[[Pacific Northwest Amateur Astronomy Thesaurus|http://students.washington.edu/adcockm/amateurastronomythesaurus/]]| |!Creator|Michael Adcock, Sonja Sutherland and Tim Shockley| |!Subject matter|Amateur astronomy; thesaurus; grad school class project| |!Description/notes|This was created during a course project in Fall 2007 involving a brgroup of 3 graduate students (mentioned above) in the MLIS brprogram at the University of Washington Information School. brThe project assignment was to construct a thesaurus. The br~TiddlyWiki I adapted includes a fair amount of custom code and brsome layout changes that made the thesaurus construction brprocess easier. It also functions as an end-user tool, being an brinteractive version of the thesaurus.brbrThe instructor was so pleased with it that I’m planning to do anbr independent study in summer 2008 to make this into anbr instructional tool. The end result will likely be used when teachingbr future courses, and I plan to rework the custom code as proper brplugins which can be reused more easily. Ultimately I’d like to endbr up with a starter ~TiddlyThesaurus that others can repurpose forbr their use.| |!Screenshot|[img[http://www.giffmex.org/twinactionimgs/amateurastronomy.GIF]]| }}} {{niceTable{ |!Title/link|[[iA SUMMIT 2008 TiddlyWiki|http://students.washington.edu/adcockm/IASummit/IASummit2008.html]]| |!Creator|Michael Adcock| |!Subject matter|Information Architecture Summit 2008| |!Description/notes|I wanted a way to easily review the conference sessions andbr decide which of the talks I was most interested in, etc. The officialbr website contained all the information, but I wanted to manipulatebr it. It includes a favorites” feature so you can easily build a custombr schedule out of the sessions you are interested in. Since it’s abr ~TiddlyWiki, the search feature is very useful as well.brbrIncludes an ~InsertStar plugin that I created based on br~InsertSmiley.I hand edited the star graphic that is displayed.| |!Screenshot|[img[http://www.giffmex.org/twinactionimgs/iasummit.GIF]]| }}} {{niceTable{ |!Title/link|[[BibblyWiki|http://www.giffmex.org/bibblywiki.html]]| |!Creator|Dave Gifford| |!Subject matter|Bibliographies, notetaking, personal library organization| |!Description/notes|~BibblyWiki creates pre-formatted bibliographies and several helpfulbr indexes using the data you enter for your books. You can take brnotes on each book as well.| |!Screenshot|[img[http://www.giffmex.org/twinactionimgs/bibblywiki.GIF]]| }}} {{niceTable{ |!Title/link|[[EC Moodlings|http://www.earlham.edu/~markp/moodle_dox/]]| |!Creator|Mark Pearson| |!Subject matter|Moodle and associated Instructional Technologies| |!Description/notes|This is due for a revamp. I found Alan Heckt’s FAQlist macro verybr useful, eg Moodle FAQ [[See here|http://www.earlham.edu/%7Emarkp/moodle_dox/#%5B%5BMoodle%20FAQ%5D%5D]]|...

giffmex.tiddlyspot.com Whois

Domain Name: TIDDLYSPOT.COM Registry Domain ID: 337424068_DOMAIN_COM-VRSN Registrar WHOIS Server: whois.registrar.amazon.com Registrar URL: http://registrar.amazon.com Updated Date: 2024-01-03T23:58:29Z Creation Date: 2006-02-07T02:49:20Z Registry Expiry Date: 2025-02-07T02:49:20Z Registrar: Amazon Registrar, Inc. Registrar IANA ID: 468 Registrar Abuse Contact Email: abuse@amazonaws.com Registrar Abuse Contact Phone: +1.2024422253 Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited Name Server: NS-1260.AWSDNS-29.ORG Name Server: NS-1797.AWSDNS-32.CO.UK Name Server: NS-294.AWSDNS-36.COM Name Server: NS-796.AWSDNS-35.NET DNSSEC: unsigned >>> Last update of whois database: 2024-05-17T19:11:09Z <<<