Posts by LePy • 281 points
21 posts
-
0
votes2
answers888
viewsA: my virtual device in android studio does not open my application
Open the Android Studio Configure -> AVD Manager Choose the device you want to use -> Wipe Data 4) Try to open the device again…
-
0
votes0
answers14
viewsQ: Error climbing IPA - New applications using Uiwebview are no longer accepted - React Native
I’m going up an IPA to Testflight on https://appstoreconnect.apple.com/ and I got the following mistake: Use of obsolete API - New applications that use Uiwebview are no longer accepted. Instead,…
-
0
votes0
answers36
viewsQ: Permission to open camera denied on Android SDK 29
After changing the SDK to 29, the camera that used to open normally on the 28th is now denied permission. My project is developed in "React-Native": "0.59.9". Here are some additional information:…
-
1
votes1
answer25
viewsQ: Objects with equal name fields using scatter notation (spread Operator)
Considering two objects (user and unit): var user = { nome: 'Nome aqui', idade: 45 }; var unidade = { nome: 'Nome da unidade', idade: 22 }; // Spread Operador var dadosGerais = { ...user, ...unidade…
-
0
votes1
answer35
viewsQ: Return all values of a given property in a Javascript object array
I have a certain array var people = [ { name: 'Leandro', age: 36 }, { name: 'Joaquim', age: 29 }, { name: 'Maria', age: 25 } ] If I want to return the name property at the first position I do the…
-
1
votes3
answers131
viewsQ: Break string every 4 positions - Python
Whereas we have the following string. codigo = '7777. 5698 897897. 236' After removal of spaces and . codigo_formatado = ''.join(codigo_de_barras.split()).replace(".", "") codigo_formatado Exit…
-
0
votes1
answer613
viewsA: Runtime error '13': Incompatible types
Everything indicates that the problem is not in the migration of the operating system, but in the origin of the data that the macro is performing the reading. If the Cdec function is provided with a…
-
4
votes3
answers398
viewsA: Intersection between pandas columns
df.loc[df['id'].isin(df1['id'])]
-
0
votes5
answers79
views -
0
votes1
answer215
viewsQ: Return Query result to a variable - Classic Asp
It is possible to return the result of a query to a variable in the classic Asp? example: <% dim retorno as string set minha_conexao = dao.open() set rs = minha_conexao.execute("Select max(data)…
-
0
votes2
answers1462
viewsA: How to clear Python’s Idle screen?
Utilize import os os.system('clear') or None
-
2
votes1
answer89
viewsQ: Pivot Table.js - Filter default value
I am implementing on my page a pivot table similar to this: https://jsfiddle.net/nicolaskruchten/w86bgq9o/ I have the following question. Whereas the values of the Pivot Table field sex comes as…
-
0
votes1
answer106
viewsQ: Fill option with Flask data - Front x Backend
I have little knowledge in frontend and I’m needing to do the following: In my Backend I have a function which I run in python and which returns a list according to print. app = Flask(__name__)…
-
1
votes2
answers351
viewsQ: Compare Dataframes and show different information between them
I have 2 dataframes, the df_a and df_b. How do I compare them and show the information that is not contained in the dataframe df_a? I tried to perform the Uplicates drop method, however, the output…
-
0
votes1
answer302
viewsQ: What is the SQL Server compatible command for Mysql SHOW CREATE TABLE?
What would be the command in SQL Server to view the script for the creation of a given table? With a result more or less like this: +------------+---------------------------------------------------+…
-
0
votes2
answers184
viewsA: Difficulty to loop in VBA
Consider using the While structure. The structure will look something like this: Sub enviar_email() lin = 1 col = 8 'Coluna H Do While Sheet1.Cells(lin, col).Value <> "" Sheet1.Cells(lin,…
-
0
votes2
answers60
viewsA: Problems with formulas to extract texts with different spaces
Function ExtrairTextoPorCor(pRange As Range) As String Dim xOut As String Dim xValue As String Dim i As Long xValue = pRange.Text For i = 1 To VBA.Len(xValue) …
-
1
votes2
answers1450
viewsQ: How to extract information from table(html) and move to a Dataframe - Using Selenium
I am using Selenium to access the site http://www2.bmf.com.br/pages/portal/bmfbovespa/lumis/lum-ajustes-do-pregao-ptBR.asp and manipulate the date box and ok button. So far I managed to do the task…
-
1
votes2
answers60
viewsA: Problems with formulas to extract texts with different spaces
Do the following: Insert the code below into a module. Alt+F11, Insert, Module. Function ExtrairTextoPorCor(pRange As Range) As String Dim xOut As String Dim xValue As String Dim i As Long xValue =…
-
0
votes1
answer126
viewsQ: Check files that have a certain word - Python (Library os)
I have the code below which I access a certain folder and bring the name of all files with extension . Asp. import glob import os os.chdir('G:\PASTA\SUBPASTA') for file in glob.glob('*.asp'):…
-
1
votes1
answer53
viewsA: Extract names formatted with specific colors at different positions
EXT.TEXTO(A40;LOCALIZAR("AZUL";A40);4)