RaSor’s Blog

January 3, 2009

Testing Scribd and Slideshare

Filed under: Blog, WebApps — rasor @ 7:01 pm

Both sites has embedding tags specific for WordPress.

A random doc was found from each site.

(more…)

September 4, 2008

Dedicated social networks

Filed under: Blog, Notes — rasor @ 6:04 pm

Seems like dedicated social networks is getting a lot of attention.
I like http://www.ning.com/. Here you can set up your own network without having to host it yourself.
You can set up groups, add gadgets, upload photos, add events and more… (more…)

September 3, 2008

Web apps – lists

Filed under: Blog, WebApps — rasor @ 8:14 pm

Here I intend to collect a few links to some web apps, that I might want to look at – at some point later.

Maybe it could be nice to create a spreadsheet with links?

File sharing Web app: Box.net

Filed under: Blog, WebApps — rasor @ 7:58 pm

Just explored a nice place to upload files to:
http://www.box.net/ (more…)

August 21, 2008

How to make Tables and Images in WordPress

Filed under: Blog — rasor @ 9:19 am

Tables:

I use copy – paste from MS Excel.

See what others are doing:
http://en.forums.wordpress.com/topic/tables-in-blog?replies=16#post-239545
http://faq.wordpress.com/?s=tables 

Images:

  • Block diagrams: MS Visio. Save as png. Unfortunately WordPress don’t accept svg upload.
    After creation of the graphics then do: File – Page Setup – Paper size – Size to fit drawing content.
  • Further advanced vector graphic: Inkscape.
  • Raster images: Paint.NET. Good for adding an eclipse and a text to make a callout and to blur an area. Can also do layers.
  • Print screen: ImageShack – Quickshot or ScreenHunter.

SVG

Would have saved Visio as SVG, but cannot upload it to WP.

Then I uploaded them to http://sites.google.com/site/rasordk/Home/images

Found a nice place to share SVG on: http://openclipart.org/media/people/rasor

But I cannot show SVG in WP – the tags are removed:

Anyone with a good idea?

Encoding:

WordPress reserved:

- [: [
- : ‘
- #: #

HTML Encoder and decoder: http://www.opinionatedgeek.com/DotNet/Tools/HTMLEncode/Encode.aspx

HTML Encoded ASCII table: http://www.w3schools.com/TAGS/ref_ascii.asp

HTML Encoded Latin table: http://www.w3schools.com/TAGS/ref_entities.asp

HTML Encoded symbol table: http://www.w3schools.com/TAGS/ref_symbols.asp

URL Encoder and table: http://www.w3schools.com/TAGS/ref_urlencode.asp

The end

December 5, 2007

HowTo post code syntax

Filed under: Blog — rasor @ 6:45 am

http://faq.wordpress.com/2007/09/03/how-do-i-post-source-code/

Test C#:
[sourcecode language='csharp'][/sourcecode]

    private string ParmToEncode(string parm)
    {
        return HttpUtility.UrlEncode(HttpUtility.UrlDecode(parm, Encoding.GetEncoding("ISO-8859-1")), Encoding.GetEncoding("ISO-8859-1"));
    }

pre

code

Blog at WordPress.com.