or tag

453 questions


1 answers
132 views
0
Python flask admin RuntimeError: maximum recursion depth exceeded

@babel.localeselectordef get_locale(): print 'check2' if 'lang' in session: cur_lang = session['lang'] if cur_lang in app.config['SUPPORTED_LANGUAGES'].keys(): return cur_lang else: return reques...

2 years ago

2 answers
118 views
0
java.lang.ArrayIndexOutOfBoundsException: 4

void playNote(int pitch, boolean state, int instrument) { //If current note has to be played and is not active. if (state == true && activeNote[pitch] == false) { //Send ON, channel, pitch and...

2 years ago

2 answers
161 views
0
Python-Repeat List 2 with each argument in List 1 without duplication

How do I simplify the code below?Newlist =[ ]A_list = [a, b, c, d, e, f]page_list = [1, 4, 5]''''''''''''''''''for 'A' in A_list:names1 = Class Method Function (type='A', page=1)Newlist.extend(names1)...

2 years ago

1 answers
78 views
0
Please excuse the error

I made a java Library module in Android studio, and there is no problem with Compile, but there is a problem when running;; It's been a few days since Googleing, but I haven't solved it yet ㅠ 구 The r...

2 years ago

1 answers
127 views
0
App runs only on emulator and force shutdown on actual device (Android studio, Java)

This time, I made an app using Android Studio, Java (minimum support version 4.4)But strangely enough, if you turn on the app emulator in the Android studio itself (pixel 2, version Pie), it runs well...


1 answers
114 views
0
There is an error when running Helloworld as an app in the introductory book to Android Studio, so I would appreciate it if you could tell me how to solve it.

I pressed Run while running the emulatorAs shown in the picture above, there is an error called emulator-5554 null.

2 years ago

1 answers
63 views
0
It's the code I got. The game is not running...Help me!

I scratched the game source code I found on the Internet, modified only the image part and css part, and ran it, but Uncaught ReferenceError: $ is not defined and it does not run... What's wrong with ...

2 years ago

1 answers
85 views
0
Python 3 Code Questions...

// Enter your code hereimport datetime # API for 4 weeks Top20 statistics Date Processing for real timenow = datetime.datetime.now() # Current dateweeks4 = now + datetime.timedelta(weeks=-4) #current ...

2 years ago

1 answers
132 views
0
I have a question for you. (Second)

import pandas as pd import pandas_datareader.data as web from pandas import Series, DataFrame import datetime import matplotlib.pylab as plt import numpy import seaborn as sns stock = {'msft' : 'MSFT'...

2 years ago

1 answers
131 views
0
Error in inf file (c2059 syntax error: constant)

I made source C with visual studio, but there is an error in the inf file that I read during the build process.(input path)\paper.inp(1):error C2059: Syntax error: 'constant'An error like this appears...

2 years ago
« - 17 - »

© 2024 OneMinuteCode. All rights reserved.