Execute .go file using crontab in Ubuntu
The first thing to do is to compile the .go file to make it executable: go build myfile.go This will produce a file called myfile that is executable. After that run the command from the…
The first thing to do is to compile the .go file to make it executable: go build myfile.go This will produce a file called myfile that is executable. After that run the command from the…
Production applications should not be heavily dependent on CDN activities. Applications should use a fallback resource when the CDN is not available. <script src=”https://cdn.dotmaui.com/libs/jquery/3.4.0/jquery.min.js”></script> <script> window.jQuery || document.write(‘<script src=”/js/jquery.min.js”><\/script>’); </script>
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…
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…
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…
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)
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…
– 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/
<?php $date1 = strtotime("2019-02-01"); $date2 = strtotime("2019-07-26"); $diff_unix = $date2 – $date1; $diff_days = floor($diff_unix/3600/24); echo $diff_days; // Result: 175
In these few years since we launched the .Maui project, more and more users have started to use our free APIs and tools. We are happy with the work done so far and hope to…