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…
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…
We have released a new tool to generate all the free GUIDs you need.It supports text format, XML and JSON. You can also generate up to 100000 GUIDs via RESTful API. Try it now! GUID…
To use this example you need to know the API key of your bot and the user id of the user you want to send the message to. Of course, the user must have authorized…
We have released a free, fast, advertising-free and 100% client side SQL code formatter. Try it now! SQL Formatter.
Small snippet of code in PHP to send a text reply to a Telegram user via a Bot. To use this example you must have already created your Bot and set up the webhook. <?php…
We love Telegram for its philosophy of security, privacy and absence of advertising. For this reason we are creating a series of tools to contribute to the use and dissemination of this application. Last week…
– HTML Beautifier v 1.4.1 released– JS Beautifier v 1.3.3 released– CSS Beautifier v 1.3.3 released– XML Beautifier v 1.5.1 released
Small function in pure Javascript to check if a string is an integer or not. function isInteger(value) { var intRegex = /^\d+$/; return intRegex.test(value); } isInteger(5); // true isInteger(undefined); // false isInteger(“1”); // true isInteger(“1.3”);…
$.urlParam = function (name) { var results = new RegExp(‘[\?&]’ + name + ‘=([^&#]*)’) .exec(window.location.href); if (results == null) { return 0; } return results[1] || 0; } console.log($.urlParam(‘dotmaui’)); //cool
Weekend of working at dotmaui.com, here are the main news: – HTML Beautifier v 1.4.0 released, we have completely replaced the script for a better result– HTML Minify API version 1.1 has left beta status…