The apps listed here are publicly known to be built with Xamarin.Forms.
For a lengthy list of customer case studies and endorsements, visit the Xamarin Customer page.
https://play.google.com/store/apps/details?id=br.com.JetEbusiness.ZapCommerce
The apps listed here are publicly known to be built with Xamarin.Forms.
For a lengthy list of customer case studies and endorsements, visit the Xamarin Customer page.
https://play.google.com/store/apps/details?id=br.com.JetEbusiness.ZapCommerce
| @inherits Umbraco.Web.Macros.PartialViewMacroPage | |
| @{ var mediaId = Model.MacroParameters["mediaId"]; } | |
| @helper DisplayFolder(dynamic folder, bool collapsed) { | |
| var items = folder.Children().OrderBy("DocumentTypeAlias Desc,Name"); | |
| if (items.Any()) { | |
| <a class="list-group-item" role="button" aria-expanded="false" data-toggle="collapse" href="#[email protected]"> | |
| <i class="glyphicon glyphicon-folder-open"></i> @folder.Name | |
| </a> | |
| <div class="list-group @(collapsed?"collapse":"collapse in") well well-sm" id="[email protected]"> | |
| @foreach(var item in items) { |
| // Use whatever namespacing works for your project. | |
| namespace YourSite.Web.Controllers.Api | |
| { | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Net.Http; | |
| using System.Threading.Tasks; | |
| using System.Web; | |
| using System.Web.Http; |
| @inherits Umbraco.Web.Mvc.UmbracoViewPage<IPublishedContent> | |
| @using Articulate; | |
| @using Articulate.Models; | |
| @using Umbraco; | |
| @using Umbraco.Web; | |
| @using Umbraco.Core; | |
| @using Umbraco.Core.Models; | |
| @using System.Linq; | |
| @using System; | |
| @{ |
| // 1 | |
| db.BeginTrans(); | |
| // ... do stuffs | |
| db.Commit(); // or db.Rollback(); | |
| // 2 | |
| using(var t = db.BeginTrans()) // where t is LiteTransaction | |
| { | |
| // ... do stuffs |
| #!/usr/bin/env bash | |
| # Usage: bash uninstall_vmware.bash | |
| remove() { | |
| entry="$1" | |
| echo -ne "Removing \e[1;34m$entry\e[0m... " | |
| sudo rm -rf "$entry" &> /tmp/uninstall-vmware.log | |
| if [[ ! -e "$entry" ]]; then | |
| echo -e "\e[1;32mOK\e[0m" |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Web.Mvc; | |
| using Archive.FEE.Web.Helper.PDFParser; | |
| using Umbraco.Core; | |
| using Umbraco.Core.Logging; | |
| using Umbraco.Core.Models; |
| @inherits Umbraco.Web.Macros.PartialViewMacroPage | |
| @{ var mediaId = Model.MacroParameters["mediaId"]; } | |
| @helper DisplayFolder(dynamic folder, bool collapsed) { | |
| var items = folder.Children().OrderBy("DocumentTypeAlias Desc,Name"); | |
| if (items.Any()) { | |
| <a class="list-group-item" role="button" aria-expanded="false" data-toggle="collapse" href="#[email protected]"> | |
| <i class="glyphicon glyphicon-folder-open"></i> @folder.Name | |
| </a> | |
| <div class="list-group @(collapsed?"collapse":"collapse in") well well-sm" id="[email protected]"> | |
| @foreach(var item in items) { |
| <script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?language=fra&sensor=false"></script> | |
| <script type="text/javascript"> | |
| var map; | |
| var Markers = {}; | |
| var infowindow; | |
| var locations = [ | |
| [ | |
| 'Samsung Store Madeleine', | |
| '<strong>Samsung Store Madeleine</strong><p>5 Boulevard Malesherbes, 75008 Paris<br>10h – 20h</p>', | |
| 48.8701925, |
If you’re trying to delete a very large number of files at one time (I deleted a directory with 485,000+ today), you will probably run into this error:
/bin/rm: Argument list too long.
The problem is that when you type something like “rm -rf ”, the “” is replaced with a list of every matching file, like “rm -rf file1 file2 file3 file4” and so on. There is a reletively small buffer of memory allocated to storing this list of arguments and if it is filled up, the shell will not execute the program. To get around this problem, a lot of people will use the find command to find every file and pass them one-by-one to the “rm” command like this:
find . -type f -exec rm -v {} \;
My problem is that I needed to delete 500,000 files and it was taking way too long.