Posts by everton • 1,362 points
6 posts
-
3
votes1
answer301
viewsA: Workflow to revert dev branch changes to master
Which I suggest in this case: 1: Reset dev branch to master state. See on documentation the difference in flags --soft, --mixed (default) and --hard. git reset master 2: Create a backup Stash with…
-
3
votes2
answers275
viewsA: Editing of captured fabrics for making manuals
Maybe that answer in Software Recommendations be useful to you. Using the Picpick you can capture the images and already work with them in the form of "whiteboard", can make indications, annotations…
documentationanswered everton 1,362 -
6
votes4
answers1866
viewsA: How do Stringbuffer() and Stringbuilder() behave?
This is related to the standard sizes and the way the internal buffer is incremented, both for the StringBuffer how much for the StringBuilder. You can see that because you’re inspecting the field…
-
27
votes3
answers35092
viewsQ: Ajax cross-Omain request with pure Javascript (no Apis)
I have two applications in different domains, and I need to make a request Ajax between them saw POST or GET so cross-Domain. What would be the safest way to implement this in Javascript, without…
-
66
votes5
answers24456
viewsQ: AJAX request with pure Javascript (no Apis)
Usually, when we need to resort to requisitions AJAX using Javascript, we have handy Apis that help us with this (e.g.: jQuery). However, what would be the safest and cross-browser to make these…
-
12
votes3
answers918
viewsQ: Alternative to check if the window is a popup
I have a page that can be opened both by my own domain and externally, both as a "normal" window and as a popup. In this window, I need to check whether it was opened as a popup or not, and perform…