Posts by Jefferson Bruchado • 205 points
6 posts
-
0
votes1
answer619
viewsA: Batch File to access multiple directories and run python script in different command prompts
managed to solve this problem, follows the code of . bat created: @echo off echo "this is the main batch script" for /d %%i in (C:\Test\*) do ( start python "%%i\example.py" ) pause…
-
0
votes1
answer619
viewsQ: Batch File to access multiple directories and run python script in different command prompts
Hello everybody all right? I’m trying to create a bat file to run python scripts in different directories, something like that: C:\Test | --- Test1\example.py | --- Test2\example.py | ---…
-
2
votes2
answers115
viewsA: Integration between Mailchimp and React Native app
Everything quiet around here? Amid some research and thoughts, I had a possible idea for the resolution of this problem, follows below what I did to realize the integration between Mailchimp and…
-
4
votes2
answers115
viewsQ: Integration between Mailchimp and React Native app
I’m a beginner in React Native. I’m basically trying to accomplish the integration between my application in React Native and Mailchimp, what I want to do is: Once the user provides us with his…
-
1
votes1
answer629
viewsQ: React Native application using Firebase
Hello, I am creating an application using React Native, and trying to integrate with Firebase, I found an application of Starter project, which already has the integration ready, just need to add…
-
3
votes2
answers327
viewsQ: Exact number of times a given character must repeat Regex
Hello, I’m with an exercise in formal languages, of which we work with Regex, the exercise consists in validating a chain that has exactly four 1s, for example: chain 1: 0110101000 - valid; jail 2:…