Francesco Bianco (yafb)
Francesco Bianco (yafb)
@Akababa @Zeta36 #17 WORST NUMBER!!
I'm so sorry, I expected an answer to the question, I saw that the other questions are very active, and I thought I was unlucky for the number 17 @Zeta36...
I have looked at ShellSpec with a lot of interest, I can say that it is an impressive work, which really takes your breath away. Not only the product but...
Hi! @Slamdunk @freescout-helpdesk @croensch @LinusBrockmeyer @sombatos The strategy to overcome the problem is replacing all the `imap_*` functions with the equivalent `imap2_*` - `imap_open(...)` become `imap2_open(...)` - `imap_getmailboxes(...)` become `imap2_getmailboxes(...)`...
Hi @Orgoth , please, get you a chance to PHP-IMAP2 (https://github.com/javanile/php-imap2) This is a FULL implementation of standard PHP IMAP functions like (imap_open, imap_getmailboxes, imap_*, etc...) This was full tested,...
Thanks! @Orgoth ! I'm not scared by hard work, my mission is to work full time on it, to build a professional replacement for standard IMAP. I'm looking for people...
Hi @svmk @justinnichols there is a news about this in version 0.1.5 we can use '--strict' option in commad-line The strict mode stop if 'Problem' occur during runtime (e.g. Syntax...
Hi @tgockel your patch is online on the new version https://www.npmjs.com/package/yamlinc/v/0.1.9 Thanks
@StephenNay parsing dates is a known problem of YAML, take a look at this https://github.com/nodeca/js-yaml/issues/161 to prevent this, my best choice is quoting as a string the date, but if...
Hi! Yes, you can do it. A possible approach is: create a file with include list ```yaml ## marge-all-this-files.yml $include: api-spec-from-jhon.yml $include: api-spec-from-mark.yml $include: api-spec-from-erik.yml ``` now run yamlinc ```...