Jump to content

qtguru

Members
  • Posts

    350
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by qtguru

  1. Mehn you guys are awesome, I had no idea I made Processwire weekly
  2. Nice ,I'll check it out.
  3. Thanks I will take a look at it.
  4. View at: https://okeowoaderemi.com I switched to Processwire 10 years ago and it's being my goto framework for maintaining my website and also developing for clients. Development I used the moduleTemplateEngineFactory and TemplateEngineTwig, Twig has always been my favourite templating engine, because of how easy it is, to use reusable code and have an easy way to inject content into the layout, it's almost like MasterPages in .NET (For the Oldies)
  5. 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 %}
  6. It's been a while currently trying to rewrite my website in processwire
  7. 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.
  8. It will be nice to have CI for Module, so it can be test against any new PHP Versions. Not a bad idea right ?
  9. 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.
  10. 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.
  11. Finally gotten a proper Microphone, will drop some multiple videos this week.
  12. 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.
  13. 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
  14. 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.
  15. qtguru

    Movie Talk

    I prefer DC, they tend to be darker, Marvel movies seem too comedic for my liking.
  16. 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
  17. 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.
  18. 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.
  19. @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
  20. 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.
  21. Same feeling I felt as a Developer when I stumbled upon Processwire coming from Wordpress, glad you love it
  22. 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
  23. 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.
  24. Way better with Processwire, since all you need to handle is content management.
  25. 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 ?
×
×
  • Create New...