Skip to main content

Posts

Student and Instructor Information System (Application Framework Final Project)

 I have contributed to the Student and Instructor Information system by adding the features that the requirements are asked. So I am happy to contribute to this kind of project in career that it enhance the my skills and also the team workings.                              To be honest, I didn't know anything about the nodejs. reactjs, expressjs and also the mongodb at the start of this semester. Even my internship is also going on core -java standalone applications, So I didn't know about Spring boot or react js. Thanks to Kushira sir for teaching how to interact with the new technologies.                      Is this Student Information system is suitable to build with mongodb? . In my opinion I think it is not best database for this kind of Student Inforamation System. The better to use Sql for the database is more suitable than using the mongodb...
Recent posts

Client-side web application framework

We  discussed  the  Single Page  Web  App  concept  in  the  previous  article  on  web  app  architecture,  where  one  of  the  architecture's  main  components  is  a   JavaScript  client  layer.  You  need  client-side  frameworks  to  set  it  up  properly,  such  as: Bootstrap React.js Angular.js Backbone Semantic-UI. While  your  choice  with  server-side  frameworks  depends  primarily  on  the  language  in  which  you  feel  comfortable  to  develop,  you  should  be  concerned  about  specific  capabilities  of  various  client-side  frameworks.

Server-side web application framework

Although  the  front  end  has  evolved,  the  primary  task  is  to  display  an  interface,  and  any  UI  /  UX  is  irrelevant  without  the  application  logic.  This  is  why  frameworks  on  the  server  side  are  important. Among the most popular MVC-based server-side web frameworks are: Symfony (PHP) Django (Python) Express (Node.js/JavaScript) Ruby on Rails (Ruby) ASP.NET (C#) You  allow  it  to  handle  HTTP  requests,  database  control  and  management,  as  well  as  URL  mapping,  by  using  either  of  these  server-side  web  application  frameworks.

Native Mobile App Development

This  is  Google  and  Apple's  first  preferred  way  of  developing  Android  and  IOS  apps.  The  development  of  the  Native  Mobile  App  involves  building  the  mobile  app  with  the  development  of  individual  platforms  (Android,  IOS)  with  two  different  code  bases  such  as  Android(Java  /  Kotlin)  and  IOS(Swift  /  Objective  C). Please  go  through  the  native  Android  development  in  one  of  my  articles  between  Java  and  Kotlin  to  know  better. Native  mobile  apps  provide  a  high  degree  of  reliability  and  fast  performance. These  two  platforms  (A...

The Security for the Internet of Things(IoT)

There have main four key levels in IOT Architecture It is Application layer, Support layer, Network layer and persistence layer instead of the Device layer. The lowest The level is persistence layer it is also known as recognition.including information of object properties and environmental conditions etc; and also physical information is RFID readers, various sensors, GPS and many more items. The main purpose is that the layer is collecting data by sensors To the physical world to the digital world. The Next Level is the network layer.It is doing transmission information from the persistence layer to support layer vice versa.in this layer, transmission is occurring several networks, which is satellite nets, internet, mobile communication networks, wireless networks and communication protocols are help to exchange information to the devices. The next level is the third layer.we called as support layer.it is provided service connecting application layer and the network layer. ...

CROSS-PLATFORM DESKTOP FRAMEWORKS

Latest tendencies cannot be ignored. After all, nobody wants to write 5 different versions of the same app from scratch. Using the cross-platform desktop framework is the best choice to develop a desktop app that later can be easily transitioned to another desktop platform, mobile devices, and web-application. The key advantage of the working with any cross-platform desktop framework is that you’re creating the unified codebase that later can be reused for the SaaS version of the software product thus significantly increase the target audience. You’ll have a plenty of options if decide to use that type of desktop frameworks and in this article, we will mention the best cross-platform desktop frameworks, which, in our opinion, will be the best fit for wide range of the projects.

Model View Controller architecture

More  than  80%  of  all  web  application  frameworks  rely  on  the  architecture  of  the  Model  View  Controller.  The  secret  of  the  popularity  of  this  pattern  is  how  rationally  it  separates  the  application  logic  from  the  interface  that  forms  the  3  components  reflected  in  the  name  of  the  architecture. Model The  Model  knows  everything  about  an  app's  content  and  structure.  It  communicates  the  way  an  updated  interface  should  look  directly  to  the  View  when  receiving  user  input  data  from  the  Controller. View This  is  the  fron...