• Are you able to do Mysql and Wordpress management ? My friend Steve Foerster is looking to hire someone to manage his work, do connect directly if you are interested in this work.
    Are you able to do Mysql and Wordpress management ? My friend Steve Foerster is looking to hire someone to manage his work, do connect directly if you are interested in this work.
    0 Комментарии 0 Поделились 533 Просмотры
  • Any Mysql and PHP security Experts here ? Inbox me and write here please, Thank You
    Any Mysql and PHP security Experts here ? Inbox me and write here please, Thank You
    0 Комментарии 0 Поделились 315 Просмотры
  • Any Mysql experts here ?
    Any Mysql experts here ?
    0 Комментарии 0 Поделились 328 Просмотры
  • PHP DEVELOPER REQUIRED (LAHORE)
    REQUIREMENTS
    Bachelor degree in Computer Science/Computer Engineering or equivalent experience.
    Excellent verbal and written communication skills.
    2+ years experience in software development.
    Strong knowledge of PHP web frameworks like Django, Laravel 5 or Yii 2.0.
    Familiarity with the limitations of PHP as a platform and its workarounds.
    Strong knowledge of the common PHP or web server exploits and their solutions.
    Understanding of MVC design patterns.
    Extensive knowledge of OOP and Software Design patterns.
    Knowledge of SQL and experience designing database schemas (we use MySQL).
    Strong understanding of SOA and REST.
    Strong knowledge of data structures, algorithms, enterprise systems, and asynchronous architectures.
    Proficient understanding of code versioning tools, such as Git.
    Salary 100K-120K per month.
    send your cv at abdullah.gilani0786@gmail.com
    PHP DEVELOPER REQUIRED (LAHORE) REQUIREMENTS Bachelor degree in Computer Science/Computer Engineering or equivalent experience. Excellent verbal and written communication skills. 2+ years experience in software development. Strong knowledge of PHP web frameworks like Django, Laravel 5 or Yii 2.0. Familiarity with the limitations of PHP as a platform and its workarounds. Strong knowledge of the common PHP or web server exploits and their solutions. Understanding of MVC design patterns. Extensive knowledge of OOP and Software Design patterns. Knowledge of SQL and experience designing database schemas (we use MySQL). Strong understanding of SOA and REST. Strong knowledge of data structures, algorithms, enterprise systems, and asynchronous architectures. Proficient understanding of code versioning tools, such as Git. Salary 100K-120K per month. send your cv at abdullah.gilani0786@gmail.com
    0 Комментарии 0 Поделились 577 Просмотры
  • 1000 jobs available !

    Job Description
    We are looking for an experienced, highly motivated Full Stack Web Developer.
    If you are passionate about technology, constantly seeking to learn and improve your skillset, then you are the type of person we are looking for.

    Desired development skills:

    1. Experience developing cloud-hosted (AWS), responsive web applications using #JavaScript (React Js), #PHP, #HTML5, #CSS3.

    2. High proficiency with client-side #JavaScript frameworks (preferably React Js), server-side frameworks (preferably #CodeIgniter and Laravel), and #mySql database

    3. Able to integrate with and managing #APIs exposing microservices (RESTFUL APIs)

    4. Experience working with #Agile methodologies (Scrum, Lean Startup, XP) and cross-functional teams (Product Owners, Scrum Masters, Developers, Designers, Business Analysts).

    5. Should have a good command on GitHub

    6. Ideally familiar with Design Thinking, Behavior and Test-Driven Development.

    7. Familiarity with test-and-learn approaches using web and customer analytics data, understanding how these drive hypotheses-based development.

    8. Strong leadership, communication and collaboration skills with track record of taking solution ownership.

    9. A Bachelors or Masters degree in technical or business discipline or equivalent experience.

    10. 5+ years of professional experience.

    Contact Zain Jeewanjee
    1000 jobs available ! Job Description We are looking for an experienced, highly motivated Full Stack Web Developer. If you are passionate about technology, constantly seeking to learn and improve your skillset, then you are the type of person we are looking for. Desired development skills: 1. Experience developing cloud-hosted (AWS), responsive web applications using #JavaScript (React Js), #PHP, #HTML5, #CSS3. 2. High proficiency with client-side #JavaScript frameworks (preferably React Js), server-side frameworks (preferably #CodeIgniter and Laravel), and #mySql database 3. Able to integrate with and managing #APIs exposing microservices (RESTFUL APIs) 4. Experience working with #Agile methodologies (Scrum, Lean Startup, XP) and cross-functional teams (Product Owners, Scrum Masters, Developers, Designers, Business Analysts). 5. Should have a good command on GitHub 6. Ideally familiar with Design Thinking, Behavior and Test-Driven Development. 7. Familiarity with test-and-learn approaches using web and customer analytics data, understanding how these drive hypotheses-based development. 8. Strong leadership, communication and collaboration skills with track record of taking solution ownership. 9. A Bachelors or Master's degree in technical or business discipline or equivalent experience. 10. 5+ years of professional experience. Contact Zain Jeewanjee
    0 Комментарии 0 Поделились 3429 Просмотры
  • Vector Databases – Explained in Simple English

    In today’s world, we use computers to search for information all the time. When you type something in Google, it looks for the best answer. But sometimes, words alone are not enough. For example, if you upload a picture of a dog and want to find similar pictures, the computer cannot just match the word “dog.” It needs a smarter way to understand meaning, images, and even sounds. This is where vector databases come in.

    What is a Vector?

    A vector is just a list of numbers. For example:
    • A small vector could look like this → [0.2, 0.8, 0.5]
    • A big vector might have hundreds or thousands of numbers.

    These numbers don’t mean much to humans, but for computers they represent the “meaning” of something — like a word, a sentence, an image, or even a song.

    How do we get these numbers?

    Artificial Intelligence (AI) models like ChatGPT or image models can turn text, pictures, or audio into vectors. This process is called embedding.
    • The word “king” might become [0.12, 0.87, 0.33…]
    • The word “queen” will become a slightly different vector, but close to “king.”
    So the computer knows they are related.

    What is a Vector Database?

    A vector database is a special kind of database designed to store and search through these vectors quickly.
    • Normal databases (like MySQL) are good for exact matches (e.g., “Find me the student with roll number 25”).
    • Vector databases are good for similarity search (e.g., “Find me the picture that looks most like this picture”).

    How does it work?
    1. Store Vectors: You save vectors in the database. Each vector is linked to the original data (like an image, document, or audio file).
    2. Search with a Vector: When you want to search, the computer turns your query into a vector too.
    3. Find Similar Vectors: The database compares your vector with all the stored vectors. It measures “distance” between them. The closer the vectors, the more similar they are.
    4. Return Results: The database shows you the closest matches.

    Example in Real Life
    • Netflix: When you watch a movie, Netflix saves it as a vector. Then it suggests other movies with similar vectors.
    • Google Images: When you upload a picture, Google compares its vector with billions of others to find lookalikes.
    • ChatGPT memory: A vector database helps AI remember and find information from past conversations.

    Why are Vector Databases Important?
    • They let computers “understand” meaning, not just exact words.
    • They are the backbone of modern AI systems.
    • They allow searching across text, images, video, and audio in one system.



    In short: A vector database is like a giant library of “meanings.” Instead of matching only words, it matches ideas, images, and sounds using numbers called vectors. This makes our searches smarter and closer to how humans think.
    Vector Databases – Explained in Simple English In today’s world, we use computers to search for information all the time. When you type something in Google, it looks for the best answer. But sometimes, words alone are not enough. For example, if you upload a picture of a dog and want to find similar pictures, the computer cannot just match the word “dog.” It needs a smarter way to understand meaning, images, and even sounds. This is where vector databases come in. What is a Vector? A vector is just a list of numbers. For example: • A small vector could look like this → [0.2, 0.8, 0.5] • A big vector might have hundreds or thousands of numbers. These numbers don’t mean much to humans, but for computers they represent the “meaning” of something — like a word, a sentence, an image, or even a song. How do we get these numbers? Artificial Intelligence (AI) models like ChatGPT or image models can turn text, pictures, or audio into vectors. This process is called embedding. • The word “king” might become [0.12, 0.87, 0.33…] • The word “queen” will become a slightly different vector, but close to “king.” So the computer knows they are related. What is a Vector Database? A vector database is a special kind of database designed to store and search through these vectors quickly. • Normal databases (like MySQL) are good for exact matches (e.g., “Find me the student with roll number 25”). • Vector databases are good for similarity search (e.g., “Find me the picture that looks most like this picture”). How does it work? 1. Store Vectors: You save vectors in the database. Each vector is linked to the original data (like an image, document, or audio file). 2. Search with a Vector: When you want to search, the computer turns your query into a vector too. 3. Find Similar Vectors: The database compares your vector with all the stored vectors. It measures “distance” between them. The closer the vectors, the more similar they are. 4. Return Results: The database shows you the closest matches. Example in Real Life • Netflix: When you watch a movie, Netflix saves it as a vector. Then it suggests other movies with similar vectors. • Google Images: When you upload a picture, Google compares its vector with billions of others to find lookalikes. • ChatGPT memory: A vector database helps AI remember and find information from past conversations. Why are Vector Databases Important? • They let computers “understand” meaning, not just exact words. • They are the backbone of modern AI systems. • They allow searching across text, images, video, and audio in one system. ⸻ ✅ In short: A vector database is like a giant library of “meanings.” Instead of matching only words, it matches ideas, images, and sounds using numbers called vectors. This makes our searches smarter and closer to how humans think.
    0 Комментарии 0 Поделились 569 Просмотры
  • How to learn basic software programming with help of ChatGPT, versel !

    Learn php, Phython and MySQL so you can then make bigger softwares !

    We will introduce this for all students of level 2 in Rehan School
    How to learn basic software programming with help of ChatGPT, versel ! Learn php, Phython and MySQL so you can then make bigger softwares ! We will introduce this for all students of level 2 in Rehan School 🏫
    0 Комментарии 0 Поделились 598 Просмотры 0
  • How to learn basic software programming with help of ChatGPT, versel !

    Learn php, Phython and MySQL so you can then make bigger softwares !

    We will introduce this for all students of level 2 in Rehan School
    How to learn basic software programming with help of ChatGPT, versel ! Learn php, Phython and MySQL so you can then make bigger softwares ! We will introduce this for all students of level 2 in Rehan School 🏫
    0 Комментарии 0 Поделились 591 Просмотры 0
  • Reqd: Software Developers for a High End Project based in USA. Salary upto Rs 500,000 / mo.

    The Role:
    You will be tasked with solving interesting technical challenges such as architecting and developing API that can perform at scale, developing internal tools, architecting scalable infrastructure and maintaining software used to serve hungry employees at our clients.

    Requirements
    Have been building applications for 5+ years and have an in-depth understanding of tech frameworks
    Significant experience using Python and / or Javascript
    Lead / mentored junior developers
    Have architected, built, and operated applications to solve problems at high scale - You want to work in a fun, fast-paced and high-growth environment
    Understand the software development lifecycle and have experience building client- and customer-centric SaaS products
    Experience with Agile Development.
    Desired Skills
    Familiarity with Django, MySQL, Elastic Search, Redis, AWS, Angular and React
    Experience working at a SaaS company
    Contributed to the Open Source community and have experience working with open source technologies.
    In a typical week as a Senior Engineer, you might:

    Work with the product lead on prioritizing the roadmap and resolving issues
    Perform code reviews and test new features
    Review code to assess technical debt and plan refactor to address it.
    Mentor other engineers on your team
    Review performance metrics, identify and solve a scaling bottleneck in a critical service
    Design a new feature/product architecture
    Deploy a new feature to production, progressively rolling it out with feature flags
    Plan the most important projects to work on next
    Investigate and fix a production issue

    Work with the product lead on prioritizing the roadmap and resolving issues
    Perform code reviews and test new features
    Review code to assess technical debt and plan refactor to address it.
    Mentor other engineers on your team
    Review performance metrics, identify and solve a scaling bottleneck in a critical service
    Design a new feature/product architecture
    Deploy a new feature to production, progressively rolling it out with feature flags
    Plan the most important projects to work on next
    Investigate and fix a production issue.

    8 working hours a day Saturday and Sunday off but should be open to working on extra time if projects are not completed
    Home based job
    Position reports to US based management
    Salaries will not be taxed and will be given on lump sum basis. Internet and related costs will be covered by the company

    Resumes to be WhatsApp to +92300 8227687 or emailed to adnan.qureshi@gmail.com
    Reqd: Software Developers for a High End Project based in USA. Salary upto Rs 500,000 / mo. The Role: You will be tasked with solving interesting technical challenges such as architecting and developing API that can perform at scale, developing internal tools, architecting scalable infrastructure and maintaining software used to serve hungry employees at our clients. Requirements Have been building applications for 5+ years and have an in-depth understanding of tech frameworks Significant experience using Python and / or Javascript Lead / mentored junior developers Have architected, built, and operated applications to solve problems at high scale - You want to work in a fun, fast-paced and high-growth environment Understand the software development lifecycle and have experience building client- and customer-centric SaaS products Experience with Agile Development. Desired Skills Familiarity with Django, MySQL, Elastic Search, Redis, AWS, Angular and React Experience working at a SaaS company Contributed to the Open Source community and have experience working with open source technologies. In a typical week as a Senior Engineer, you might: Work with the product lead on prioritizing the roadmap and resolving issues Perform code reviews and test new features Review code to assess technical debt and plan refactor to address it. Mentor other engineers on your team Review performance metrics, identify and solve a scaling bottleneck in a critical service Design a new feature/product architecture Deploy a new feature to production, progressively rolling it out with feature flags Plan the most important projects to work on next Investigate and fix a production issue Work with the product lead on prioritizing the roadmap and resolving issues Perform code reviews and test new features Review code to assess technical debt and plan refactor to address it. Mentor other engineers on your team Review performance metrics, identify and solve a scaling bottleneck in a critical service Design a new feature/product architecture Deploy a new feature to production, progressively rolling it out with feature flags Plan the most important projects to work on next Investigate and fix a production issue. 8 working hours a day Saturday and Sunday off but should be open to working on extra time if projects are not completed Home based job Position reports to US based management Salaries will not be taxed and will be given on lump sum basis. Internet and related costs will be covered by the company Resumes to be WhatsApp to +92300 8227687 or emailed to adnan.qureshi@gmail.com
    0 Комментарии 0 Поделились 1060 Просмотры
  • Asalam o Alaikom

    Im looking to build a community of skilled people. and for what I need you to mention your skills set in comment followed by # hashtag. and I will send you the link of whatsapp group to join your link minded and same skilled whatsapp group to join.

    below is the hash tags you can use to mention with your comment and if you did not found your skills matching # please mention new skillset followed by # I will create new group and send you the link.

    #PHPMYSQL #HTMLCSSJS #REACTJS #VUEJS #SEO #GOOGLEADS #FBADS #WORDPRESS #PHOTOSHOP #ILLUSTRATOR #SOCIALMEDIA #CONETANTWRITER #DATAENTRY #RANDOM

    Please share the post so I can achieve to my goal asap.
    Jazak Allah.

    Qasim Hussain
    Asalam o Alaikom I'm looking to build a community of skilled people. and for what I need you to mention your skills set in comment followed by # hashtag. and I will send you the link of whatsapp group to join your link minded and same skilled whatsapp group to join. below is the hash tags you can use to mention with your comment and if you did not found your skills matching # please mention new skillset followed by # I will create new group and send you the link. #PHPMYSQL #HTMLCSSJS #REACTJS #VUEJS #SEO #GOOGLEADS #FBADS #WORDPRESS #PHOTOSHOP #ILLUSTRATOR #SOCIALMEDIA #CONETANTWRITER #DATAENTRY #RANDOM Please share the post so I can achieve to my goal asap. Jazak Allah. Qasim Hussain
    0 Комментарии 0 Поделились 2918 Просмотры
Расширенные страницы