First time here? Check out the FAQ!

pcompassion's profile - activity

2021-03-27 15:45:59 -0500 received badge Taxonomist
2020-02-18 19:29:07 -0500 received badge Famous Question (source)
2020-02-18 19:29:03 -0500 received badge Popular Question (source)
2020-02-18 19:28:01 -0500 received badge Famous Question (source)
2019-03-15 13:35:21 -0500 received badge Popular Question (source)
2018-12-23 19:37:18 -0500 received badge Famous Question (source)
2018-06-01 11:40:42 -0500 received badge Notable Question (source)
2018-06-01 11:40:42 -0500 received badge Popular Question (source)
2016-11-29 18:58:22 -0500 received badge Popular Question (source)
2016-01-22 01:43:27 -0500 received badge Notable Question (source)
2015-10-08 08:46:48 -0500 received badge Popular Question (source)
2015-10-05 10:58:40 -0500 marked best answer what is the relationship between 'thread' and 'question_post'?

Thread is a class that holds information that is specific to question_post (not other types of posts)?

Can you give another view/explanation about the relationship between the two?

I'd like to add ManyToMany relationships between question_post to question_post.
Should I make it in Thread or Post?

2015-10-05 10:58:40 -0500 marked best answer new type of post..

Hello

What do you think would be the best way to create a new type of 'Post'?
(other than question/answer/comment/tag_wiki/..)

Specifically, I'd like to add translate type.
It will have two texts/htmls/authors/edit_dates and etc, one for each language.
For example, english text -> korean text translate,
we would need one author field for english another for korean.

Please advise me how to add such a post type.

2015-04-03 14:18:22 -0500 received badge Famous Question (source)
2014-07-18 16:20:22 -0500 received badge Famous Question (source)
2014-04-15 07:56:51 -0500 received badge Famous Question (source)
2014-01-20 14:20:22 -0500 received badge Famous Question (source)
2013-11-25 04:24:25 -0500 received badge Famous Question (source)
2013-10-22 19:16:44 -0500 received badge Famous Question (source)
2013-10-01 16:17:33 -0500 received badge Famous Question (source)
2013-09-23 18:29:05 -0500 received badge Famous Question (source)
2013-09-05 04:50:34 -0500 received badge Famous Question (source)
2013-09-03 18:07:49 -0500 received badge Good Question (source)
2013-08-30 12:44:27 -0500 received badge Nice Question (source)
2013-08-22 09:58:44 -0500 asked a question How to turn on email validation?

I don't remember whether I turned it off or not, but I can sign up without email verification.

Is it turned off by default?

2013-08-22 02:09:40 -0500 asked a question word with `_` in doesn't appear correctly

hello_world should look like hello_world
but it apears as helloworld.

It seems it is interpreted as italic.
In latest github askbot.

2013-08-20 16:30:45 -0500 received badge Famous Question (source)
2013-08-15 05:51:06 -0500 commented answer Why does askbot use Jinja?

Why did Instagram choose Jinja2 instead of Django Templates?

At the time, it was simply more flexible than the built-in tempting language (inline python). In our initial experience it was also much (much) faster. However, I believe in recent releases of Django they’ve addressed many of these differences, so I’m not sure we’d necessarily use Jinja2 from the start today. http://www.forbes.com/sites/limyunghui/2012/04/09/inspiring-insights-by-instagram-ceo-kevin-systrom-the-man-who-built-a-1-billion-startup/2/ .. just found this link..

2013-08-13 21:17:12 -0500 asked a question How does user `unregister` himself?

How can a user unregister himself?

If it's not implemented,
How can an admin unregister a user so that he can't login anymore?

2013-08-10 17:35:59 -0500 received badge Nice Question (source)
2013-08-08 02:34:33 -0500 received badge Famous Question (source)
2013-08-07 18:14:57 -0500 asked a question markdown parser bug for '###title' ?
### Works
###Doesn't work

Can it be fixed?

works

###Doesn't work

2013-08-01 06:39:17 -0500 asked a question macro hides all other variables?

does macro hide all other variables passed from views?

2013-07-24 21:41:43 -0500 asked a question Do you create south migration files manually for User model change?

Suppose you add column to User by User.add_to_class('some_field', field_type)

How do you create a migration for it?

Manually create a migration file and edit it to correctly change auth_user model?

2013-07-14 23:49:15 -0500 commented question new type of post..
2013-07-12 00:31:24 -0500 received badge Critic ( source )
2013-07-12 00:29:10 -0500 commented answer link is displayed correctly in preview but not in actual post

sent a pull request for it

2013-07-11 21:19:14 -0500 commented answer link is displayed correctly in preview but not in actual post

http://en.wikipedia.org/wiki/JSON not shown correctly is because JS lacks some functionality which are present in server-side python?">JSON

2013-07-11 20:02:23 -0500 commented answer link is displayed correctly in preview but not in actual post

my original question had 'features that work in previewer but not after posted' Doesn't this mean the feature is missing in server part and we want to locate the relavant part in javascript and insert it in the markdown2 python code? (not markdown2->js as you mentioned)

2013-07-11 14:10:16 -0500 commented answer link is displayed correctly in preview but not in actual post

@Evgeny there's any relationship between askbot's markdown server side code and https://pypi.python.org/pypi/Markdown ? if not, is there a reason it has to be customized?