Skip to main content

Posts

Agentic AI growth could make GenAI providers to charge $1000-$2000 per month - #Cathywood , here is how.

      #Cathywood predicts that as the #agenticgenai grows the #GenAI service providers like openai, gemini, Copilot, etc will be able to charge $1000 - $2000 per month to their business customers. And she adds, "this is going to happen". Why this is important: Remember #Cathywood made a monster call in 2018, predicting that Tesla would hit $4,000 in five years. And eventually Tesla hit Wood's price target, with shares closing at $816, or $4,080 on a split adjusted basis (Jan. 2021). How this could happen: #AgenticGenAi means , 1. Integrating a business service with GenAI providers like Gemini/ChatGPT as an agent and make available in the chat interface. 2. Less human interaction and more calls to the GENAI Models. Nothing totally new, its similar to 'Ok google play a song from spotify' 'Alexa, order 8 pack dove on amazon' For example, when booking a flight, instead of navigating a complex travel website, users can simply provide a text prompt...

LLM on Mobile Phone : Mini Universal data and assistant running on an android smart phone Galaxy S23

  Imagine a world where everyone has access to a mini #OpenAI's #ChatGPT on their mobile phone, answering any question on any topic, right from their local phone memory. No need for internet. This is the future of #LLMs on mobile devices, and it's happening now. #MLC-AI has created a way to install a 3 billion parameter #RedPajam #LLMModel on a #Galaxy #S23 smartphone. This is a powerful #LLM that can generate text, translate languages, write different kinds of creative content, and answer your questions in an informative way. And it's all available on your phone, without the need for an internet connection. This could have a profound impact on people all over the world. Millions of suburban students who don't have access to the internet could now have access to a universal data source that can answer most of their questions. Refugee camps around the world could also benefit from this technology, giving refugees access to information and resources that they might not ot...

Will Software engineer salary hit $1 million by year 2030

Are todayā€™s Developers over loaded with too many tasks?! In 90s and till late 2000s there were many different job positions in an IT team that only do certain task. There was no Frontend engineers and backend engineers as most of the applications were thin clients in the browser side as the internet band width was very slow. There were jobs like Database Admins, Server Admins, Site Admins and so on to deal with one specific task.   Ever since the Startup culture took off again after the dotcom boom in the mid 2000s , in many cases the founder(s) had to do all tasks. Every single thing involved in the complete SDLC are done by one or two founders and hence there is more in their plate to get funding , business development etc.   And as the World internet infrastructure moved from dialup to DSL to Broadband, the browser apps became THICK CLIENTS. The corporate companies now started adopting Startup cultures into their companies IT strategy and thus Agile SDLC beca...

FireFox WebDevTool vs Chrome DevTools

    (For #webdevelopers ) Here is a difference in error detection between FireFox WebDevTool and Chrome DevTools. Some times #FireFox DeveloperTool provides most specific warnings than #Chrome #devtools Chrome: d.js:111 GET https://https/https://lnkd.in/g6tJMykE net::ERR_NAME_NOT_RESOLVED get @ sed.js:111 psearch @ sharedLogic-stripped.js:150 onclick @ create:304 create:1 Uncaught (in promise) TypeError: Failed to fetch Promise.then (async) get @ ed.js:119 psearch @ d.js:150 onclick @ create:304 FireFox: Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://https//https://lnkd.in/g27Fi-J8 . (Reason: CORS request did not succeed). Uncaught (in promise) TypeError: NetworkError when attempting to fetch resource. #devtools #Chrome #firefox #jsdeveloper #webdevelopment #troubleshooting

JENKINS : Intalling Jenkins on AWS Lightsail

  JENKINS : Intall on AWS Lightsail Installing Jenkins docker container on AWS Lightsail Bitnami Ubuntu instance From LightSail home page > open console bitnami@ip-4:~$ sudo docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES bitnami@ip-4:~$ sudo docker run -d -p 8080:8080 -p 50000:50000 -v jenkins_home:/var/jenkins_home jenkins/jenkins:lts bitnami@ip-172ā€“26ā€“1ā€“244:~$ sudo docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES99c4d9ca06a5 jenkins/jenkins:lts ā€œ/sbin/tiniā€Šā€”ā€Š/usr/ā€¦ā€ 14 minutes ago Up 14 minutes 0.0.0.0:8080->8080/tcp, 0.0.0.0:50000->50000/tcp xenodochial_galileo Click your AWS Instance Click on NETWORKING link Under IPV4 Firewall , select ā€˜Add ruleā€™ā€Šā€”ā€Šlink Set Customā€Šā€”ā€ŠTCPā€Šā€”ā€Š8080 (or whatever port you want to open to public) Now try browse your instance ip like this, 1.2.3.4:8080ā€Šā€”ā€Šthis will load the admin password page, Jenkins first page to enter secretkey next screen: Customize Jenkins next screen: install suggested plugins Je...

Mac terminal history - see , save, clear & search

  * This guide is based on zsh  terminal on  Big Sur MacOS.  Find all the commands from your terminal session $ history  -- shows short or partial list of your terminal commands history like below...  71  ls    72  open .zsh_history    73  open ~/ .zsh_history    74  ~/.zsh_history    75  sudo ~/.zsh_history    76  touch ~/.zshrc    77  touch ~/.zshrc_history    78  touch .bash_history    79  history 100    80  history 10    81  history    82  history > terminal_history.txt    83  touch terminal_history.text    84  touch terminal_history.txt    85  ls    86  cat terminal_history.txt $ history  0 -- this will show the maximum list of commands starting from 0 position $ history 10  -- this will show commands starting fr...

JSON in JavaSscript - Accessing fields and manipulations. ADD REMOVE, EDIT JSON ELEMENTS

ADD, REMOVE, EDIT JSON ELEMENTS  Reference from https://techtothepoint.blogspot.com/ Demo Link: https://jsfiddle.net/axkdwku6/51/ // Sample json object var json ={ "id": "", "entityname": "eset", "entitydescription": "", "entityTags": [], "esetname": "APAIBOT", "entityacl": [ "public" ], "fields": { "esetname": { "name": "esetname", "type": "string", "default": "", "id": "esetname", "field_order": 0, "entityreference": "", "acl": { "required": true } }, "description": { "name": "description", ...