Posts

maven - IntelliJ Project Structure full of "... and modules" and duplicates -

i have following folder structure: main - server -- server-module-1 --- --- b --- c -- server-module-2 --- d --- e --- f - client -- modules --- client-module-1 --- client-module-2 --- client-module-3 - war-module maven structure similar - main pom.xml: <modules> <module>server</module> <module>client</module> <module>war-module</module> </modules> the problem begins if move 1 module separate profile since don't need war-module (on jenkins). <modules> <module>server</module> <module>client</module> </modules> <profiles> <profile> <id>createmodule</id> <modules> <module>war-module</module> </modules> </profile> </profiles> after change, intellij project structure looks this: main , modules - client , modules -- client-modules , modules --- client-module-1 --- ...

Highlight specific points on line charts in Dygraphs for R -

is possible highlight specific points on line chart using dygraphs in r without pointer being located @ point? this can achieved in other graphing options plotting line chart , scatter plot together. since in dygraphs scatter plot not available there work around?

View JWT Token on jwt.io -

i came across badge section on jwt.io , 'view on jwt.io' caught eye. there way link jwt.io, shows users jwt token (from application) , verification key? skimming through code of page couldn't find clue on how that. did miss on page? i'm still trying find answer on how preload secret own, users see happening. however did manage link work correctly though: https://jwt.io/#id_token=your-token-here found on blog post: https://auth0.com/blog/2015/07/21/jwt-json-webtoken-logo/ not sure how supposed find before linked post on jwt.io . also linking here, because found it. had been trying find nicely formatted documentation our users ages (before linked them jwt.io ): https://auth0.com/learn/json-web-tokens/

asp.net - Is there any possibility to add master page for more then one existing .aspx page? -

i made update.aspx page , view.aspx page want assign master page these pages...can me out ? create new master page names site.master, move want update.aspx master, head section html content, , in body put placeholder: <asp:contentplaceholder runat="server" id="maincontent" /> now when "shared" master content moved update.aspx/view.aspx, need wrap that's left in pages this: <asp:content runat="server" id="bodycontent" contentplaceholderid="maincontent"> update.aspx page content </asp:content> in first line of page should have <%@ page ... attributes ... %>, add new attribute points master page: masterpagefile="~/site.master" for reference, create new webforms project , you'll few sample pages. see how should html content in master page like, , how wrap page content of aspx page. end result should this: site.master <html><head>...</head> ...

Bluemix: MQA : how to make phone shake harder in android to report bug and feedback -

i trying integrate bluemix mqa mobile app. using mqa-android-2.7.4.arr file in project. have 1 query related phone-shake below. how make phone shake harder in android report bug slight shaking popping screen multiple times? android devices have different accelerometers , same algorithm appears have different effects on each. i’m creating request enhancement add shake threshold slider shake gesture.

ruby on rails - sidekiq returns Net::SMTPSyntaxError: 501 -

i using rails , sidekiq sending out mails through background, when trigger emails returns error_message"=>"501 5.0.0 helo requires domain address\n", "error_class"=>"net::smtpsyntaxerror", "failed_at"=>1453973913.4580712, "retry_count"=>3, although works fine when shoot mails directly without sending sidekiq, appreciated. found it, because smtp authentication wrong. but got require domain address error fixed adding o allowbogushelo=bool in sendmail configuration, again got error 'smtp authentication failed' whence have got clue.

imap - How to get all mails with flagged use php -

i setting webmail. there fold 'flagged' meaning mail flagged. ,these mails mybe in sent folder or in inbox folder or in draft folder. there anyway them quickly?because imap_open function use 1 folder each time. imap_open("{localhost:993/imap/ssl/novalidate-cert}sent", "username", "password") imap_open("{localhost:993/imap/ssl/novalidate-cert}draft", "username", "password") imap_open("{localhost:993/imap/ssl/novalidate-cert}inbox", "username", "password") if not , need user loop,then merge 3 part of them together! use paging !oh, that's crazy! can me!