Posts by caribeedu • 145 points
11 posts
-
2
votes1
answer99
viewsA: How best to start developing a mobile app
First of all, it depends a lot on what you searching for, there is not the best language, but the one that suits your current need more. If you want to develop to multi-platform (Android and iPhone…
-
0
votes1
answer44
viewsA: Connect to a server via ssh
Go to Finder > Applications > Utilities > Terminal. Walk to the directory of your key Execute chmod 600 minha_chave.key (attention to file extension) Execute ssh -i minha_chave.key…
-
0
votes1
answer793
viewsA: Graphics for Node.js
After a brief search, here are some options I found (they all export the graphics generated on server-side to pdf directly): Anychart pdfmake Chartjs…
-
0
votes1
answer34
viewsA: JOB LINQ to update values in the database!
Considering that you are using a Model for these assigned values, it would be something like: //Your code Context.Entry(ModelName).State = EntityState.Modified; Context.SaveChanges();…
-
1
votes2
answers162
viewsA: FREE components (Upload, Email and Jpeg) in ASP 3
If you’re talking about ASP Classic Image Manipulation: Image Resize csImageFile (It’s $140, is already improving) E-mail: Crystone W3schools Code Project File Upload: Ask on the Stack Overflow…
-
1
votes2
answers394
viewsA: How to generate a random 32-byte Javascript token?
Using Crypto and a typed array function random32bit() { let u = new Uint32Array(1); window.crypto.getRandomValues(u); let str = u[0].toString(16).toUpperCase(); return '00000000'.slice(str.length) +…
-
3
votes1
answer120
viewsQ: Differences between Tensorflow and Dialogflow
So I’m starting out in the world of AI and Machine Learning and let’s say that not everything is well explained to beginners (maybe my ill will? maybe). I wanted someone to explain to me the…
tensorflowasked caribeedu 145 -
0
votes1
answer979
viewsA: What’s the difference between git pull and git fetch?
Git pull brings changes from the remote server, git fetch synchronizes changes between pending commits for uploading your machine and changes that are on the remote server.
-
0
votes1
answer179
viewsA: Changing the id of an element
Using jQuery would be something like this: //Crio a função recebendo o elemento function cellNeighbor(this) { //Pego o valor do atributo id let id = $(this).attr("id"); //Separo a para poder pegar o…
javascriptanswered caribeedu 145 -
0
votes1
answer42
viewsA: Flexbox problem in Firefox
Try changing the margin of "0 auto" (in case having to "configure" manually), it usually gives some incompatibilities depending on the browser.
-
4
votes1
answer1777
viewsQ: Concept of Angular System
Well, I started studying Angular (2 and 4) and I was a little lost in a few moments, the "Component" so cited as something essential confuses me a lot. After all what the concept or what is a…