TW in Public -- Karl Arao's TWClassic

196 views
Skip to first unread message

@TiddlyTweeter

unread,
May 28, 2018, 1:10:31 PM5/28/18
to TiddlyWiki

Karl Arao

unread,
May 28, 2018, 2:27:52 PM5/28/18
to tiddl...@googlegroups.com

yup still using it since 2008! 

I moved it from tiddlyspot to git pages https://karlarao.github.io/karlaraowiki/index.html and URL redirect from karlarao.wiki 









On Mon, May 28, 2018 at 1:10 PM, @TiddlyTweeter <Tiddly...@assays.tv> wrote:

--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscribe@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/984a408f-4466-4642-b3d6-464d2812f4aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
Karl Arao
Wiki: karlarao.wiki
Twitter: @karlarao

@TiddlyTweeter

unread,
May 28, 2018, 2:51:03 PM5/28/18
to TiddlyWiki
Fabulous wiki! Serious work. Your Cloud Map is awesome...

https://karlarao.github.io/karlaraowiki/index.html#TagCloud


On Monday, 28 May 2018 20:27:52 UTC+2, Karl Arao - karlarao.tiddlyspot.com wrote:

yup still using it since 2008! 

I moved it from tiddlyspot to git pages https://karlarao.github.io/karlaraowiki/index.html and URL redirect from karlarao.wiki 








On Mon, May 28, 2018 at 1:10 PM, @TiddlyTweeter <Tiddly...@assays.tv> wrote:

--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.

David Gifford

unread,
May 29, 2018, 1:47:52 PM5/29/18
to TiddlyWiki
Sniff sniff - sorry, just got a little teary-eyed from the overwhelming nostalgia that this link provoked in me! Awesome, brings back memories

Ste Wilson

unread,
May 30, 2018, 2:03:01 PM5/30/18
to TiddlyWiki
I got all excited thinking engineering data... But data engineering is very different..

Yakov

unread,
Jun 3, 2018, 6:00:42 AM6/3/18
to TiddlyWiki
Hi Karl,

could you clarify what Feedburner (http://feeds.feedburner.com/KarlAraoTiddlyWiki) helps with here? (I haven't tried using RSS generated by TW yet but I'm considering doing so in the future) Is it used because you host on github pages?

By the way, are you aware of the https://groups.google.com/forum/#!forum/tiddlywikiclassic group? May be of interest for you.

Best regards,
Yakov.

понедельник, 28 мая 2018 г., 21:27:52 UTC+3 пользователь Karl Arao - karlarao.tiddlyspot.com написал:

yup still using it since 2008! 

I moved it from tiddlyspot to git pages https://karlarao.github.io/karlaraowiki/index.html and URL redirect from karlarao.wiki 








On Mon, May 28, 2018 at 1:10 PM, @TiddlyTweeter <Tiddly...@assays.tv> wrote:

--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.

Karl Arao

unread,
Jun 4, 2018, 11:21:28 AM6/4/18
to tiddl...@googlegroups.com
Yes the RSS works here, when I switched from tiddlyspot to git pages I just have to repoint the "Original Feed" info to where the index.xml file is currently located which is https://raw.githubusercontent.com/karlarao/karlaraowiki/master/index.xml
And then from there the http://feeds.feedburner.com/KarlAraoTiddlyWiki will work on any RSS reader 






the feedburner below 






to update the RSS I just have to go to my git directory 

$ pwd
/Volumes/vm/Dropbox/CodeNinja/GitHub/karlaraowiki



the critical piece here are the index.html and index.xml files, those are the ones that need to be updated
btw you have to name them index.html and index.xml for git pages to work 

cp /Users/kristofferson.a.arao/Dropbox2/TiddlyWiki/karlarao.html /Volumes/vm/Dropbox/Documents/KnowledgeFiles/InformationTechnology/TiddlyWiki/
cp /Users/kristofferson.a.arao/Dropbox2/TiddlyWiki/karlarao.xml /Volumes/vm/Dropbox/Documents/KnowledgeFiles/InformationTechnology/TiddlyWiki/     <-- I backup the files from local to external drive
cp /Users/kristofferson.a.arao/Dropbox2/TiddlyWiki/karlarao.html index.html
cp /Users/kristofferson.a.arao/Dropbox2/TiddlyWiki/karlarao.xml index.xml       <-- then I update the index.html and index.xml files
git config --global user.name "karlarao"                  <-- then here is where you do the push to github 
git config --global user.email "karl...@gmail.com"
git add .
git status # to see what changes are going to be commited
git commit -m "."
#git remote add origin g...@github.com:karlarao/karlaraowiki.git
git push origin master
#git branch gh-pages # this is one time
git checkout gh-pages # go to the gh-pages branch
git rebase master # bring gh-pages up to date with master
git push origin gh-pages # commit the changes
git checkout master # return to the master branch


recap on my directory structure below: 
  • /Users/kristofferson.a.arao/Dropbox2/TiddlyWiki/karlarao.html <-- internal drive, my primary working directory for my tiddly file
  • /Volumes/vm/Dropbox/CodeNinja/GitHub/karlaraowiki    <-- external drive where the git directory is placed, it contains the files index.html and index.xml which get pushed to github
  • /Volumes/vm/Dropbox/Documents/KnowledgeFiles/InformationTechnology/TiddlyWiki/ <-- external drive, my backup directory for my tiddly files






After running update.sh the updates should reflect instantly in feedburner  http://feeds.feedburner.com/KarlAraoTiddlyWiki

$ pwd
/Volumes/vm/Dropbox/CodeNinja/GitHub/karlaraowiki

$ sh update.sh 
On branch master
Your branch is up to date with 'origin/master'.
 
Changes to be committed:
  (use "git reset HEAD <file>..." to unstage)
        modified:   index.html
        modified:   index.xml
 
[master 3edae7c] .
 2 files changed, 562 insertions(+), 522 deletions(-)
 rewrite index.xml (72%)
Counting objects: 4, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 18.41 KiB | 4.60 MiB/s, done.
Total 4 (delta 2), reused 0 (delta 0)
remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
   440123a..3123e7c  master -> master
Switched to branch 'gh-pages'
First, rewinding head to replay your work on top of it...
Fast-forwarded gh-pages to master.
Total 0 (delta 0), reused 0 (delta 0)
   440123a..3123e7c  gh-pages -> gh-pages
Switched to branch 'master'
Your branch is up to date with 'origin/master'.




And after a few minutes on your feedly or any RSS reader 
















To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscribe@googlegroups.com.

To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.

For more options, visit https://groups.google.com/d/optout.
Reply all
Reply to author
Forward
0 new messages