Id
int64
4
8.51M
PostTypeId
int64
1
7
AcceptedAnswerId
int64
7
75.5M
ParentId
int64
4
41.8M
Score
int64
-208
27.7k
ViewCount
int64
11
12.4M
Body
stringlengths
0
45k
Title
stringlengths
2
150
ContentLicense
stringclasses
3 values
FavoriteCount
int64
0
225
CreationDate
stringdate
2008-07-31 21:42:52
2011-12-14 18:48:47
LastActivityDate
stringdate
2008-08-01 12:19:17
2023-03-05 04:40:26
LastEditDate
stringdate
2008-08-01 13:54:25
2023-03-05 03:12:45
LastEditorUserId
int64
-1
21.3M
OwnerUserId
int64
-1
21.1M
Tags
listlengths
1
6
75,640,321
1
null
null
0
5
I have an App Source Code That's working Fine in Android Studio Emulator Above API 24 Devices But When I want to run it on API 24 or Below AVD Devices it says This Device not Supported . I want to know Can I run my App on Real Devices that come with API 24. this is code below ``` public class SplashActivity extends App...
How to run app on Api 24 emulator in Android Studio
CC BY-SA 4.0
null
2023-03-05T05:10:38.897
2023-03-05T05:10:38.897
null
null
17,139,220
[ "android-studio" ]
75,640,334
2
null
75,640,300
-2
null
Você pode usar um loop for para iterar sobre os elementos em J[0] e Cond[0]. Se o elemento correspondente em Cond[0] for True, você pode definir o elemento em J[0] como 0. Aqui está um exemplo de como fazer isso: J = [[0, 2, 0, 6, 7, 9, 10]] Cond = [[False, True, False, True, True, True, True]] for i in range(len(J[0])...
null
CC BY-SA 4.0
null
2023-03-05T05:13:27.957
2023-03-05T05:13:27.957
null
null
21,334,727
null
75,640,335
2
null
75,640,300
0
null
You have an operator error in the if condition. Here is the code for the same ``` J=[[0, 2, 0, 6, 7, 9, 10]] Cond=[[False, True, False, True, True, True, True]] for i in range(0,len(J[0])): if(Cond[0][i] == True): J[0][i] = 0 print(J) ```
null
CC BY-SA 4.0
null
2023-03-05T05:13:28.693
2023-03-05T05:13:28.693
null
null
20,721,048
null
75,640,333
1
null
null
0
11
I'm currently working on a web scraping project and working on how to determine the "best" file name for saving a file locally. I see a few options in determining what to name the file - scrape it from the url request (assuming a valid file name can be extracted), grab it from the response header, content-disposition f...
Getting a filename from a http web request/response
CC BY-SA 4.0
null
2023-03-05T05:13:25.243
2023-03-05T05:13:25.243
null
null
21,334,607
[ "python", "web" ]
75,640,331
2
null
75,640,254
0
null
Pydantic doesn't really like this having these private fields. By default it will just ignore the value and is very strict about what fields get set. One way around this is to allow the field to be added as an Extra (although this will allow more than just this one field to be added). The following works as you might e...
null
CC BY-SA 4.0
null
2023-03-05T05:13:00.643
2023-03-05T05:13:00.643
null
null
3,280,538
null
75,640,305
1
null
null
0
8
I have a smart TV on kitkat android, I want to connect a usb keyboard and set up keyboard shortcuts like in Windows, so as not to feel discomfort from non-convenient (standard) keyboard shortcuts, and I also want to add my own implementations of functionality that are not available in applications available in Google P...
how to change usb keyboard layout language using InputMethodService?
CC BY-SA 4.0
null
2023-03-05T05:05:51.000
2023-03-05T05:21:10.797
2023-03-05T05:21:10.797
20,462,516
20,462,516
[ "android", "keyboard", "key-bindings", "custom-keyboard", "input-method" ]
75,640,339
2
null
75,640,221
0
null
You can use `cameraCapture.get(<property id>)` to get different properties of the capture device. There's a full list of them [here](https://docs.opencv.org/3.4/d4/d15/group__videoio__flags__base.html#gaeb8dd9c89c10a5c63c139bf7c4f5704d), but the ones you're looking for are: - `cv.CAP_PROP_FRAME_WIDTH`- `cv.CAP_PROP_FRA...
null
CC BY-SA 4.0
null
2023-03-05T05:14:27.787
2023-03-05T05:14:27.787
null
null
17,773,547
null
75,640,327
1
null
null
0
4
Trying to get virtual slides working with `swiper element` and vueJS. But i am facing an issue, slides are not visible after initial few swipes. I find no documentation example of how `renderExternal` is supposed to be used. Here's my sample : [https://codesandbox.io/p/sandbox/frosty-rgb-cgkc94](https://%20https://cod...
SwiperJS virtual slider displays blank slides for renderExternal with vueJS
CC BY-SA 4.0
null
2023-03-05T05:12:03.320
2023-03-05T05:12:03.320
null
null
1,001,816
[ "vue.js", "vuejs3", "swiper.js" ]
75,640,337
1
null
null
-1
10
I have a road-based transit center facility which has inbound and outbound docks. It is not on a GIS map, but a custom-designed layout. I have a separate populations of inbound and outbound dock agents (7 and 8 respectively). For each dock, there is a node. How can I allocate each agent to separate node? //Define list...
How to assign agents to different nodes?
CC BY-SA 4.0
null
2023-03-05T05:13:44.047
2023-03-05T05:15:14.853
2023-03-05T05:15:14.853
21,334,659
21,334,659
[ "java", "anylogic", "agent-based-modeling" ]
75,640,332
2
null
75,640,079
0
null
You can use boolean masks: ``` n = 3 # Conditions first = df['col1'].ne(df['col1'].shift()) last = first.shift(-1, fill_value=True) greater = df.groupby('col1').transform('size').gt(n) # reverse the mask with '~' to keep rows with loc[] instead of using drop() out = df.loc[~(first | (last & greater))] ``` Output: ``...
null
CC BY-SA 4.0
null
2023-03-05T05:13:17.130
2023-03-05T05:13:17.130
null
null
15,239,951
null
75,640,341
2
null
74,778,682
0
null
Use the following package from NuGet and use it as same as System.Data.SqlClient Example: ``` Microsoft.Data.SqlClient.SqlConnection sqlconnection; sqlconnection = new Microsoft.Data.SqlClient.SqlConnection(StrConn); Microsoft.Data.SqlClient.SqlCommand comm = new Microsoft.Data.SqlClient.SqlCommand(query, sqlconnecti...
null
CC BY-SA 4.0
null
2023-03-05T05:14:49.107
2023-03-05T05:18:11.993
2023-03-05T05:18:11.993
3,392,605
3,392,605
null
75,640,340
1
null
null
0
8
I was wondering if there was a way to optimize the following that i'm probably missing. ``` ip_list = [] ipv4_list = ipaddress.IPv4Network('1.0.0.0/8') for i in ipv4_list: ip_list.append(str(i)) <-- This takes ~30 seconds ip_list.append(i) <-- This takes ~13 seconds ``` I wasn't sure if there was a way to spee...
Python Question regarding ipaddress.IPv4Network
CC BY-SA 4.0
null
2023-03-05T05:14:36.560
2023-03-05T05:22:44.417
null
null
7,546,711
[ "python" ]
75,640,336
1
null
null
0
23
I'm sorry if this is not an appropriate question for the programming exchange. I am having trouble with a function that is intended to calculate the saturation of oxygen in blood. I'm trying to use well known functions and science, but the result is coming back as a negative value who's absolute value is a few percent...
Difficulty calculating blood oxygen saturation
CC BY-SA 4.0
null
2023-03-05T05:13:40.237
2023-03-05T05:55:06.427
2023-03-05T05:55:06.427
17,256,356
17,256,356
[ "c#" ]
75,640,344
2
null
63,148,639
0
null
If the depended job run a lot faster than its dependents. You can just let them run in parallel. For example: Deploy an `expressjs` server is usually a lot faster than publishing to `Google Play Console`.
null
CC BY-SA 4.0
null
2023-03-05T05:16:12.460
2023-03-05T05:16:12.460
null
null
15,530,167
null
75,640,345
2
null
23,074,446
0
null
If anyone found this exception after enabling R8, maybe you need to add the following line in progaurd-rules.pro file
null
CC BY-SA 4.0
null
2023-03-05T05:16:30.650
2023-03-05T05:16:30.650
null
null
8,439,604
null
75,640,338
2
null
75,631,157
0
null
Excel can have all kinds of weird formatting that throws things off during the import process. You should save your Excel file as a CSV file, and import the CSV. ``` bulk insert yourtable from 'C:\file.csv' with ( FIELDTERMINATOR =',', FIRSTROW = 2 ) ``` Or, if you are open to a VBA solution to move data from your Exc...
null
CC BY-SA 4.0
null
2023-03-05T05:13:49.063
2023-03-05T05:13:49.063
null
null
5,212,614
null
75,640,350
2
null
70,728,922
0
null
Did you build your project successfully with py2exe or pyinstaller?
null
CC BY-SA 4.0
null
2023-03-05T05:19:07.560
2023-03-05T05:19:07.560
null
null
21,334,745
null
75,640,346
2
null
35,862,715
0
null
Just add -1 to the rowNumber ``` table { counter-reset: rowNumber-1; } table tr { counter-increment: rowNumber; } table tr td:first-child::before { content: counter(rowNumber); min-width: 1em; margin-right: 0.5em; } ```
null
CC BY-SA 4.0
null
2023-03-05T05:16:31.707
2023-03-05T05:16:31.707
null
null
17,447,477
null
75,640,347
2
null
75,630,067
0
null
[enter image description here](https://i.stack.imgur.com/MQkAA.png) ``` late final userRef = FirebaseFirestore.instance .collection('products') .doc(widget.productInfo['productId']) .collection('reviews'); num sumRates = 0; num ratesLength = 0; double averageRate = 0; bool isLoading = false...
null
CC BY-SA 4.0
null
2023-03-05T05:17:31.410
2023-03-05T05:17:31.410
null
null
20,493,890
null
75,640,349
2
null
75,623,565
0
null
The blue overlay was because of the following in my code. ``` @include mat.strong-focus-indicators() ``` For the mat-menu-item font, I updated the following in the component,ts. ``` @Component({ selector: 'app-nav-bar', templateUrl: './nav-bar.component.html', styleUrls: ['./nav-bar.component.scss'], encapsul...
null
CC BY-SA 4.0
null
2023-03-05T05:18:03.597
2023-03-05T05:29:59.860
2023-03-05T05:29:59.860
5,207,404
5,207,404
null
75,640,352
2
null
75,637,474
0
null
``` @override void initState() { Future.delayed(Duration.zero, () { if (mounted) { context.read<CampaignProvider>().getCampaigns(); } }); } ```
null
CC BY-SA 4.0
null
2023-03-05T05:20:10.187
2023-03-05T05:20:10.187
null
null
11,217,742
null
75,640,353
2
null
75,640,072
2
null
the two formulas are different there are mathematical laws such as bodmass rule to determine which of addition/substraction/multiplication/division will take place first. over the top of that in c language too there are right and left precedence in c language. however, sometimes wen you get the same answer it is just b...
null
CC BY-SA 4.0
null
2023-03-05T05:20:16.007
2023-03-05T05:20:16.007
null
null
21,232,911
null
75,640,354
2
null
71,617,057
0
null
My VSCode Python extension had in its settings, a default interpreter path that was an invalid leftover. Even if the interpreter selected at the bottom right for running the file was the correct one, this caused the problem reporter to encounter issues. I went into settings and reset the entry for `python.defaultInterp...
null
CC BY-SA 4.0
null
2023-03-05T05:20:31.397
2023-03-05T05:20:31.397
null
null
11,536,796
null
75,640,348
1
null
null
0
4
I'm trying to do this from scratch. I am also doing python for this. Current code: ``` import discord import os from keep_alive import keep_alive intents = discord.Intents.default() intents.message_content = True client = discord.Client(intents=intents) prefix = os.environ['PREFIX'] @client.event async def on_ready(...
Make a command that's only available for the owner of the bot to use, but the bot will send the message said by the user to every guild.bot is in
CC BY-SA 4.0
null
2023-03-05T05:17:42.013
2023-03-05T05:17:42.013
null
null
21,334,725
[ "discord", "discord.py" ]
75,640,357
2
null
72,115,135
0
null
I am sure instead of using someone's (open source) code you can build the whole thing yourself... you would save a lot of time then
null
CC BY-SA 4.0
null
2023-03-05T05:21:34.750
2023-03-05T05:21:34.750
null
null
6,521,171
null
75,640,343
1
null
null
-1
6
So I am working on a discord bot that uses the "!" prefix to then prompt the user to fill in different fields. However, the code runs fine, and the bot is running but the ! has no effect what so ever. I can use it to do other things within the bot. Like using !Percent 10 100, works fine. But I want the bot to show fiel...
Discord Bot prefix command not working as needed
CC BY-SA 4.0
null
2023-03-05T05:16:11.533
2023-03-05T05:37:47.993
2023-03-05T05:37:47.993
19,989,312
19,989,312
[ "python", "discord", "bots" ]
75,640,351
1
null
null
0
5
I am calling an api, it told me to use id as the endpoint path and the api will encode it to base36. ``` //const val id: Long = 68203991471 const val base36: String = "vbyw8mn" interface ApiService { @GET("v1/series/{id}") suspend fun getWebtoonApi(@Path("id") id: Long = 68203991471): Response<WebtoonJson> } ...
com.google.gson.JsonSyntaxException: java.lang.NumberFormatException: Expected an int but was 68203991471 at line 1 column 25 path $.series_id
CC BY-SA 4.0
null
2023-03-05T05:19:34.780
2023-03-05T05:19:34.780
null
null
18,335,183
[ "android", "retrofit2" ]
75,640,358
2
null
75,640,340
0
null
It's probably just a mild speed-up, but using IPNetwork's built-in function `hosts()` will return the same list: ``` ip_list = list(ipaddress.IPv4Network('1.0.0.0/8').hosts()) ``` The fact of the matter is, this is over 16 million addresses and it makes sense it'll perform badly. If you have an alternative way of doin...
null
CC BY-SA 4.0
null
2023-03-05T05:22:44.417
2023-03-05T05:22:44.417
null
null
17,773,547
null
75,640,356
2
null
75,640,213
0
null
Never mind. Here is the solution: ``` "transform": [ {"window": [{ "op":"distinct", "field":"DATE", "as": "BarNo"}], "sortby": ["DATE"], "frame": [null,0] }, { "joinaggregate": [{ "op":"max", "field": "BarNo", "as": "BarCount" }] } ] `...
null
CC BY-SA 4.0
null
2023-03-05T05:21:14.723
2023-03-05T05:21:14.723
null
null
7,297,902
null
75,640,318
1
null
null
0
16
So I have a component that I would like to display next to some text fields, but it isn't being displayed properly. [This is how it is currently displaying](https://i.stack.imgur.com/cISyQ.png) (Sorry can't attatch images yet). The PieChart still has to render the blue section, but I believe it is overlapping with the ...
React how to position a component next to another one
CC BY-SA 4.0
null
2023-03-05T05:09:35.500
2023-03-05T05:09:35.500
null
null
17,597,844
[ "javascript", "html", "css", "reactjs", "material-ui" ]
75,640,342
1
null
null
0
8
I'm learning data visualization using R and as a personal project I decided to track and plot all of my workouts. My csv file has three columns: "Date", "Activity", and "Duration". I'm having trouble getting the dates to appear in the right order on the graph. Here is my code: ``` log <- read_csv("Training Log.csv") g...
How do I order the x-axis by date in R using ggplot2?
CC BY-SA 4.0
null
2023-03-05T05:15:20.893
2023-03-05T05:38:16.077
2023-03-05T05:33:02.513
19,015,429
19,015,429
[ "r", "ggplot2", "visualization" ]
75,640,359
1
null
null
0
14
I have been trying to figure out how to (in C) put "getenv()" and "/filetest" into one char. I've thought that you could do it by putting: `char *file = getenv("HOME") + "/filetest";` But, I can't seem to figure it out. I tried after that to do: `char *file = getenv("HOME") && "/filetest";` But that didn't work either....
(C) How do I include a directory path after a getenv()?
CC BY-SA 4.0
null
2023-03-05T05:23:12.087
2023-03-05T05:58:30.500
null
null
20,375,569
[ "c", "char", "getenv" ]
75,640,361
2
null
69,554,879
0
null
Android: Place the script install.sh (Linux/Mac) or install.bat (Windows) at the root of your project. Execute sh install.sh([https://github.com/am15h/tflite_flutter_plugin/blob/master/install.sh](https://github.com/am15h/tflite_flutter_plugin/blob/master/install.sh)) (Linux) / install.bat([https://github.com/am15h/tfl...
null
CC BY-SA 4.0
null
2023-03-05T05:23:26.077
2023-03-05T05:23:50.957
2023-03-05T05:23:50.957
13,398,350
13,398,350
null
75,640,360
2
null
75,640,300
0
null
Your code : 1. J=[[0, 2, 0, 6, 7, 9, 10]] 2. Cond=[[False, True, False, True, True, True, True]] 3. 4. for i in range(0,len(J[0])): 5. if(Cond[0][i]==True): 6. J[0][i]==0 7. print(J) In line no.6 your statement : J[0][i]==0, here, the == operator is used for checking equality of the statement and returns a boolean ...
null
CC BY-SA 4.0
null
2023-03-05T05:23:24.107
2023-03-05T05:23:24.107
null
null
21,323,842
null
75,640,363
2
null
75,513,080
0
null
To bypass the preprocessor in the vertex shader of your THREE.js material, you can replace the #include directives with the corresponding code snippets. Here's how you can modify the shader in your fiddle: ``` skinnedMesh.material = new THREE.ShaderMaterial({ vertexShader: ` attribute vec4 skinIndex; ...
null
CC BY-SA 4.0
null
2023-03-05T05:24:19.613
2023-03-05T05:24:19.613
null
null
10,994,550
null
75,640,368
1
null
null
0
3
I am trying to load a bean of class simpleurlhandlermapping, But i couldn't find any logs from simpleurlhandlermapping class. How to check if the handlers are mapped? I tried loading the same bean without declaring any property(mappings,urlmap), I don't find any logs from simpleurlhandlermapping class even in this case...
I am trying to load a bean of class simpleurlhandlermapping, But i couldn't find any logs from that class. How to check if the handlers are mapped?
CC BY-SA 4.0
null
2023-03-05T05:25:23.983
2023-03-05T05:25:23.983
null
null
14,344,260
[ "spring", "spring-boot" ]
75,640,366
2
null
60,226,370
0
null
This error i have encounter when trying to connect sqlserver from a Node application. ``` const sql = require('mssql'); const config = { server: 'Deb', database: 'ProjectDB', port:1433, user: 'sa', password: '123', trustServerCertificate:true, options: { cryptoCredentialsDetails: { ...
null
CC BY-SA 4.0
null
2023-03-05T05:25:03.623
2023-03-05T05:25:03.623
null
null
5,418,530
null
75,640,367
1
null
null
0
9
Say I have a simple df, with columns `'month'`, `'year'`, and `'value'`. with matplotlib, I want to plot 'value' versus BOTH 'month' and 'year' simultaneously (unsure if this is the right way to phrase this) to achieve a plot that looks like something akin to this [](https://i.stack.imgur.com/CGOL4.png) Notice how the ...
Python, plot data versus month & year
CC BY-SA 4.0
null
2023-03-05T05:25:18.723
2023-03-05T05:30:15.040
2023-03-05T05:30:15.040
6,918,295
6,918,295
[ "python", "matplotlib" ]
75,640,369
2
null
25,231,022
0
null
You can use this tool to create mongoose queries from browser [https://www.jsexpert.io/Modules/QueryBuilder/Mongoose](https://www.jsexpert.io/Modules/QueryBuilder/Mongoose)
null
CC BY-SA 4.0
null
2023-03-05T05:26:58.590
2023-03-05T05:26:58.590
null
null
7,229,048
null
75,640,355
1
null
null
0
7
The tensorflow model includes preprocessing layer, TextVectorization that is adapted before the model is build. When trying to save the model in '.h5' format, it shows an error: *NotImplementedError: Save or restore weights that is not an instance of `tf.Variable` is not supported in h5, use `save_format='tf'` instead....
Save tensorflow model with TextVectorization layer in h5 format
CC BY-SA 4.0
null
2023-03-05T05:20:46.253
2023-03-05T05:57:32.833
2023-03-05T05:57:32.833
13,459,228
13,459,228
[ "python", "tensorflow", "tensorflow2.0", "hdf5" ]
75,640,370
2
null
75,640,230
0
null
If you are a Mac user try to check file name case sensitivity e.g if your file name is main.js and you are importing Main.js. Then it fails to detect files in mac machines sometime. Moreover try to check if pathname is correct and re-run the server after cleaning npm cache. For cahce clean you can use command: ``` > np...
null
CC BY-SA 4.0
null
2023-03-05T05:27:07.593
2023-03-05T05:27:34.073
2023-03-05T05:27:34.073
11,593,605
11,593,605
null
75,640,365
2
null
75,640,110
0
null
For each object, it checks whether the object already has a property with the same as the current object being looped over. ``` const array = [ { _id: "123456", value: 30 }, { _id: "123456789123456789", value: 12 }, { _id: "123456", value: 25 }, ]; const result = {}; array.forE...
null
CC BY-SA 4.0
null
2023-03-05T05:24:57.413
2023-03-05T05:28:33.943
2023-03-05T05:28:33.943
21,334,684
21,334,684
null
75,640,362
1
null
null
0
5
I am making the integration between the database and the **GIT **system. As a database I use postgreSQL and . Initially, I made it from **DataGrip **to export all the entities to the file and it turns out DUMP tables, triggers, functions, etc. Then I apply **Git **to the exported files. Now the question itself. I don’...
How to enable GIT to PostgreSQL in DataGrip?
CC BY-SA 4.0
null
2023-03-05T05:23:37.127
2023-03-05T05:23:37.127
null
null
11,792,287
[ "database", "postgresql", "git", "datagrip" ]
75,640,364
1
null
null
0
5
i have just installed vsce using `npm install -g @vscode/vsce` but after successfully installing cmd is showing this error : 'vsce' is not recognized as an internal or external command, operable program or batch file. i have run cmd with administrator because when i try to install without administrator it's showing thi...
'vsce' is not recognized as an internal or external command, operable program or batch file." after npm i -g @vscode/vsce"
CC BY-SA 4.0
null
2023-03-05T05:24:31.187
2023-03-05T05:24:31.187
null
null
16,987,115
[ "visual-studio-code", "npm", "vscode-extensions" ]
75,640,371
2
null
75,639,212
0
null
I'm sorry for asking but, why do you need variable with type of container? So there's an error that, you are declaring variables in the build method, and when you use setstate, build method is rebuild and your variables stay unchanged. Because they are also redeclared in the build method. Try to declare variables out o...
null
CC BY-SA 4.0
null
2023-03-05T05:27:35.820
2023-03-05T05:27:35.820
null
null
15,438,510
null
75,640,372
1
null
null
0
3
I'm reconciling a database with pay period reports with 3 different depts on 3 different sheets. I autofilter the pay period reports so I can compare the pay details with the database information on one sheet. There are 3 departments 2593,2591, and 2590. My macros autofilter the employees pay cheque details when I clic...
My macros work fine except when I click an item in a ListBox. Then the same code won't work
CC BY-SA 4.0
null
2023-03-05T05:27:40.510
2023-03-05T05:27:40.510
null
null
21,334,648
[ "excel", "vba" ]
75,640,376
2
null
75,631,154
0
null
Both containers are in the same network. So, in that case, you can use the real ports. First, update S3MockContainer by adding `withNetworkAliases("s3")`, then you can use `s3:9090` in your spring boot app in order to connect to. Also, I don't think you need `withAccessToHost(true)`.
null
CC BY-SA 4.0
null
2023-03-05T05:28:30.067
2023-03-05T05:28:30.067
null
null
2,203,890
null
75,640,373
2
null
75,640,243
0
null
To calculate the team average you only want to group by team information. With that in mind you don't need a `full join` either because if someone isn't on a team they won't affect the team averages, so use an `inner join`. ``` SELECT teamName , teamCity , AVG(DATEDIFF(YY, athleteDateOfBirth, GETDATE()) -...
null
CC BY-SA 4.0
null
2023-03-05T05:27:44.880
2023-03-05T05:43:46.933
2023-03-05T05:43:46.933
2,067,753
2,067,753
null
75,640,380
1
null
null
0
7
I'm using Spring Boot 3.0.3 and I've noticed that while the spring-boot-starter-parent dependency has version 3.0.3, the spring-core and spring-web dependencies have version 5.3.24 instead of 6.0.5. I'm using modules where the parent of the parent pom is spring-boot-starter-parent 3.0.3 and the parent of the child poms...
When using version 3.0.3 of the Spring Boot starter web, the version of Spring Core is 5.3.24 instead of the expected 6.0.5
CC BY-SA 4.0
null
2023-03-05T05:29:49.693
2023-03-05T05:37:16.927
2023-03-05T05:37:16.927
7,754,245
7,754,245
[ "spring", "spring-boot", "pom.xml", "spring-modules" ]
75,640,381
2
null
49,378,743
0
null
Tried everything above but nothing work then I move the following lines in App.js then it start working. ``` import { ToastContainer, toast } from 'react-toastify'; import 'react-toastify/dist/ReactToastify.css'; ```
null
CC BY-SA 4.0
null
2023-03-05T05:30:17.193
2023-03-05T05:30:17.193
null
null
1,297,948
null
75,640,378
1
null
null
0
12
I want to fetch the contributors of a GitHub repository using GitHub API and JavaScript. I am able to fetch the data but I need that data as JS valid data type so that I can manipulate it according to my needs. The fetched data is basically array of objects so I am not able to use it as an array of Maps. ``` async func...
Converting the fetched data using fetch() to JavaScript array of maps
CC BY-SA 4.0
null
2023-03-05T05:29:09.070
2023-03-05T05:51:26.307
null
null
16,091,362
[ "javascript", "fetch-api" ]
75,640,375
2
null
75,640,108
0
null
When the `t == a` check passes, the bytecode jumps straight back to the `for` line, skipping the `continue`. Here's the output you get if you examine the bytecode with `dis.dis` on CPython 3.9: ``` 1 0 LOAD_CONST 0 (4) 2 STORE_NAME 0 (a) 2 4 LOAD_CONST ...
null
CC BY-SA 4.0
null
2023-03-05T05:28:29.243
2023-03-05T05:28:29.243
null
null
2,357,112
null
75,640,383
2
null
75,528,749
0
null
you can use the -iterations command-line option with Qt Creator by modifying the run configuration for your test. Here are the steps to do so: 1. List item Select your test project from the list of projects. 2. In the "Run" section, click the "Details" button to open the run configuration editor. 3. In the "Command li...
null
CC BY-SA 4.0
null
2023-03-05T05:30:29.167
2023-03-05T05:30:29.167
null
null
7,291,068
null
75,640,374
2
null
75,640,021
0
null
It depends on your use case, based on your `how i want it` image , i am giving my possible solutions 1. Use fractionally width ``` <div class="content"> <div id="pm-header" class="margin-left my-3 overflow-hidden border-2 border-solid border-cyan-100 shadow shadow-gray-50">Header</div> <div class="flex"> <di...
null
CC BY-SA 4.0
null
2023-03-05T05:27:59.217
2023-03-05T05:27:59.217
null
null
13,431,819
null
75,640,382
1
null
null
0
13
``` ``` ``` import React from "react"; import { useParams } from "react-router-dom"; import { useState, useEffect } from "react"; const SingleUser = () => { const [user, setUser] = useState([]); const { username } = useParams(); useEffect(() => { const getSingleUser = async () => { try { con...
For some reason my code just display one time, when I refresh the page i am starting to get errors
CC BY-SA 4.0
null
2023-03-05T05:30:25.753
2023-03-05T05:43:56.070
null
null
21,312,736
[ "javascript", "reactjs", "fetch" ]
75,640,386
1
null
null
0
13
My Visual Studio has started adding these strange captions in places where they don't belong. Is this an add-on that I have? How do I stop this? Maybe if I knew what these things were called I could research it but I don't even know where to start without a name. [](https://i.stack.imgur.com/jMTkC.png) On this page it ...
Visual Studio Added Captions in wrong places
CC BY-SA 4.0
null
2023-03-05T05:31:29.387
2023-03-05T05:31:29.387
null
null
6,032,164
[ "c#", "visual-studio" ]
75,640,388
2
null
75,552,648
0
null
I figured out a work-around. I created a second README file, and then added to my setup.cfg of the python project the second, PYPI friendly, README. Then I added an additional test to my pipeline which ensured that there is no diff between those files after the logo section by ensuring that this diff is empty: `diff <(...
null
CC BY-SA 4.0
null
2023-03-05T05:32:54.587
2023-03-05T05:32:54.587
null
null
2,320,469
null
75,640,379
2
null
75,639,263
0
null
There are some issues with the comments fetch handler. First, `postId` is not defined within the function. It is defined in the `success` handler of your first `ajax` call, which is a different scope. You need to move it higher-up so that it will be available to both functions. You can put it right after the `$(functio...
null
CC BY-SA 4.0
null
2023-03-05T05:29:17.723
2023-03-05T05:48:29.737
2023-03-05T05:48:29.737
3,397,771
3,397,771
null
75,640,390
2
null
75,640,359
0
null
In C, string copy / concatenation is performed by strcpy / strcat: [https://www.tutorialspoint.com/c_standard_library/c_function_strcpy.htm](https://www.tutorialspoint.com/c_standard_library/c_function_strcpy.htm) [https://www.tutorialspoint.com/c_standard_library/c_function_strcat.htm](https://www.tutorialspoint.com/c...
null
CC BY-SA 4.0
null
2023-03-05T05:33:03.857
2023-03-05T05:33:03.857
null
null
9,036,555
null
75,640,389
2
null
75,640,171
0
null
There are a few things you can check to debug this issue. 1. Check that the subscription for the second SQS queue is active. You can do this by navigating to the SNS topic in the AWS console, selecting the "Subscriptions" tab, and verifying that the subscription is listed and marked as "Confirmed". If it's not confirm...
null
CC BY-SA 4.0
null
2023-03-05T05:32:59.743
2023-03-05T05:32:59.743
null
null
3,768,428
null
75,640,393
2
null
51,917,892
0
null
``` for (i in array.indices.reversed()) { println(array[i]) } ```
null
CC BY-SA 4.0
null
2023-03-05T05:33:39.813
2023-03-05T05:33:39.813
null
null
10,355,640
null
75,640,394
1
null
null
0
7
Can anyone please give me some ideas about NEMO network mobility implementation or is it an outdated protocol? Hope, I will get your response. Regards
NEMO network mobility in omnet++
CC BY-SA 4.0
null
2023-03-05T05:33:45.377
2023-03-05T05:33:45.377
null
null
21,334,769
[ "omnet++" ]
75,640,385
2
null
75,640,298
0
null
The Spring Boot docs link to the correct Spring version docs. For example, in the [Spring Boot 2.6.6 docs](https://docs.spring.io/spring-boot/docs/2.6.6/reference/htmlsingle/#features.developing-auto-configuration.condition-annotations.spel-conditions): > ### SpEL Expression Conditions The @ConditionalOnExpression a...
null
CC BY-SA 4.0
null
2023-03-05T05:31:00.870
2023-03-05T05:45:47.287
2023-03-05T05:45:47.287
1,334,619
1,334,619
null
75,640,396
1
null
null
-1
9
So I just started coding (Python) recently and I downloaded VSC for the first time. But as I was trying to import (as in for example 'import numpy', the numpy (all of them in my case) are colored a bit grayish and I cannot use them. I tried re downloading to no avail, It's working perfectly fine in Jupyter and/or Spyde...
Cannot import in vsc
CC BY-SA 4.0
null
2023-03-05T05:34:38.530
2023-03-05T05:34:38.530
null
null
21,334,736
[ "python", "visual-studio-code", "importerror" ]
75,640,391
1
null
null
0
6
A few months ago I used the module ``` networkx.algorithms.community.greedy_modularity_communities(G) ``` to detect communities within a graph G in python3.8. I had used networkx version 1.8.1 or 2.1 (I cannot remember clearly). I tried running the same code again but got the error "". I made the mistake of uninstalli...
Module 'networkx.algorithms.community' has no attribute 'greedy_modularity_communities'
CC BY-SA 4.0
null
2023-03-05T05:33:10.760
2023-03-05T05:33:10.760
null
null
9,620,610
[ "python-3.x", "networkx" ]
75,640,384
1
null
null
0
8
I have created a search box using a form input tag in react, I use Tailwindcss and Motion Framer for handling the animation. The search box will not appear until I click a button search and it will be closed after I click the Xmark button. I still can type on the input when the first try I open the search box, but afte...
Can't type on input field in React after close then open it again
CC BY-SA 4.0
null
2023-03-05T05:30:37.180
2023-03-05T05:30:37.180
null
null
11,935,587
[ "reactjs", "forms" ]
75,640,392
1
null
null
0
5
I am trying to play a sound (wav file) in a thread in a test method in Visual Studio. The code below in the test method tries to play the sound file three times. The first play works fine and demonstrates the code that is in the PlaySound method. The second play of the sound also works fine and demonstrates that the Pl...
SoundPlayer.Play makes no sound in a Visual Studio debugger thread
CC BY-SA 4.0
null
2023-03-05T05:33:28.897
2023-03-05T05:33:28.897
null
null
1,869,742
[ "visual-studio", "audio", "task", "soundplayer" ]
75,640,397
2
null
75,640,378
0
null
One-liner: ``` const data = (await fetchData()).map(obj => new Map(Object.entries(obj))); ``` About `fetchData`, it needs to be modified a bit: ``` async function fetchData() { const token = '<GitHub Token>'; const response = await fetch('https://api.github.com/repos/Bitwarden/mobile/contributors', { ...
null
CC BY-SA 4.0
null
2023-03-05T05:34:54.920
2023-03-05T05:51:26.307
2023-03-05T05:51:26.307
21,305,238
21,305,238
null
75,640,377
1
null
null
-1
4
Warning: Undefined array key "submit" in C:\xampp\htdocs\crud\input_info.php on line 564 Connection is established but I'm getting the above warning as an error due to which I'm uable to store data in the database. ``` <div class="container"> <form action="" method="POST"> <h3>Enter the following details :</h3>...
Undefined array key error in php Warning. Please let me know where I'm going wrong in the code
CC BY-SA 4.0
null
2023-03-05T05:28:52.803
2023-03-05T05:28:52.803
null
null
16,007,764
[ "php", "html", "forms", "web", "web-development-server" ]
75,640,401
1
null
null
0
6
I am completely new to programming and just started last month and my professor decided to suddenly gave us a project to do an individual android app that needs to do the following, but I don't know where to start. PS I already have android studio and the following misc installed. Tried online tutorial but I lag learni...
android app with voice command that shows current location and locate destinations
CC BY-SA 4.0
null
2023-03-05T05:36:34.060
2023-03-05T05:36:34.060
null
null
21,334,782
[ "android", "mobile-application" ]
75,640,387
1
null
null
0
7
I am implementing ngx-pagination with server side pagination in ASP.NET Core-6 Web API. Precisely, I have a search text input. I have this code: ``` { "data": { "pageItems": [ { "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "auditType": "string", "actionPerfo...
Angular - Search filter does not correspond with pagination in ngx-pagination
CC BY-SA 4.0
null
2023-03-05T05:32:51.883
2023-03-05T05:41:32.847
2023-03-05T05:41:32.847
16,347,043
9,037,515
[ "angular", "ngx-pagination" ]
75,640,395
1
null
null
0
7
I'm writing a build script for a multi-module project using gradle 8.0.2, declaring some dependencies in the libs.versions.toml file, and my build script is as follows ``` buildscript { repositories { gradlePluginPortal() maven { url = uri("https://plugins.gradle.org/m2/") } ...
Why does the dependency declared in libs.versions.toml not work in subprojects?
CC BY-SA 4.0
null
2023-03-05T05:33:49.747
2023-03-05T05:44:16.530
null
null
17,426,905
[ "java", "gradle" ]
75,640,400
1
null
null
0
6
I have a data file with 9 x 1 cell array fn = 9×1 cell array ``` {'speed' } {'duration' } {'exercise' } {'gender' } {'angles'} {'region' } {'space' } {'subject' } {'cost' } ``` When I use the code below, only one of the data is written to the first worksheet of the excel w...
How to export matlab data to excel sheets
CC BY-SA 4.0
null
2023-03-05T05:35:35.397
2023-03-05T05:35:35.397
null
null
13,390,959
[ "excel", "matlab", "variables", "export", "load" ]
75,640,402
2
null
60,931,967
0
null
Using Custome Resolver is not a good solution to handle it . We can use a "Include" method to map parent and child relationship . ``` CreateMap<Parent, ParentDto>() .ForMember(dest => dest.Childs, opt => opt.MapFrom(src => src.Childs.Select(x => x.Child)) .Include<Child, ChildDto>(); ``` CreateMap<Child, ChildDto>();
null
CC BY-SA 4.0
null
2023-03-05T05:36:58.063
2023-03-05T05:36:58.063
null
null
20,180,701
null
75,640,398
1
null
null
0
13
Change a strings character from every other letter from uppercase to lowercase using recursion and return that string. im trying to expand on my knowledge of recursion i know i could do this without it, but im wondering how you do it this way, this is what i have so far ``` public static String camelCaseRecursive(Strin...
recursion method that returns a string after changing every other letter from uppercase or lowercase
CC BY-SA 4.0
null
2023-03-05T05:35:16.553
2023-03-05T05:52:47.507
2023-03-05T05:40:22.157
4,405,757
21,334,658
[ "java", "string", "recursion", "methods", "return" ]
75,640,405
2
null
75,637,039
0
null
If a permission request is denied more than once, this is considered a permanent denial and the request is not prompted any more. Reset a state from settings:
null
CC BY-SA 4.0
null
2023-03-05T05:37:16.423
2023-03-05T05:37:16.423
null
null
18,309,290
null
75,640,404
2
null
75,640,359
0
null
Allocate a buffer big enough to hold the two strings, and then use `strcat()` to concatenate string2 to string1: ``` char buffer[BUFSIZ]; strcat (strcpy (buffer, getenv ("HOME"), "/filetest"); /* OR */ unsigned offset = 0; strcpy (buffer + offset, tmp); offset += strlen (tmp); strcpy (buffer + offset, "/filetest"); ...
null
CC BY-SA 4.0
null
2023-03-05T05:37:07.087
2023-03-05T05:58:30.500
2023-03-05T05:58:30.500
20,017,547
20,017,547
null
75,640,403
2
null
75,640,260
1
null
None of your average metrics will be between 0 and 1 if you're trying to predict the price of a car. However, if you are trying to predict the size of an ant, you might say "I have a problem" with such values :-) The price you predict has an average absolute error of +/-$20k. So you can consider the confidence interval...
null
CC BY-SA 4.0
null
2023-03-05T05:37:02.940
2023-03-05T05:37:02.940
null
null
15,239,951
null
75,640,409
1
null
null
0
13
I am so confused!! What should I do ?? Devops or Data Science or Machine learning ? I am ready to do any but which would be easy to do? I am not getting which one has more advantages by putting future aspects to considered!
Hello, Kindly help me what to do?
CC BY-SA 4.0
null
2023-03-05T05:39:16.067
2023-03-05T05:42:37.380
null
null
19,831,058
[ "machine-learning", "data-science", "devops" ]
75,640,399
2
null
75,640,275
0
null
The error you are getting is because you are trying to use a ref on a functional component. To approaching this, you can wrap your component with `React.forwardRef()` and pass the ref as a prop. By wrapping your component with `forwardRef` you can pass the ref down to the `Input` component. I ``` import { useRef, u...
null
CC BY-SA 4.0
null
2023-03-05T05:35:22.370
2023-03-05T05:50:46.107
2023-03-05T05:50:46.107
21,179,250
21,179,250
null
75,640,408
2
null
75,640,256
0
null
As explained in to [the documentation](https://docs.unity3d.com/ScriptReference/Resources.Load.html), the path you pass to `Resources.Load` is relative to the `Resources` directory, and must not contain the extension, so it should be this: ``` myCollection.Add(Resources.Load<GameObject("dogPrize")); ```
null
CC BY-SA 4.0
null
2023-03-05T05:38:36.193
2023-03-05T05:38:36.193
null
null
71,141
null
75,640,406
2
null
75,640,342
0
null
``` log = structure(list(Date = c("2/6", "2/9", "2/11", "2/13", "2/15", "2/16", "2/17", "2/18", "2/19", "2/19", "2/21", "2/24", "2/25", "2/26", "2/27", "2/28", "3/1", "3/2", "3/3", "3/3"), Activity = c("BJJ (Gi)", ...
null
CC BY-SA 4.0
null
2023-03-05T05:38:16.077
2023-03-05T05:38:16.077
null
null
6,137,782
null
75,640,411
2
null
75,639,579
0
null
``` useEffect(() => { let newButtons = [ "btn-primary", "btn-primary", "btn-primary", "btn-primary", "btn-primary", "btn-primary", ]; if (answer < 18.5) { newButtons[0] = "btn-danger"; } else if (answer >= 18.5 && answer < 25) { newButtons[1] = "btn-dange...
null
CC BY-SA 4.0
null
2023-03-05T05:39:42.593
2023-03-05T05:39:42.593
null
null
11,438,227
null
75,640,416
2
null
75,634,626
0
null
I able to achieve this by using a data class, like ``` @kotlinx.serialization.Serializable data class Param(val country: String) return client.post(URL) { contentType(ContentType.Application.Json) setBody(body = Param(query)) }.body() ```
null
CC BY-SA 4.0
null
2023-03-05T05:41:13.990
2023-03-05T05:41:13.990
null
null
2,130,718
null
75,640,410
2
null
55,242,832
0
null
I had the opposite problem where I was cross compiling and my debian based distribution was setting the aforementioned variable to 'no' and it was causing link errors. I found [here](https://bugs.lttng.org/projects/lttng-ust/repository/lttng-ust/revisions/faebb41808b9deda5ef5dfea0c035077407e7f9f/diff/configure.ac) tha...
null
CC BY-SA 4.0
null
2023-03-05T05:39:16.353
2023-03-05T05:39:16.353
null
null
9,105,824
null
75,640,413
1
null
null
0
6
I am using WAMP (64 Bit) on Windows 11 (64bit) , and PHP 8.1.0. I downloaded the zip file from [Microsoft website](https://learn.microsoft.com/en-us/sql/connect/php/download-drivers-php-sql-server?view=sql-server-ver16) I copied php_sqlsrv_81_ts_x64.dll and php_pdo_sqlsrv_81_ts_x64.dll to extension_dir. I added these l...
WAMP + Windows 11 (64bit) + PHP 8.1.0. + SQL Server + Laravel : PDOException - could not find driver
CC BY-SA 4.0
null
2023-03-05T05:40:33.677
2023-03-05T05:40:33.677
null
null
1,255,274
[ "sql-server", "laravel", "wamp", "php-8.1" ]
75,640,415
1
null
null
0
4
In identifying and documenting business requirements, systems analysts need to be able to distinguish between laws, policies, and procedures. Why is this important? In identifying and documenting business requirements, systems analysts need to be able to distinguish between laws, policies, and procedures. Why is this i...
systems analysts need to be able to distinguish between laws, policies, and procedures. Why is this important?
CC BY-SA 4.0
null
2023-03-05T05:41:01.397
2023-03-05T05:41:01.397
null
null
21,301,913
[ "google-analytics", "system" ]
75,640,417
1
null
null
0
4
this error occurred after I ran , i was following along with this [article](https://dev.to/shashannkbawa/deploying-vite-app-to-github-pages-3ane). below is a photo of my files as well as the command line. not sure how to properly deploy[](https://i.stack.imgur.com/nRxqO.png)
Trying to upload a vite project to git hub pages, but command line says You need to run this command from the toplevel of the working tree
CC BY-SA 4.0
null
2023-03-05T05:42:00.360
2023-03-05T05:42:00.360
null
null
21,071,229
[ "git", "github", "github-pages", "vite" ]
75,640,414
1
null
null
0
4
I'm trying to read a month's worth of Reddit data from Pushshift. These files are around 30gigs, compressed (zst format) of json data. I am trying to convert these files to parquet. Here is the code: ``` time ~/prog/duckdb -c "copy (select created_utc, body, author, subreddit, parent_id, id from read_ndjson_auto('RC_20...
duckdb getting 'Error: IO Error: Frame requires too much memory for decoding' error when reading very large files
CC BY-SA 4.0
null
2023-03-05T05:40:50.797
2023-03-05T05:40:50.797
null
null
46,799
[ "duckdb", "zstd" ]
75,640,418
2
null
75,640,409
0
null
Demand: All three of these career paths are in high demand, but the level of demand may vary depending on your location and industry. You may want to research job openings in your area to get a better idea of the demand for each of these roles. Salary: Salaries for DevOps, Data Science, and Machine Learning can vary de...
null
CC BY-SA 4.0
null
2023-03-05T05:42:37.380
2023-03-05T05:42:37.380
null
null
18,284,380
null
75,640,421
2
null
75,640,395
0
null
Sorry this is a duplicate issue, I've found a solution for it [How can I use gradle versions file for multimodule gradle app?](https://stackoverflow.com/questions/73950099/how-can-i-use-gradle-versions-file-for-multimodule-gradle-app)
null
CC BY-SA 4.0
null
2023-03-05T05:44:16.530
2023-03-05T05:44:16.530
null
null
17,426,905
null
75,640,412
2
null
75,532,652
0
null
The error message indicates that there is an issue with the installation of the service worker script. Here are some things you can try to resolve the issue: Check that your service worker file (ngsw-worker.js) is located in the correct directory. Make sure that the path specified in your ServiceWorkerModule.register()...
null
CC BY-SA 4.0
null
2023-03-05T05:40:10.250
2023-03-05T05:40:10.250
null
null
10,994,550
null
75,640,424
2
null
59,025,940
0
null
You need React when you want to use JSX. So if you are doing this in a component where you need to have JSX: ``` import React from "react"; ``` is the way to go since React already imports the other hooks and its properties. You can simply write is as `React.use...` However, if your component (or a custom hook) does n...
null
CC BY-SA 4.0
null
2023-03-05T05:45:20.913
2023-03-05T05:45:20.913
null
null
8,349,557
null
75,640,423
1
null
null
0
4
Hello everyone and thank you for your time first. I am working on a Hadoop streaming job with a python mapper and reducer. Therefore my command looks like yarn jar /where/hadoop-version/blahblah/hadoop-streaming.jar. -files mapper.py,reducer.py -mapper mapper.py -reducer reducer.py -input input.txt -output output Howe...
Hadoop streaming Python Mapper and reducer error message print. Is that possible?
CC BY-SA 4.0
null
2023-03-05T05:45:11.620
2023-03-05T05:45:11.620
null
null
11,781,983
[ "python", "hadoop", "error-handling", "bigdata" ]
75,640,420
2
null
75,640,382
0
null
The error message "TypeError: Cannot read properties of undefined (reading 'last')" is indicating that you are trying to access the property 'last' of an undefined object. This is likely because the user state is initially an empty array, and the API request has not completed yet, so user[0] is undefined. You can add a...
null
CC BY-SA 4.0
null
2023-03-05T05:43:56.070
2023-03-05T05:43:56.070
null
null
18,344,090
null
75,640,427
1
null
null
0
3
I have a folder containing thousands of folders. In each of those folders, there is a single .nfo file as well as one or multiple files of extension .t64 The .nfo should always be renamed to the folder name. If there is only one .t64 file in the folder, I need it to be renamed to the exact folder name as well. However ...
Batch file to conditionally rename files inside folders using folder name and if multiples append a text string and numbering
CC BY-SA 4.0
null
2023-03-05T05:46:31.563
2023-03-05T05:46:31.563
null
null
21,176,191
[ "batch-file" ]
75,640,422
1
null
null
1
17
I want to create a function named `countVowels` that takes string as a parameter named `word` and returns the number of vowels in the word. I came up with two solutions but I don't know if they are good solutions or not. I guess I don't even know how to judge what 'good' code is. My question is ... 1. What could be th...
How do I write good codes about making function that counts vowels in a word?
CC BY-SA 4.0
null
2023-03-05T05:44:49.690
2023-03-05T06:02:11.223
null
null
18,667,785
[ "javascript" ]
75,640,430
2
null
75,553,050
0
null
use https instead of http while fetching git repositories from github to azure.
null
CC BY-SA 4.0
null
2023-03-05T05:47:29.950
2023-03-05T05:47:29.950
null
null
11,346,221
null
75,640,425
2
null
75,634,626
0
null
The error log indicates that there is an issue with the JSON input. The error message suggests that the JSON parser was expecting a string literal with quotes, but it received a JSON object that was not enclosed in quotes. The issue seems to be with the following line of code: ``` body = Json.encodeToJsonElement(query....
null
CC BY-SA 4.0
null
2023-03-05T05:45:37.920
2023-03-05T05:45:37.920
null
null
4,667,109
null
75,640,429
2
null
75,640,121
0
null
The output of the `rolling` function must be a number, so you cannot return a `list` that is the rolling result into `col_3` directly. You should use `window.to_list()` to get the windowed value list first and then produce the result. code: ``` import pandas as pd def check_stable(args, thr=0.05, length=3): if len...
null
CC BY-SA 4.0
null
2023-03-05T05:46:58.070
2023-03-05T05:46:58.070
null
null
10,587,221
null