Postgresql, managing ENUM types

List of useful commands for working with ENUM in postgresql. Create an enum: CREATE TYPE languages AS ENUM (‘python’, ‘php’, ‘java’); Adding an element to an enum: ALTER TYPE languages ADD VALUE ‘go’;ALTER TYPE languages…

List of useful commands for npm

At dotmaui.com we use a lot Node.js and therefore npm for package management. We keep a list of the commands we use most often and today we want to share it with you. List npm…

New popular libraries added to our CDN

With a view to increasing the Javascript and CSS libraries offered for free, we have added two popular libraries: Handlebars.js:Handlebars provides the power necessary to let you buildĀ semantic templateseffectively with no frustration. https://handlebarsjs.com/ https://cdn.dotmaui.com/libs/handlebars.js/ bootstrap-select:The…

ASP.NET – Format string by CultureInfo

C# var my_date = DateTime.Now; var my_culture = System.Globalization.CultureInfo.CreateSpecificCulture(“it-IT”); var my_string = my_date.ToString(“d MMMM”, my_culture); Console.WriteLine(my_string); VB.NET Dim my_date = DateTime.Now Dim my_culture = System.Globalization.CultureInfo.CreateSpecificCulture(“it-IT”) Dim my_string = my_date.ToString(“d MMMM”, my_culture) Console.WriteLine(my_string)

CSS Minify API 1.2 released!

We have just released a new version of the API to minimize CSS. Based on your feedback we have added four new parameters: removeurlquotes: Removes quotes from urls. Default is true.removecomments: Removes all comments. Default…

Vulture CSS Alpha 7 Released!

– Now you can analyze up to 10 pages– Updated the CSS parser– Improved html capture– Minor bug fixes  We tested this version with two templates from startbootstrap.com, here are the results:https://vulturecss.dotmaui.com/example1/https://vulturecss.dotmaui.com/example2/

Here are the latest updates

JS Beautifier 1.3.4 and CSS Beautifier 1.3.4 released.New libraries added to our CDN for free use, https://cdn.dotmaui.com/libs.HTML Beautify API-based web tool released.Bug fixes and other minor improvements.

PHP display all errors and warnings

When writing a program in PHP it is a good idea to activate all the errors and warnings that often occur during development. Many hosts have the display of errors disabled, so you can ‘go…