- Read
- Vote
- Old
- New
- Hot
- Reply
Top tags: CSS (7) Wiki (3) Feature (2) CMS (2) Bug (2) Test (2) Blog (1) SIDU (1) Forum (1) Ticket (1) Bank (1) JS (1) News (1)
This topic is a place to collect feedback for SIDU bugs and feature requests.
Topnew Blog CMS v 2018.10.10 Released
Topnew Blog CMS is a tiny 10KB size content management system, it has blog, forum, ticket, wiki, photo, video, stack-overflow etc styles, by simply set config $blog['style'] = 'wiki'; etc with the same CMS.
Here is an example of Fibonacci numbers:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, ...
Write a function f(x) so that return the following eg:
f(2) = 1
f(4) = 2
f(6) = 5
f(8) = 13 etc
And here is the code:
function f($x = 0) {
if ($x < 2) {
return $x;
} else {
return f($x - 2) + f($x - 1);
}
}
Cat:
General | Read: 56638 | Msg: 1 | 2018-11-01
1
Tag:
Test
This is a place to collect feature request and bug report for BensonBank CMS
This msg is too old (originally written on 01 Jan 2013). Now its 22 May 2022 and PHP already ver 8, MySQL already ver 8. Let's re-write the wiki as following:
Install ubuntu 22.04 LAMP via vagrant, PHP 8 MySQL 8 PostgreSQL 13 etc
A - Install Git Bash for windows
If you are alr
Cat:
SIDU | Read: 890272 | Msg: 1 | 2013-01-01
2
- 1
- 2