Skip to main content

Digital world and Marketing vs Social Media Posting - an elaborate architecture discussion

Hi Guys, I was discussing with some of my friends, working in current digital world, working best for their clients. They use to do many implementation techniques which effectively grows CLIENT's business.

Discussing with them an IDEA came into my mind, and I want to share that with you.

First of all I want to give the context about the post, and the area which it covers...
      Digital marketing is an wide area, which encompass many tools. Using these technique and tool helps GROWING BUSINESS. Who doesn't want to be on the first 5 list of a "GOOGLE SEARCH". Obviously if you are thinking about an prospect of marketing this will be your first goal, being on Digital era

Digital marketing helps Corporate Industries to hold their stakes in share
It helps startups to share themselves in Social and E-Media
It helps learners to find out the best solutions, which they want to be an expert
It helps customers via product survey (think about a product, while the manufacturer gone through a survey, they really visualize what people want)
...and many many other examples.

But...today I don't want to teach you Digital Marketing, as I consider myself as a Beginner only on that topic.

So what I want? I said, I have an idea.

If you are working on this era, this discussion might help you. You use lot of tools, it may be a Keyword tool, a Meta generator, a Content copyright tool...and so on. Eventually you post your content into desired places, may be social media like Facebook, Twitter, Insta, Ln, may posting to your client's blog. If you take a close look, there are three phases of this work:

  • gather content/media/asset which to be posted
  • fight with tools to establish best marketing solutions, may be keyword, meta, copyright etc.
  • post to desire places
Think about a device/tool, which have a plug-n-play capability. You are starting a new venture with your client/contract, you want to gather content from a repository of client, may it be VeevaVault/JCR/SFDC, plug it on your new project. You have specific tool set to work on, plug then accordingly, the SOCIAL MEDIA TOOL(which I am thinking now) will take care. You received the destination, plug them as well. May be you can think about support/warranty of your contract, you can a/detach your repo, destination and tool.

Working on the architecture part, stay tuned.....

[to be continued on next discussions]




Comments

Popular posts from this blog

Layered architecture of a modern web application - Analyzing needs of CMS

  Layered architecture of a modern web application discussed nowadays, in any framework Throughout my entire career, I have searched for the word design and architecture, and I am talking about Application Design in Software Development. Today I am going to discuss one same thing with you. When design a web applications solution architecture, the aspects are commonly Performance, Scalability, Cost effective and Robust. Now performance and scalability comes with layers in an application. A web application serving a particular requirement. And a specific feature which you can break down from the requirement, obviously asks for a feature, and that is scalability. Think about a shopping cart feature, and it requires to be scalable in terms of number of end users interreacting at any specific time. We generally think about how the feature can be scalable enough and then comes the obvious factor which is layers. A layer can be a hosting solution, a framework, a third party solution like...

What is DevOps and what should I learn? - Aniruddha Banerjee - Medium

The most necessary and well-discussed topic was, why should I learn DevOps….. Most of the tech guys like me prefer to introduce myself as a Scrum specialist, Agile developer or maybe the latest term “Fullstack Developer”. Well, what I want to say that, all these impressive adjectives are basically referring to those who work within the periphery of DevOps. DevOps is Dev(development) and Ops(operation), that we all know. We know that it’s a culture, but when the question arises, what should I learn, become a DevOps cultured geek, I found myself into tons of Certifications, billions of tools, trillions of methodologies. Not a joke, but if you fall under a situation like me, when Corporate pushing me to become DevOps cultured, but I feared about Exams(it’s a childhood phobia I adopted :P), rather practically implement something worthy, or at least tried it, I became aware at the end that, this someone already had achieved, I should try something new. To study DevOps, I think, i...

Composer and dependency injection

According to wikipedia, COMPOSER is an application-level package manager for PHP, and we will learn few more features about it. Download & Setup Windows : Download and run  Composer-Setup.exe Preferred way: Know your PHP version open cmd or gitbash and run php –v Prepare a shell script/bat file (composersetup.sh/composersetup.bat) Content of the shell script executable are: php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52 599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061’) { echo 'Installer verified'; } else { echo 'Installer corrupt’; unlink('composer-setup.php'); } echo PHP_EOL;" php composer-setup.php php -r "unlink('composer-setup.php');" Perhaps you noticed the php execution statement is in blue color. Whats in it? ...