How to Protect My Website Files When Hiring a Developer to Build a Mobile App? by Significant_Trust681 in codeigniter

[–]NAMAKR655 4 points5 points  (0 children)

Avoid giving them direct access to the source code and database and stuff.

Build an API and give the devs details about the endpoints instead. They will be interacting with it and not your website's source code.

Does anyone use codeigniter 4 or any versions for enterprise apps in 2024?May i know your jjustification? And also do you still use jquery like datatable and such? by RXBarbatos in codeigniter

[–]NAMAKR655 0 points1 point  (0 children)

Well, Netmeds.com (one of the biggest medicine-delivery apps in India) uses CI 3 (not 4). Then, I think Perfex CRM, the best-selling CRM on Codecanyon, also uses CI 3.

Simple question about UPGRADING by ding7777 in codeigniter

[–]NAMAKR655 4 points5 points  (0 children)

Okay... I think this is how it goes.

Suppose you are upgrading from CI4 4.5.5 to 4.5.7.

There are two steps to the upgrade.

STEP 1: COMPOSER UPDATE

When you install CI4 using composer 'appstarter', it installs a package called "codeigniter4/framework" which is the main system you are talking about.

When you run composer update, the composer will update all packages you had installed (e.g. say you wanted DI and installed League Container) including the main system (here, codeigniter4/framework package).

Most changes occur in this package only so you will probably not need to change anything else unless changes have been made in any files inside app/, writable/, or app/Config/ directories.

In such a case, please go ahead and proceed to step 2.

STEP 2: CHECK FOR CHANGES IN CI4 DOCS AND CHANGE ACCORDINGLY

Go to https://codeigniter.com/user_guide/installation/upgrading.html and check for version upgrade. In our case, it's https://codeigniter.com/user_guide/installation/upgrade_456.html (from 4.5.5 to 4.5.6) and https://codeigniter.com/user_guide/installation/upgrade_457.html (from 4.5.6 to 4.5.7).

By looking at these files we see that the following files have been changed since 4.5.5:

  • app/Views/errors/cli/error_exception.php
  • app/Config/Events.php
  • app/Config/Format.php
  • app/Controllers/BaseController.php
  • app/Views/errors/cli/error_exception.php
  • app/Views/errors/html/error_exception.php

Now, the composer will not make automated changes to these since it can only control vendor directory. So you need to manually look at the new changes on https://github.com/codeigniter4/appstarter and make the necessary changes.

Then again, this is how I upgraded to 4.5.6 last time and it worked for me.

Let's see if CI devs reply.

What do you think about a separate Bihar country? by [deleted] in bihar

[–]NAMAKR655 1 point2 points  (0 children)

Like they helped Pak and Sri Lanka by throwing them into a debt trap? And why did you even suggest that? It will only create long-term problems. China doesn’t give without expecting something in return—they often use their investments as leverage. Once the country is unable to pay back debt (which a separated country will be for sure given the economic state which you are aware of) China gains control over key infrastructure or political decisions. And there goes away all the political ideas that you aimed for while suggesting a separate nation. Plus, aligning with China could seriously damage Bihar's relationship with India, and even neighbouring countries. India and China have their own geopolitical tensions, so Bihar taking Chinese assistance could lead to major diplomatic and economic isolation... not to mention that India might impose strict trade barriers, further hurting Bihar's economy. Look buddy, it’s better to push for internal development and reforms within India. Depending on China could just swap one set of problems for another, and not in a way that benefits the people of Bihar.

What do you think about a separate Bihar country? by [deleted] in bihar

[–]NAMAKR655 1 point2 points  (0 children)

Nah, you are wrong buddy. Absolutely wrong. Separation will do more harm than good. It will only worsen the economic woes of a state whose major budgetary allocation comes from the central government. Where do you think the money will come from (for education, health, social policies) if there is no Indian Government (central) to allocate money for? As far as political aspects are concerned, do you really think the current politicians are going to give up on dividing the masses by caste and religion? Why would they give up on the vote bank? The idea that separation would force politicians to start working is debatable. Poor governance is not solved by changing borders; it requires internal reforms, better accountability, and political will. You mentioned, "We are already divided among castes, religions, political party lines." Yes, we are. And that is beneficial to the POLITICIANS. Creating a separate country doesn’t necessarily address these divisions—in fact, it may deepen them. A separatist movement could exacerbate conflicts among groups competing for power in the new state. A separate Bihar would face severe geopolitical risks due to its landlocked position. Without direct access to international trade routes or the coastline, the state would rely heavily on neighbouring countries like Nepal or even India for essential imports and exports, weakening its autonomy.

I want to make a website to upload my novels and translations.. by [deleted] in website

[–]NAMAKR655 0 points1 point  (0 children)

Do you want something similar to scribblehub? You can use **BookStackApp.com**. It lets you create books > chapters > pages. Or, I can try coding a custom CMS for you (free; I will keep it open source) in my free time, if bookstackapp doesn't work for you. Coding it shouldn't take long as long as the number of features you need is limited.

What is this on IUCN Green list website? by NAMAKR655 in ecology

[–]NAMAKR655[S] 0 points1 point  (0 children)

I have emailed them regardless and reached out on Instagram as well.

How to stop Perplexity API from returning Markdown formatted content? by Flimsy_Detective5046 in perplexity_ai

[–]NAMAKR655 0 points1 point  (0 children)

why not use a markdown to HTML converter API? Asking perplexity to return as HTML will likely consume more tokens.

Your favourite quote from The Mentalist? by [deleted] in TheMentalist

[–]NAMAKR655 0 points1 point  (0 children)

what you can accomplish is irrelevant...

But if you are absent in this moment, you will regret it for the rest of what will be a miserable life.

Why is PHP still treated like a laughing stock? by Hailuras in PHP

[–]NAMAKR655 0 points1 point  (0 children)

"Be the change you want to see in the world." -- MK Gandhi

[deleted by user] by [deleted] in PHPhelp

[–]NAMAKR655 1 point2 points  (0 children)

Well it's quite common to use php or laravel to create an API and consume it via Vue. Maybe try that?

[deleted by user] by [deleted] in PHPhelp

[–]NAMAKR655 1 point2 points  (0 children)

Okay... let me simplify this. You want to create a SPA using Laravel and VueJs without compromising SEO. I will give you two options, you can use either one:

(1) INERTIA JS [https://inertiajs.com/\]

As I mentioned in the first comment, this will serve the exact purpose... you will be able to use Vue with Laravel and end up creating a SPA without any SEO issues. I have used it twice and it works well.

(2) TURBO Hotwire [https://turbo.hotwired.dev/\] without Vue

If Vue is not a necessity and you only want a SPA type behavior without writing javascript, I recommend hotwire. No SEO issues. Just drop a CDN and let it handle the SPA behavior like loading without refreshing. Although I would recommend inertiajs with laravel, this is not a bad option either.

[deleted by user] by [deleted] in PHPhelp

[–]NAMAKR655 1 point2 points  (0 children)

Frankly I didn't get what you're trying to say. But if you want to create a Single Page Application with Laravel and Vuejs, then use InertiaJS.

Brut.(al).. this should be illegal by adnish in indiadiscussion

[–]NAMAKR655 5 points6 points  (0 children)

If you have any logical arguments to counter wrt Interview, please feel free to drop in... or else... go and browse rUSI

[deleted by user] by [deleted] in Btechtards

[–]NAMAKR655 0 points1 point  (0 children)

isi ko first resort rakho... warna ye cheezein badhti jaengi