کامپیوتر-نرم افزار-برنامه ها

  1. Azure Blob Storage - quick view

    Azure Blob Storage - quick view:

    Technical considerations:
    Assumption: File type is supported, files have proper naming convention to find them easily, no backup is needed, soft delete option is set for correct amount of time, firewall is not needed, other components such as connectivity /private endpoint/VM (for supporting the software) are already in place and they are beyond the scope of this document, the minimum latency is not required ( Standard tier).



    Azure Component: Azure Blob Storage ...
  2. Azure Cloud Adoption Framework (CAF)

    A Quick look at " Azure Cloud Adoption Framework" :



    A Quick look at " Azure Cloud Adoption Framework" :


    •Introduction: The Cloud Adoption Framework (CAF Framework) is a full lifecycle framework that enables cloud architects, IT professionals, and business decision makers to achieve their cloud adoption goals.
    It provides best practices, documentation, and tools that help you create and implement
    ...
  3. Azure Data Factory




    Purpose and reason of using Azure Data Factory for business and customers:
    1. Azure Data Factory is a fully managed, serverless data integration service that enable you to visually integrate data sources, construct ETL and ELT processes code-free or write your own code. (Simply, it allows you to move data from one service to another service via automated pipelines. You can easily and automatically receive/send data from/to your

    ...
  4. Restore SQL and VM in Azure (Disaster Recovery Plan)

    Restore SQL and VM in Azure (Disaster Recovery Plan) :

    Written by: Mohsen Pourghorbani Dinachali ( 31-01-2021)

    Note: In this scenario we used Azure “Recovery Service Vault” for backup the SQL and VM. Our SQL doesn’t have “Log Backup” and also, we do not have “Transactions” in the database.

    Restoring SQL:

    1.Log in to Azure portal (https://portal.azure.com)
    2. Choose the correct Subscription
    3. Go to the Correct “Resource Group”
    4. Click on the correct “Recovery

    ...
  5. php - How to use variable inside and outside class function

    In this example I will show how to use variables inside and outside class functions : php :

    روش استفاده از متغییر در داخل و خارج از کلاس : php :


    For instance , We have a file : "myclasses.php " and codes are :

    کد PHP:
    <?php
    class myclass{

    public 
    $myvar1;

    public static 
    $myvar2 ;


    function 
    myfunction(){

    $a =1+1;


    $this->myvar1 $a;

    self::$myvar2 234;

    }
    ...