Jump to content

qtguru

Members
  • Posts

    346
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by qtguru

  1. Progress is going on well, as usual my choice for Development: TemplateEngineFactory + Twig {% for article in articles %} {% set divisor = 10 %} {% if loop.index0 == 0 %} <div class="flex-center flex-col aa-list"> <h4>Articles</h4> <ul> {% else %} <li> <a href="{{ article.url }}" target="_blank" >{{ article.title }}</a > <span> {{ article.publishedStr }}</span> </li> {% endif %} {% if loop.index % (divisor + 1) == 0 %} </ul> </div> <div class="flex-center flex-col aa-list"> <h4>Articles</h4> <ul> {% elseif loop.last %} </ul> </div> {% endif %} {% endfor %}
  2. It's been a while currently trying to rewrite my website in processwire
  3. Are the 3 forms independent or you must fill one to access the other, I think it's not bad if contained within a switcher. We've created an app which required multi-forms prob 20 fields, Banking Apps forms depending on the Account type.
  4. It will be nice to have CI for Module, so it can be test against any new PHP Versions. Not a bad idea right ?
  5. I guess a curious question will be for Modules developers any of your modules breaking with PHP 8 and great to be back to this forum.
  6. If you really want to get into JavaScript, I will also advise Nicholas Zakas book Advanced Javascript for Advanced Developers, it teaches about ES6 , classical approach and the true nature of JavaScript, most teach ES6 from the beginning which is wrong to me.
  7. Finally gotten a proper Microphone, will drop some multiple videos this week.
  8. Yes, I am using a CandySkull Headset as mic, but I have a Lapel mic, I am looking to get those professional mics and also understand Adobe Premiere audio better, the next video will have a much better sound quality.
  9. Thanks Mustapha, I really appreciate the support, I am working on more content and also working on making the transitions and effect more jazzing. I'll update this thread as I push more contents
  10. Personally when it comes to UI as much as I am a fan of that, I am more interested in the code, because of my past experience in Enterprise Companies, I have seen ugly code slapped with an amazing UI. However one thing that irks me off from Kirby is the flat file concept. I am not sold on that, as @teppo mentioned I can't imagine the insane logic adopted to pull such complexities over using files. Seems unnecessarily when RDBMS works. At the end of the day Processwire is Headless, so nothing stops us from getting someone from Dribbble to design a new Admin UI, However I find AdminReno Theme perfect. I also don't think Devs can be easily swayed by UI however the Kirby codes looks interesting , plus so much similar to PW at the same time.
  11. qtguru

    Movie Talk

    I prefer DC, they tend to be darker, Marvel movies seem too comedic for my liking.
  12. I didn't want to create a topic for this, so I decided to use my existing thread , as mentioned, I am creating some Youtube tutorials around Processwire, I feel a video is much more easier to help people getting started with Processwire. So I did a first video introduction, However I quickly realized my dilemma with self expression skills when talking, so I am working on that but here is the first video and I hope to drop a Video per week or more depending on how fast I can get things out but I am also open to covering other complex topics too around Processwire. Thanks and I hope this helps out a lot of people. NOTE: LOL Working on how I sound too ?, bear with me Love from Nigeria
  13. If you want to make some style editing then it is overkill extending the main core php files, why not alter the CSS for the field comments, that is the approach i do for the FieldComments.
  14. You should create a Frontend Admin for your users, I think there is a Module for that, but I wrote something years ago doing exactly what you want but here it is incase you are looking for different angles to look at it.
  15. @bernhard I am up for it if you can share the knowledge, I can write an article around it as a tutorial since I tend to write tutorials. Ironically this was part of a series I am creating for Processwire, just video editing skills delaying but writing this as a tutorial shouldn't be a problem. Just let me know what you need me to do, I will create time for this. Take care
  16. Hi guys, so this thought came to my head after seeing only a commercial application on Envato Market ( CodeCanyon ), An Hotel application platform using Processwire, because lately as a result of my country, I can't easily do alot of things to get paid via PayPal and there isn't much commercial avenue with Processwire community e.g Marketplace or a store, my question is has anyone ever thought of selling solutions built with Processwire on the themeforest market or experience with that. It is just something I'd figured to raise up here, because it is one of the easiest CMS to have installed and deployed with an application. Hoping to get feedbacks and insights.
  17. Same feeling I felt as a Developer when I stumbled upon Processwire coming from Wordpress, glad you love it
  18. Personally I favour TypeScript, I come from a strong background of static type and one of the things about JavaScript is that it is massively loosely type, a var can be any type, this can be confusing and also allow you make silly mistakes like assigning re-assigning to another type and experiencing strange issues and error. TypeScript compiler takes care of all that, it ensures that all the rules are followed, if you expect a certain type of object in a method, it's interface will assist. There are also some complex TypeScript features. I cannot fathom the use of JavaScript anymore especially if it is a large project, however one of the downsides is that you might often write codes just to satisfy TypeScript compiler, I have so many codes that do not provide business value, they are just there to make TypeScript compile. With TypeScript you will get massive introspection and also the TSC ( TypeScript Compiler ) will massively catch a lot of errors for you, assuming you write 100% typescript code. I have seen developers write JS code in TypeScript which is a shame, as they do not get to utilise the full impact of TS. My personal opinion others might differ
  19. I am working on that trust me, but a little video editing and Kdenlive skill gap which I am working on, I have tons of materials to push for Processwire learning. Processwire is awesome I am coming from Symfony and Spring Boot and Processwire makes alot of things easier and so much you can do. I will let you know.
  20. Way better with Processwire, since all you need to handle is content management.
  21. What does the error in Google Chrome console say, Processwire $config->urls->templates works, there must be an error message and if you are on a unix system, what is your permission level too ?
  22. Not Processwire jacmaes is right, check your php.ini settings max_uploads.
  23. Exactly, however *shameless insert* , I am working on Screencasting and creating Processwire video contents both for beginners till Advanced level, a bit of me is wondering if it is something that will received by the community. I am currently honing my Video editing skills back. Do you think the community might find this useful. I have always wanted to contribute PW resources since I tend to spend alot of time around the code. Thanks
  24. Side comment: Huge Manga / Anime fan here Main Comment: You can get a template that has the similar view and plugin in Processwire easily to do that, however do you have this online or somewhere, I don't mind looking at this if you need a third eye , just give a shout-out if things get out of hand. I tend to peek at codes alot and make sense of them especially Processwire.
  25. I don't see why you can't in Processwire, you have can your Business Logic as you would in any PHP Application, but only using Processwire API to handle the information you collect from the front-end, into it's Admin, or you can build your business logic in a Module and save to your Database. so It is possible very much. The Backend will extremely work in your favour as it has good API to easily have a backend view to see your transactions. Others will reply with their view, but it depends on your processwire knowledge and PHP skills. Sephiroth
×
×
  • Create New...