Posts by talkitbr • 427 points
15 posts
-
1
votes1
answer311
viewsA: Install ASP.NET 5 on Linux
To install ASP.NET on Linux, follow the instructions below, based on the following link: https://talkitbr.com/2016/05/10/instalando-asp-net-5-no-ubuntu-14-04-lts/ Install the prerequisites if they…
-
1
votes5
answers3446
viewsA: What is the definition of Machine Learning (Machine Learning)?
Machine learning is one of the most relevant sub-areas of Artificial Intelligence (AI) that arose from the idea of creating programs that learn a certain behavior or a certain pattern automatically,…
-
2
votes2
answers22615
viewsA: Update the R version of Rstudio?
Update the version of R for those who use Windows is very simple as said above. I don’t know if you’re thinking of upgrading or reinstalling, but you can check out this tutorial with all the tips.…
-
0
votes3
answers6760
viewsA: When is the use of an Enterprise Service Bus (ESB) recommended?
Apparently you do not need to use a Service Bus, since you have opted for communication through Web Services. In any case, to get an idea of how it works and to do a more specific test, create a…
-
2
votes1
answer1727
viewsA: What is the compatibility mode of Internet Explorer for?
Internet Explorer has several rendering modes for different browser versions. We have from 5 (called IE Quirks) to Edge which is the rendering mode associated with IE11 and implements several new…
internet-exploreranswered talkitbr 427 -
1
votes3
answers1195
viewsA: Block Internet Explorer
The idea of simply trying to block Internet Explorer or redirect the user to another page may be too aggressive for users who still use this browser. The best alternative is to follow another path:…
-
2
votes2
answers903
viewsA: CSS background-blend-mode in IE (Edge)
Just by complementing the previous answer with the JS solution, there is also a feature in CSS that can make your work easier. It is the @supports. Through it you check whether certain property or…
-
0
votes3
answers201
viewsA: Internet Explorer Mode Patterns
Complementing the above answers, there may actually be several reasons why a site might not be displayed in standard mode. Among them we have: Not use <!DOCTYPE html> Specify the meta tag…
internet-exploreranswered talkitbr 427 -
3
votes3
answers681
viewsA: Learning in neural networks
Neural networks are one of the most famous types of machine learning algorithms and their main idea is to basically mimic the behavior of the human brain. If you have some knowledge in programming…
artificial-intelligenceanswered talkitbr 427 -
6
votes3
answers794
viewsA: Which CSS properties prefixes are compatible with Edge?
Just complementing the other answer, since 2014 Microsoft has been working more intensively to be able to display web content on their browsers. And it has been observed that many pages, especially…
-
0
votes1
answer226
viewsA: Access to location in windows 10 (universal app)
To provide location access in Windows 10 you need to add Devicecapability Location in the Package.appxmanifest <Capabilities> <Capability Name="internetClient" /> <DeviceCapability…
-
0
votes2
answers524
viewsA: Difference between Azure Queue and Queue Bus Service
The differences can be seen in the reply sent by Carlos Figueira. Speaking on the Queue Bus Service, it allows one-way communication. It provides a load balancing, where messages are received and…
-
2
votes2
answers674
viewsA: Passing parameter between pages
To navigate between pages, we must use the Navigate(Type pageType) method. And to include parameters, we use the Navigate(Type pageType, Object param method). For example, consider a page called…
-
1
votes1
answer896
viewsA: How to convert address to coordinates on Windows Phone?
It is possible to get the GPS coordinate from an address using the method Findlocationsasync. Follow an example: Geolocator geolocator = new Geolocator(); Geoposition geoposition = await…
-
1
votes1
answer167
viewsA: open a native android/Ios/wp app
In order to open applications through links you need to use URI Schemes. Windows Phone supports some types like: <a href="tel:(12) 3456-7890">Abrir discador</a> In this link you can find…