Skip to main content

Terms and Conditions

 

Terms of use of the site

The motivation behind this site is to unite all Developers and Students who work in Programming and Internet field, with the goal that we can help one another and make our work simpler. This site is the simplest method to connect with industry specialists. We have made this site to empower everybody to pick up acknowledgment for their work, information, aptitudes and chance to help other people refine their insight.

Here you will find both professionals with years of experience and knowledge in the field, as well as people who are just learning to work with these programs. Please treat all participants in this forum with respect. The use of cynicism, offensive qualifications, and personal attacks on any of the forum participants will not be tolerated. If you ever come across content on this site that is contrary to good tone and our general terms and conditions, please notify the administrator immediately. The content will be immediately deleted and the user blocked.

Web Owners maintain the network and related services on this site to ensure availability 7 days a week, 24 hours a day. However, site availability may be interrupted in some cases. This may be due to technical reasons, such as telecommunication malfunction or lack of equipment, as well as website maintenance. Administrators are not responsible for network interruptions for the reasons listed above. In the event of interruption, the necessary measures shall be taken in good time to restore the service offered. The Website reserves the right to restrict or discontinue the provision of the service. You agree that the site will not be responsible for any change in the services provided.

Users receive a different number of points according to their participation in the forum. For every question you ask, you get some points to your asset. You get some bonus points for each answer. If your answer is chosen as the best one, you get an extra points to your asset.

The content of this website is protected within the meaning of the Copyright and Related Rights Act (LAPS) - software product design, graphic design, and published copyright content: articles, questions and answers, comments, opinions, opinions, photos, individual elements, texts, other animated elements, graphics, HTML code, databases, avatars, etc.

These General Terms and Conditions are applied simultaneously with the protective norms of the Pakistam legislation in force, and in particular with the Criminal Code and the CSPA, insofar as there are no contradictions with the clauses explicitly agreed with these General Terms and Conditions.

The website allows you to post questions and answers related to Programming and Study. Questions on side topics are also allowed, as long as they do not prevail and contribute to solving a specific problem. Before you ask a question, please make sure that this question is no longer asked. Duplicate issues will not be allowed to be published, i.e. ones that have already been set before on the site. Questions that conflict with the site's terms of service will be immediately deleted. Users who violate the Terms of Service will be deleted.

Conditions of confidentiality of information

This site uses cookies to provide the best services to its users.

The Website is not responsible for the accuracy, completeness and availability of the services provided on the site. The Website is not responsible for which users use the website, how users interpret the information on this site and for what purposes they use the information. Administrators do not provide a guarantee that all responses will be answered or will meet the expectations of the user such as the quality of the service offered, including response time, no bugs and errors, correction of existing defects, etc.

Cookies are used by sites like Google to deliver ads based on user behavior online.
You can change your cookie usage settings from your Google Account.

If you have any questions about the Terms of Use and the Privacy Policy, you can contact the site administrators at any time.

Popular posts from this blog

Prop `className` did not match in next js app

I have written a sample code ( Github Link here ). this is a simple next js app, but giving me error when I refresh the page. This seems to be the common problem and I tried the fix provided in the internet but does not seem to fix my issue. The error is Warning: Prop className did not match. Server: "MuiBox-root MuiBox-root-1" Client: "MuiBox-root MuiBox-root-2". Did changes for _document.js, modified _app.js as mentioned in official website and solutions in stackoverflow. but nothing seems to work. Could someone take a look and help me whats wrong with the code? Via Active questions tagged javascript - Stack Overflow https://ift.tt/2FdjaAW

How to show number of registered users in Laravel based on usertype?

i'm trying to display data from the database in the admin dashboard i used this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count(); echo $users; ?> and i have successfully get the correct data from the database but what if i want to display a specific data for example in this user table there is "usertype" that specify if the user is normal user or admin i want to user the same code above but to display a specific usertype i tried this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count()->WHERE usertype =admin; echo $users; ?> but it didn't work, what am i doing wrong? source https://stackoverflow.com/questions/68199726/how-to-show-number-of-registered-users-in-laravel-based-on-usertype

Why is my reports service not connecting?

I am trying to pull some data from a Postgres database using Node.js and node-postures but I can't figure out why my service isn't connecting. my routes/index.js file: const express = require('express'); const router = express.Router(); const ordersCountController = require('../controllers/ordersCountController'); const ordersController = require('../controllers/ordersController'); const weeklyReportsController = require('../controllers/weeklyReportsController'); router.get('/orders_count', ordersCountController); router.get('/orders', ordersController); router.get('/weekly_reports', weeklyReportsController); module.exports = router; My controllers/weeklyReportsController.js file: const weeklyReportsService = require('../services/weeklyReportsService'); const weeklyReportsController = async (req, res) => { try { const data = await weeklyReportsService; res.json({data}) console