blogs

Django Comments and Rating Systems

Hi Folks, I am looking for a blogging and comments system that can smoothly integrate with my Django sites. I've found there is a lot on the Net and got lost a bit, and I don't have much experience on this. Hope you guys can give me some suggestions. Here are the things that I would like to have: Tag Clouds Articles Archive (by month...

Posting source code in blogger- fails with C# containers

I tried the solutions that are posted in this related SO question and for the most part the code snippets are working, but there are some cases that are still getting garbled by Blogger when it publishes the blog. In particular, declaring generic containers seems to be most troublesome. Please see the code examples on my blog: http://ml...

Display Blog in Iphone

How can i display blogs from a URL in my XCode iphone applicaition? ...

Own CMS or Blog

I'm trying t build a somekind a clone to wordpress and have some problems understanding the functions that are used there. But that's not the problem.. The thing I'm looking for is good book that detailed explains what aspects to be aware of during the creation of the cms and some code snippets or something in that direction.. With best...

help configuring openid for enki blog in ruby on rails

I am trying to set up a blog using Enki. There is a config file here: http://github.com/xaviershay/enki/blob/master/config/enki.yml Which I don't understand. I signed up for myopenID and replaced my username in the delegate, but I don't understand what goes under "open_id" - is it just my URL? I'm just not sure what's going on, or what ...

How to securely serve S3 files to blog

I'm starting a blog and i'm in the process of choosing where should i host it. For now i want a free solution like Blogger or Wordpress.com. The problem i'm facing is that i want to use files i have in a S3 bucket in my blog but none of the blog solutions i found supports any kind of server code, which means that in order to use S3 quer...

Name that blog entry - Modelling changes over time with two db columns only.

I vaguely remember reading a blog entry (written by a well-known blogger I think) about how to model price changes over time, and that you could model most changes by saving two dates only (two columns in a db). The blog talked about prices on a website changing over time and how you could figure out the right price to charge knowing onl...

django threadedcomments

Hi folks, I would like to setup a comment systems on my site, using django threadedcomments, and I follow all the steps in the Tutorial, however, I get the following error: No module named newforms.util I am not sure what causing this issue, here is my configuration: #settings.py INSTALLED_APPS = ( 'django.contrib.admin', 'dj...

blog.domain.com vs domain.com/blog

Other than style, is there any significant difference between the 2, perhaps in something such as SEO? And style-wise, is there a "standard"/good practice about it, or its just up to your personal preference? ...

Best .Net Blog Engine for a Web Form under a Master Page

I have a pretty slick website and I wanted to add a simple blog system to it, without too much work. I've looked into a few blog systems, but none of them seem to be simple almost control like systems. So anyone have any recommendations for a simple asp.net blog engine? ...

ByteFlow installation Error on Windows

Hi Folks, When I try to install ByteFlow on my Windows development machine, I got the following MySQL error, and I don't know what to do, please give me some suggestion. Thank you so much!!! E:\byteflow-5b6d964917b5>manage.py syncdb !!! Read about DEBUG in settings_local.py and then remove me !!! !!! Read about DEBUG in settings_local....

Which CMS or blogging engine supports multiple sites ?

Dont know if SO is the appropriate place to ask this question, but anyway ... I have some sites running Wordpress and maintaining/managing them is a pain. Is there any CMS or blogging platform out there that support multiple sites/blogs in one codebase ? I know there are some hacks for Wordpress but they are quite ugly and do not scale ...

Interesting blogs about developing for Android

I became interested about developing applications for Android. Which blogs worth reading? ...

Best blogging tool to integrate into an existing website

Hi all, I'm looking for an easy way to integrate a blog into a website that I've developed with HTML and CSS and have already put a considerable amount of time and effort into. I've looked at WordPress, Movable Type, b2evolution, and a few others, but they all seem like overkill for me. I'm only going to be posting 1 maybe 2 times a wee...

For programming content, what simple-to-use-and-setup PHP based blog are the preferred ones?

I've since long wanted a place I can toss my programming related nuggets at. Every day I feel I solve something that I'll surely hit again in a not so distant future, but by then I most certainly will have forgotten about the previous solution I came up with. So I need to blog it down, quick and dirty, for my own documentation and memor...

Developing another blog application for learning purpose

I am thinking of developing a blog application. I understand that this has already been done many times. But i like do for learning purpose. I like to know for this kind of blog application. What are the desired features to develop? ...

Django microblog showing a logged in user only his posts

i have a miniblog application, with a class named New(refering to a new post), having a foreign key to an user(who has posted the entry). above i have a method that displays all the posts from all the users. I'd like to show to the logged in user, only his posts How can i do it? Thanks in advance! def paginate(request): paginator = N...

How can i allow to read my blog only for google contacts?

How can i allow to read my blog only for google contacts? ...

how to earn money from my blog site

Hi All, I am going to deploy my Blog site & now I am looking forward to earning money from that, I am new to Google adsense, so I have few questions. 1: Is there any other programs like google adsense which place add on my website? 2: I have heard that if I am using any third party control on my website that google will not allow me to...

Django blog reply system

hello, i'm trying to build a mini reply system, based on the user's posts on a mini blog. Every post has a link named reply. if one presses reply, the reply form appears, and one edits the reply, and submits the form.The problem is that i don't know how to take the id of the post i want to reply to. In the view, if i use as a parameter o...