Posts

Dart notes:

1- using final and const with data collection   you cannot modify data collection "Set,List,and Map'  if it is const . example:  const List empList = ['Tarek','Ali','Hamed'];   empList.add('Adel'); // Error in correct  empList = ['Hani']; // error In correct   However , with final there is a difference. You can modify a final List ,Set,Map using only add or addAll method.  example :  final List empList = ['Tarek','Ali','Hamed'];   empList.add('Hani'); // correct  empList.addAll(list2); //correct    2- Switch case used to test literal value.  example:  String name = 'Ramy'; Switch(name) {   case 'rami': print(false);   case 'RamY': print(false);   case 'Ramy' : print(true);   default: print('not valid');   }   In dart, you do not have to use break, it will break automatically.Unlike java, if condition evaluated true,statment will be execute...

How to install Apache superset docker container, configure ssl

 login in to ubuntu machine  install docker host clone  the repo:  https://github.com/apache/superset.git update the docker-compose.yml file : expose the 443 port     5- update the nginx.conf file , add:  server {         listen 443 ssl;         server_name backend.samiphotolishz.com;         ssl_certificate /etc/ssl/certs/certificate.crt;         ssl_certificate_key /etc/ssl/certs/private.key;         # Other SSL configurations like SSL protocols and ciphers can be added here         location / {             proxy_pass http://superset_app;             proxy_set_header Host $host;          ...