Posts by Ricardo Mendes • 115 points
5 posts
-
1
votes1
answer126
viewsQ: Minification in the Gulp
Someone knows how to minify js and css files at runtime. For example : In the HTML file, the call to the Javascript file looks like this : <script…
-
4
votes1
answer1210
viewsQ: How to decrease byte array size that represents an image
I have an array of bytes in Base64 that is in a string in C#. It represents an image. The size of the string is between 50 and 80 thousand characters. I wanted to know if it has how to decrease this…
-
1
votes2
answers134
viewsQ: Database server in Azure
I created a database server in Azure in the US. Before, my database was in Locaweb. In Azure, the queries to the bank became slower. I tried to create a server here in Brazil, It appears the…
-
3
votes1
answer108
viewsQ: Property of a class that belongs to another context in the Entity Framework
I have a class called Locker that has the following property : public virtual ICollection<LockerReserve> Reserves { get; set; } The problem is that Lockerreserve belongs to a different context…
-
2
votes1
answer111
viewsQ: Appcache in Asp.net MVC
I need to use the Html5 appcache to store some web pages. Before using MVC I simply did this regular expression to check if you are connected or not. var offlinePages =…