How to design a great interactive form
Web forms have become an integral part of most websites and the internet in
general. The primary purpose is to help both users and businesses
achieve their separate goals by establishing a relations...
2018/05/11
Renee
1842
Zdoo 4.6.3.stable is released! Xuanxuan 1.5.0 is integrated!
Zdoo 4.6.3.stable has been released!
This release is mainly to integrate Xuanxuan, instant messenger, to version 1.5.0. In Zdoo 4.6.3.stable, users can send Todos via Xuanxuan and click messages in ...
2018/05/08
Yves
1111
5 Best Document Management Systems in 2018
Everyone needs a suite of office software for everyday tasks. Microsoft Office is perhaps the best-known option, but there are also lots of free alternatives that replicate almost all the features of ...
2018/04/27
Yves
1852
Scrum or DevOps?
“Should I use Scrum or DevOps?”
This question
deserves an attention because of the motivation to choose DevOps over
Scrum. People want to go with DevOps over Scrum because they want to be
ag...
2018/04/26
Joshua Partogi
2004
Zsite 7.0.1 is released!
Zsite 7.0.1 has been released! This upgrade is to fix bugs.
Change Log
Fixed custom block error in Ueditor.
Fixed auto break in custom block of left column.
Fixded date and time err...
2018/04/21
Amber
1672
6 Things You Should Know About Scrum
Scrum: The Art of Doing Twice the Work in Half the Time
2018/04/20
Renee
1544
4 Modules You Should Look for in Office Automation System (OAS)
Office automation system is an information system which is computer based that collects, processes, stores and transmits electronic messages. When it comes to selecting office automation tools to ...
2018/04/15
Yves
2289
Synchronize remote repositories via Git to local server and auto update it
My Requirements
Git server A: remote repositories on GitHub or something like that
Git server B: intranet I build
I want to build a repo on sever B which will auto synchronize with that on server...
2018/04/15
Memory, Renee
1648
Delete an element in slice using append in GoLang
Array [a b c]
Task: Delete the second element. Get [a c].
Steps:
package main
import (
"fmt"
)
//function used to delete the element
func remove(s []string, i int) []string {
return ap...
2018/04/15
Memory, Renee
1252