Note to self: religion freaky.

Buffy ,'Never Leave Me'


Buffistas Building a Better Board ++

Do you have problems, concerns, or recommendations about the technical side of the Phoenix? Air them here. Compliments also welcome.


Gudanov - Jun 16, 2017 6:46:58 pm PDT #3937 of 4671
Coding and Sleeping

If there are adjustments or features you'd like to see, go ahead and suggest them. I won't promise I'll implement them, but they can go on a wish list for the future if enough people like them.

I do intend to make read-new easier to find on mobile devices and I think I'll make the left sidebar of links an option that can be deactivated in the user profile. It will have to disappear regardless when the screen gets too small, but desktop users would still have it unless they want to opt out.

Also let me know if you want to contribute. I can give you the info to hook up with the git repository.


Gudanov - Jun 27, 2017 5:54:56 pm PDT #3938 of 4671
Coding and Sleeping

So, yeah, another update to the Beta Buffista site. I added the ability to do more profile editing and as part of that enabled blocking users. Bookmarks are stubbed in, but not functional.

The next couple of things will be editing posts and actually implement bookmarks.


Gudanov - Aug 09, 2017 6:12:20 am PDT #3939 of 4671
Coding and Sleeping

Sorry to say I haven't had time to do any work lately. I hope to be able to get back to making progress this fall.


smonster - Aug 16, 2017 10:32:23 am PDT #3940 of 4671
We won’t stop until everyone is gay.

No worries, Gud! You have an insane amount on your plate.


WindSparrow - Aug 25, 2017 2:46:11 pm PDT #3941 of 4671
Love is stronger than death and harder than sorrow. Those who practice it are fierce like the light of stars traveling eons to pierce the night.

I agree with smonster. Gud, you are amazing with all that you do. Take your time.


Gudanov - Oct 17, 2017 5:24:50 am PDT #3942 of 4671
Coding and Sleeping

Gudanov - Dec 06, 2017 6:40:02 pm PST #3943 of 4671
Coding and Sleeping

After a very long time, I've made an update to the beta board. ( At [link] ). This update adds support for editing and deleting posts and partial implementation of bookmarks. Contact me via profile addy if you want an invite code to register. Anything posted to the beta board will be wiped out from time to time as the database is updated.


Gudanov - Dec 07, 2017 7:48:40 am PST #3944 of 4671
Coding and Sleeping

Added support for quickedits to posts.


Gudanov - Dec 08, 2017 4:38:44 am PST #3945 of 4671
Coding and Sleeping

Another update last night to fix bugs with page redirects.


Gudanov - Dec 08, 2017 5:18:37 am PST #3946 of 4671
Coding and Sleeping

I'm hoping to have time today to drop this puppy in there:

SELECT t.thread_id as id, 
	t.thread_title as title, 
    t.thread_slug as slug, 
    t.thread_desc as description, 
    t.thread_posts as threadposts, 
    t.closed as closed, 
    t.thread_secured as secured, 
    r.post_number as postnumber 
FROM (
	SELECT 
		th.thread_id, 
        th.group_id, 
        th.thread_title, 
        th.thread_slug, 
        th.thread_desc, 
        th.thread_posts, 
        th.closed, 
        th.thread_secured
	FROM borg.threads th
    INNER JOIN borg.subscriptions su
	ON th.thread_id = su.thread_id
	WHERE su.user_id = :user_id
    ) t
LEFT OUTER JOIN (
	SELECT * FROM borg.posts_read 
    WHERE borg.posts_read.user_id = :user_id
    ) r
ON 
	t.thread_id = r.thread_id 
WHERE
	ISNULL(r.post_number) OR r.post_number < t.thread_posts
ORDER BY title
LIMIT 1