Nothing here yet.
Contract Work / dApplications
No blogs yet.
Thanks for the answer. After reading your reply, I do need to be more descriptive with my question. I am looking to dynamically rename the .app file. So storing it on github, google drive, or ftp isn't going to work. The problem I am trying to solve, is dynamically applying a referral code, to the electron application. What I've settled on, is renaming the application with an extension of the referral code. ex. folder-GDGSFH34.app Then I zip the folder, and send the download to the user. I am wondering if there is a more elegant way to do this, because this feels very brute force.
As a business owner, react is a sensible framework to choose for a particular project because of the amount of developers that now know the framework. If you choose some obscure framework, or get your developers to build a custom framework for you project needs, then the next developers to come and work on your project will have a barrier to entry to learn the code. If you chose React, then they just need to learn the use-case and they can easily write code for your project with litte-to-no barrier to entry. I think it is important to evaluate these decisions on more basis' than just the programming side. It also makes good business sense to choose React.
I have both been part of teams and been the team lead. I think there are instances where "tough love" can be a useful method/behaviour/tactic for improving your teams skills. That being said, you can always refrain from being a complete asshole to your teammates. If you're spending the majority of your day at work, then work should be a place where you go to learn, grow, and have fun. Work should not be a place where you're constantly feeling belittled by your leader. I think the one of the jobs of the team lead is to identify weaknesses within the team, and come up with constructive ways to build the skills throughout the team. This might mean, holding a weekly info session on a particular topic, or it might be empowering the more experienced members of the team to be the goto person for answering questions. I do think that Junior Developers in particular have a tendency to ask a TON of "Stupid" questions. How I would define stupid, is a question that Google can answer quicker than the team lead can. This is massively frustrating for team leaders, I've been in this situation. It distracts the team lead from doing important work, when that person could have just asked the same question to google and got the satisfaction of solving the problem on their own. In this situation, I do tend to give a brick wall answer like "you need to figure this out" or "Google it". I hope this helps! Always consult the all knowing oracle that is "The Google" before consulting your trusty leader. This way your leader wont hate you.
I checked out your repository that you linked. You need to run npm run build This will create the build directory for you. This is essentially the folder that you deploy for production. So if you're serving your site with apache or nginx, you want to point the server at /your/project/directory/ build . If you're serving your site with NodeJS, same thing. Serve the build directory, and it should automatically pick up the index.html file. I hope this helps.
Can you paste the code for the file you're trying to import the css file into? If your css file is in the same directory, and named App.css, and import would look like this. import './App.css';
Day Job I am working on setting up two-way sms communication with a phone/server through AWS PinPoint and SNS. Real pain in the ass to set this up on AWS. Twilio was a piece of cake though. Side Project Working on learning/implementing an idea in Solidity, the programming language for the Ethereum Blockchain