Posts by CEPEL SOMA • 182 points
5 posts
-
1
votes1
answer585
viewsQ: The chmod command does not work as expected when using MINGW32
The command chmod does not work as expected when using the MINGW32 on Windows. I tested only on Windows 10 64 bits. $ cat ~/bin/minha-shell echo "Esta é minha shell" ls -lat /c/ $ chmod 777…
-
9
votes3
answers2587
viewsQ: What are the advantages of using Docker instead of Vagrant?
I’ve been using Vagrant and I’ve been hearing good things about Docker. I am a developer of web applications. What are the advantages of using Docker instead of Vagrant in a software development…
-
1
votes1
answer528
viewsA: Vagrant related problem while running Vagrant up on mac os x
The address https://atlas.hashicorp.com/ubuntu/boxes/trusty32 is valid but it is trying to access via IP address version 6. In my Yosemite works with the following Vagrantfile: # -*- mode: ruby -*-…
-
4
votes2
answers963
viewsA: The if command in java is not working within a method
Simple answer: Java strings are objects and each has a different reference (memory address), for example this.senha and this.aSenha so testing the refections via operator == always return false. In…
-
1
votes1
answer2219
viewsA: How to include Bootstrap files in a theme?
You also need to add the Javascript file because these components depend on Javascript code. Put after your tag that includes the JQuery. Example to put on <head> <script…