Posts

symfony - An error in submit form registration FOSUserBundle -

Image
when have submit form in registration fosuserbundle have error : any apreciated. far vague determine answer you. if inspect normalizerformatter.php file @ lines 77 , 82 can see it's doing , problems occuring. normalizerformatter.php: 76 $count = 1; 77 foreach ($data $key => $value) { 78 if ($count++ >= 1000) { 79 $normalized['...'] = 'over 1000 items, aborting normalization'; 80 break; 81 } 82 $normalized[$key] = $this->normalize($value); 83 }

javascript - Angular Material: md-select-header inside tab not working -

i having trouble regarding problem. i using: angular material 1.1.0 angular 1.5.5 the problem occurs when put md-select inside md-tabs md-select-header(search box) doesn't work anymore. not @ explaining things see codepen below. http://codepen.io/aldesabido/pen/gzgrbr it works when this. <md-select multiple=""> <md-select-header> <input type="search"> </md-select-header> <md-optgroup label="vegetables"> <md-option></md-option> </md-optgroup> </md-select> but not when this. <md-tabs md-dynamic-height md-border-bottom> <md-tab label="vegetable tabs"> <md-subheader class="subheader"> <md-select multiple=""> <md-select-header> <input type="search"> </md-select-header> <md-optgroup label="vegetables"...

xcode - How to load images from Images.xcassets into a UIImage -

i trying code images uiimage having trouble. not sure how code each different image per list item. app building list pictures attached each list item. below mywhatsit class: class mywhatsit { var name: string { didset { postdidchangenotification() } } var location: string { didset { postdidchangenotification() } } var image: uiimage? { didset { postdidchangenotification() } } var viewimage: uiimage { return image ?? uiimage(named: "camera")! } init( name: string, position: string = "" ) { self.name = name self.location = location } func postdidchangenotification() { let center = nsnotificationcenter.defaultcenter() center.postnotificationname(whatsitdidchangenotification, object: self) } } below table view: override func numberofsectionsintableview(tableview: uitableview) -> int { return 1 } override func tableview(tableview: uitableview, numberofrowsinsection section: int) -...

Tortoise SVN Merge Multiple Branches into Trunk -

i know merging tortoise snv has been discussed (at length) cannot find answer situation. understand can merge dev branch trunk using merge wizard, proper workflow if want merge multiple branches trunk? in situation, created 3 dev branches (one each developer) project trunk. initially, dev branches , trunk identical. developers working in separate areas of project, multiple people not working same files. so, example, have trunk, b1, b2, , b3 trunk = b1 = b2 = b3 . now, after development, want merge changes each dev branch trunk. getting confused. have read can merge each branch trunk, 1 @ time (committing changes each branch before merging next one) since share same ancestory , tortoise smart enough know should changed. so: b1 -> merge trunk -> commit trunk (now trunk has b1 changes) b2 -> merge trunk -> commit trunk (now trunk has b1 , b2 changes) b3 -> merge trunk -> commit trunk (now trunk has b1, b2, , b3 changes) i have read should merge dev branch ch...

javascript - Plot.ly js wind rose chart -

Image
can me how generate different color in 1 wind rose area of plotly js? having hard time on solving different colors in 1 area because know in every area of wind rose, should have 1 color each area. below image on trying inform of you. wind rose chart and also, how can overlap lines/radius lines color on every area in visible rather lines. , how can remove label axis names. in right section, manually put color color should same chart dynamic colors.

android - Is it possible to detect nearest Bluetooth device? -

hello building app in android , need scan bluetooth devices , show nearest one. looked android's bt api , page http://code.tutsplus.com/tutorials/create-a-bluetooth-scanner-with-androids-bluetooth-api--cms-24084 . still can't find solution possible? an example of me standing , 2 more persons standing next me 1 one meter me , other 2 meters me, both phone , bluetooth on. need detect person 1 meter me. clarify need filter nearest device pool of devices bluetooth search returns me, not calculate distance between paired devices. grateful. i it's not possible on android, @ least not bluetooth. @ signal strength each device, it's possible signal strength stronger far away object close one.

bootstrapper - Wix doesn't remove previous version of burn exe during major upgrade -

i have created wix exe using burn bootstrapper. when try major upgrade on it, new version gets installed. features missing in new upgrade removed existing folder structure. in "add or remove programs" can still find both installations. have incremented version 1.0.0.0 1.0.1.0 in bootstrapper project's bundle.wxs file. have incremented version in setup project's product element 1.0.0.0 1.0.1.0. didn't change upgrade code in either of these files. created new guid product id in setup project's product.wxs. doing wrong here? why previous version still there in add or remove programs? please advice. below bootstrapper project's bundle.wxs. <wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/utilextension" xmlns:bal="http://schemas.microsoft.com/wix/balextension"> <bundle name="kube installer" version="1.0.0.0" manufacturer="zone24x7" up...