Lanka Developers Community

    Lanka Developers

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Shop
    1. Home
    2. b6
    3. Best
    • Profile
    • Following 5
    • Followers 8
    • Topics 14
    • Posts 104
    • Best 34
    • Controversial 0
    • Groups 2

    Best posts made by b6

    • RE: PHP or Node.js

      PHP is a standalone, famous and widely using programming language to build server side applications. NodeJs is a javascript run-time which allows to run javascript as a server side language.

      But when you come to back-end development there are lot of architecture scenarios, that you should consider about.

      Use PHP,

      • If you are using monolithic architecture.
      • For standalone applications

      Use NodeJS

      • For API end points
      • Cloud Native Functions
      • Micro Service Architecture

      I recommend you to learn nodejs for your future career!

      posted in Web Development
      b6
      b6
    • RE: Jquery get values for P tag using id

      You cannot access multiple DOM element using same id. Because Id is unique for each element in entire DOM. So you can't use id ProductPrize in more than 1 row.

      I recommend you to use data attribute or hidden input fields or javascript array of object.

      posted in AI Programming
      b6
      b6
    • RE: firebase with laravel

      https://www.cloudways.com/blog/firebase-realtime-database-laravel/

      posted in Back-End Development
      b6
      b6
    • RE: Hacking websites with SQL Injection 💉

      @dev_lak :+1:

      posted in Information Security
      b6
      b6
    • RE: What is Frameworks in Programming?

      @dev_lak 👍👍👍

      posted in Blogs
      b6
      b6
    • RE: Cross Platform development using C++

      C++ is a low level language, And compatible with all platforms. But you should compile it to the current platfrom's executable format. Which means, You don't need to change your code, But you need to compile it for windows, linux & etc.. separately..

      However you shuold start from C++. Learn to code using C++. If your google for tutorial you can find alots of resources.

      Note: C++ is a strongly typed low level language, So you should learn about low level process architectures such as Hardware compatibles, Registers, CPU architectures & etc....

      posted in General Discussion
      b6
      b6
    • RE: What are the best cpanel alternatives (free)?

      https://domain.me/5-amazing-and-free-cpanel-alternatives/

      posted in Linux
      b6
      b6
    • RE: What is the different between return ($row) and return $row in php

      There is no different, Usually brackets used to grouping the calculation and get final value..

      Instead of,

      $amount = $price - $discount;
      return $amount;
      

      You can use,

      return ($price - $discount);
      

      But in your case, $row is an Array. Array is a single element, So no need brackets..

      posted in Back-End Development
      b6
      b6
    • RE: Cross Platform development using C++

      @rashmiee Yes #QT one of the famous framework. But however, In any language, Please improve your skills in core. Then move to frameworks. Because nowadays most developers are depending on framework, Some times you will need to modify the framework or need to work on company's custom framework or need to move to different framework. In that situation you will face hard time. Because you only able to work on perticular framework. Understand the core technologies, standards and methologies. Then you can adapt your self to work on any platform and framework.

      Good Luck!

      posted in General Discussion
      b6
      b6
    • RE: What are the best cpanel alternatives (free)?

      @root The best way to handle different sources files and configurations depends on region / feature / client, Use build tools like Jenkins / Travis-CI, It will build correct .env and config for each deployments

      posted in Linux
      b6
      b6
    • RE: Python - උදව්වක් (දෙන ලද කාලයට අනුව function එකක් call කරන්න)

      @malinga91
      You should try

      >> python -u yourscript.py
      

      Do not use

      >> python yourscript.py
      
      posted in Programming
      b6
      b6
    • RE: Top 7 Javascript Best Practices For Beginners 👍

      @GeethOnion Thx bro

      posted in Front-End Development
      b6
      b6
    • RE: MS SQL Server

      Both are licenced version. Do not download crack version, Because it may contain virus, And if you use in production it will totally destroy your server (Sometimes).

      If you want to learn,

      Create a free Azure SQL tier and use for a while.

      https://docs.microsoft.com/en-us/sql/ssms/sql-server-management-studio-ssms?view=sql-server-2017
      https://azure.microsoft.com/en-gb/free/

      posted in Windows
      b6
      b6
    • RE: SQL server consolidation for distributed system

      As I understood your question, I think you need to sync 2 databases (A & B) in one SQL server (localhost:3306). I don't know why you need to implementing this. But anyway If you are considering any performance issue, I prefer you to go with database replication.

      Anyhow, For your question refer this https://solutioncenter.apexsql.com/how-to-automatically-keep-two-sql-server-database-schemas-in-sync to get more details.

      posted in Programming
      b6
      b6
    • 1
    • 2
    • 2 / 2