August 24, 2019 in News, Ubuntu
Conventions # – requires given linux commands to be executed with root privileges either directly as a root user or by use of sudo command $ – requires given linux commands to be executed as a regular non-privileged user Example 1 Open incoming TCP port 10000 to any source IP address: Example 2 Open incoming TCP port 443 to only specific source IP […]
The Indian Railway Catering and Tourism Corporation (IRCTC) has invited applications from interested and eligible candidates for the positions of Supervisor (Hospitality). Candidates having full time B. Sc. in Hospitality and Hotel Administration from a recognized university can appear for the interview. Those having the required eligibility criteria mentioned above can walk-in for an interview […]
August 4, 2019 in Learning, News
New Delhi: The Income Tax department has notified various forms related to I-T return filing for individuals as well as companies for the assessment year 2019-20. The Tax department has made no change in ITR-1 form or Sahaj, however it has rationalised some sections in ITR 2, 3, 5, 6 and 7. The last date […]
August 4, 2019 in News
This tutorial will walk you through building a web app to make VoIP calls between browsers. There are many scenarios in which this is useful, including anonymously connecting users on a dating website, securely connecting buyers with sellers in a marketplace and allowing users to make low-cost international calls. The UI isn’t anything to write […]
July 20, 2019 in News, Tips and Tricks
India is a sovereign country with many powers for states. Unlike many other countries, GST in India is implemented as duel tax system. Means, two types of GSTs are implemented in India. As you know, there are IGST, CGST and SGST. Each taxable transaction of goods and services in India attracts duel GST – CGST […]
July 17, 2019 in News
.card-inner { position: absolute; width: 100%; padding: 5px 15px; background-size: 50% 50%; border: inset .5em transparent; background-color: #1a82f7; background: url(images/linear_bg_2.png); background-repeat: no-repeat; background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1a82f7), to(#2F2727)); background: -webkit-linear-gradient(top, #2F2727, #1a82f7); background: -moz-linear-gradient(top, #2F2727, #1a82f7); background: -ms-linear-gradient(top, #2F2727, #1a82f7); background: -o-linear-gradient(top, #2F2727, #1a82f7); }
July 11, 2019 in Laravel, News
Introduction Artisan is the name of the command-line interface included with Laravel. It provides a number of helpful commands for your use while developing your application. It is driven by the powerful Symfony Console component. Usage Listing All Available Commands To view a list of all available Artisan commands, you may use the list command: Viewing The […]
July 7, 2019 in News
sarkariresult.com doing job scam. they submit job on website which is not verifed or trusty. sarkariresult.com जॉब घोटाला कर रहा है। वे वेबसाइट पर नौकरी प्रस्तुत करते हैं जो सत्यापित या भरोसेमंद नहीं है। SCAM 1 SCAM 2 All Links directed to wrong website.
June 27, 2019 in News
The getCurrentPosition() method is used to return the user’s position. <script> var x = document.getElementById(“demo”); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPosition); } else { x.innerHTML = “Geolocation is not supported by this browser.”; } } function showPosition(position) { x.innerHTML = “Latitude: ” + position.coords.latitude + “<br>Longitude: ” + position.coords.longitude; } </script> Example explained: Check if Geolocation is supported If supported, run the getCurrentPosition() method. If not, […]