All Tickets

Priority
Status
Type
Category
kanagasabai
asked 3 years ago
Views 228
Views 228
let i;
for (i = 0; i < 3; i++) {
  const log = () => {
    console.log(i);  }
  setTimeout(log, …
Javascript
Low
Problem
Closed
Star
asked 3 years ago
Views 233
Views 233

Is there something in JavaScript similar to @import in CSS that allows you to include a JavaScript file inside to …

Javascript
Low
Question
Closed
Bunny
asked 3 years ago
Views 218
Views 218

How can Create a Pandas DataFrames in python?

Python
Low
Question
Closed
Star
asked 3 years ago
Views 231
Views 231

How to save a screen show in directory or folder in python selenium testing ? 

Can one help me

Python
Low
Question
Closed
Anonymous
asked 3 years ago
Views 207
Views 207

Write Python logic to count the number of capital letters in a file.

Python
Low
Question
Closed
Anonymous
asked 3 years ago
Views 222
Views 222

Trying to shuffle the following Array randomly:

int[] solutionArray = {1, 2, 3, 4, 5, 6, 6, 5, 4, 3, …
Java
Medium
Question
Closed
Anonymous
asked 3 years ago
Views 224
Views 224

To be specific, I was trying this code:

package hello;

public class Hello {

    Clock clock = new Clock();

    public …
Java
Medium
Problem
Closed
Anonymous
asked 3 years ago
Views 261
Views 261

Tried writing a Java routine to evaluate math expressions from String values like:

  1. "7+3"
  2. "10-30"
  3. "(1+10)*3"

Don’t want a lot of if-then-else …

Java
Medium
Problem
Closed
Anonymous
asked 3 years ago
Views 206
Views 206

How to compare two strings in equal value??

Java
Low
Question
Closed
Anonymous
asked 3 years ago
Views 224
Views 224

Can anyone help me how to manage both versions in one Windows 10.

Python
Medium
Problem
Closed
Anonymous
asked 3 years ago
Views 237
Views 237

What are the source code for built-in python function like code behind sorted or enumerate etc...?

Python
Low
Question
Closed
Anonymous
asked 3 years ago
Views 252
Views 252

I am trying to append text repeatedly to an existing file in Java. Not able to do so?

Java
Medium
Task
Closed
Anonymous
asked 3 years ago
Views 233
Views 233

What are the main difference between an inner class and a static nested class in Java? Is it play a …

Java
Low
Question
Closed
ahmed.hisham87
asked 3 years ago
Views 231
Views 231

I am trying to make the like button in the post_detail.html page clicked without refreshing the page so, I included …

Javascript
Medium
Problem
Closed
ashutoshmishra333
asked 3 years ago
Views 448
Views 448

class Photo(models.Model):

image1=models.FileField(blank=True, default="",upload_to="media/images",null=True)

image2=models.FileField(blank=True, default="",upload_to="media/images",null=True)

def __str__(self):

return str(self.image1)

How can i download images from the both field on …

Django
Medium
Task
Closed
Anonymous
asked 3 years ago
Views 191
Views 191

Not able to Implement social login authentication in Django ...

Django
Medium
Question
Closed
Anonymous
asked 3 years ago
Views 206
Views 206

Can someone explain How a request is process in Django ?

Django
Medium
Question
Closed
nikhil7
asked 3 years ago
Views 242
Views 242

Hi my problem is that i want to distribute my django app to different users but i want it to …

Django
Medium
Question
Closed
ahmed.hisham87
asked 3 years ago
Views 537
Views 537

Hi,

I am trying to get the time spent on each page in a django project using Javascript. I keep …

Django
Medium
Problem
Closed
ahmed.hisham87
asked 3 years, 1 month ago
Views 338
Views 338

Hello, 

I want to know if there is a way to get the time spent by each user on each page …

Django
Medium
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 197
Views 197

I am trying to install Django in my system.

But getting an error meassge ...

C:\Python34> pip install Django
'pip' …
Python
Medium
Problem
Closed
Anonymous
asked 3 years, 1 month ago
Views 218
Views 218

How to handle URLs in Django?

Django
Low
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 218
Views 218

Can you set up static files in Django? How?

Django
Low
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 210
Views 210

Specify the features available in Django web framework?

Django
Low
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 197
Views 197

What is the use of session framework in Django?

Django
Low
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 200
Views 200

What does the Django templates contain?

Django
Low
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 250
Views 250

What are the inheritance styles in Django?

Django
Low
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 202
Views 202

How to create a project in Django?

Django
Low
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 561
Views 561

How to filter data from Django models using python datetime?

Django
Low
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 215
Views 215

How Django processes a request?

Django
Low
Question
Closed
ahmed.hisham87
asked 3 years, 1 month ago
Views 655
Views 655

Hi,

I am starting a new project using Python 3.8 and I am trying to install Pillow but returning this …

Python
Medium
Problem
Closed
kanagasabai
asked 3 years, 1 month ago
Views 196
Views 196

And after submission an alert of "submitted successfully"  should be displayed on top the screen..

Javascript
Low
Question
Closed
geekPro
asked 3 years, 1 month ago
Views 523
Views 523

and What are the different kinds of Doctypes available?

HTML
Low
Question
Closed
geekPro
asked 3 years, 1 month ago
Views 195
Views 195
0.1 + 0.2 === 0.3 // => ???
Javascript
Low
Problem
Closed
Anonymous
asked 3 years, 1 month ago
Views 272
Views 272

How to filter latest record by date in Django?

Django
Low
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 206
Views 206

How to login with email instead of username in Django?

Django
Low
Question
Closed
p789ahm
asked 3 years, 1 month ago
Views 399
Views 399

I am fetching an external json file . Whenever I send the data in dictionary form to html page and …

Django
Low
Problem
Closed
kanagasabai
asked 3 years, 1 month ago
Views 219
Views 219

 Explain localStorage and sessionStorage..

HTML
Low
Question
Closed
kanagasabai
asked 3 years, 1 month ago
Views 317
Views 317
var text = 'outside';
function logIt(){
    console.log(text);
    var text = 'inside';
};
logIt();

The above code don't throws an error! …

Javascript
Low
Problem
Closed
kanagasabai
asked 3 years, 1 month ago
Views 565
Views 565
CSS
Low
Question
Closed
geekPro
asked 3 years, 1 month ago
Views 360
Views 360

The following recursive code will cause a stack overflow if the array list is too large. How can you fix …

Javascript
Medium
Problem
Closed
hijaw39777
asked 3 years, 1 month ago
Views 783
Views 783

What can I do when my pagination breaks after first page when I specify the keyword in a form for …

Python
Medium
Problem
Closed
p789ahm
asked 3 years, 1 month ago
Views 966
Views 966

Hi Everyone,

I am confusing here, I haev installed "django-filter" in my virtual environment. And added the same into my …

Django
Medium
Problem
Closed
Anonymous
asked 3 years, 1 month ago
Views 235
Views 235

Successfully using this code to send HTTP requests with some parameters via GET method

void sendRequest(String request)
{
    // i.e.: …
Java
Medium
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 221
Views 221

How would you check if a String was a number before parsing it?

Java
Low
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 176
Views 176

What is the use of anonymous classes in Java? Can we say that usage of anonymous class is one of …

Java
Low
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 201
Views 201

I'm getting a NoSuchMethodError error when running my Java program. What's wrong and how do I fix it?

Java
Medium
Problem
Closed
Anonymous
asked 3 years, 1 month ago
Views 215
Views 215

I am getting a NoClassDefFoundError when I run my Java application. What is typically the cause of this?

Java
Low
Question
Closed
Anonymous
asked 3 years, 1 month ago
Views 256
Views 256

Is it possible to call a constructor from another (within the same class, not from a subclass)? If yes how? …

Java
Low
Question
Closed
First Previous 1 2 3 4 5 Next Last

Wanna Post Ad?
Reach a large group of audience by posting an ad about your business here. For more details
Drop us a Message
Why Teckiy?
Get Support for open source tools/framework with SLA's.
Are you a Freelancer?
Earn money by writing Blogs & solving tickets
Want to become a Techion?
Signup and start resolving tickets submitted by user
Earn Money
Gain Points and thereby Earn Money