Posts

MYSQL-SQL COMMANDS STARTING A NEW TOUR TO LEARN A BACK-END LANGUAGE STRUCTURED QUERY LANGUAGE

Server version: 8.0.31 MySQL Community Server - GPL Copyright (c) 2000, 2022, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> show databases; +--------------------+ | Database           | +--------------------+ | admin              | | count              | | departemp          | | diedb              | | emp                | | employee           | | information_schema | | mysql              | | performance_schema | | school             | | school1            | ...

temp

  import pandas as pd import numpy as np a = [ 92812191 , 189291281 , 9218291 , 1298182 ] b = [ ' a ' , ' ab ' , ' abc ' , ' abcd ' ] c = [ 1 , 12 , 123 , 1234 ] d = [ 9 , 98 , 987 , 9876 ] e = [ 9 ,np.NaN, 98 , 987 , 9876 ] print ( pd. Series ( a ,[ 1 , 2 , 3 , 5 ] )) smarks = { ' name ' : [ ' rain ' , ' drake ' , ' larry ' ] , ' grade ' : [ ' A1 ' , ' A2 ' , ' B1 ' ] } df1 = pd. DataFrame ( smarks ) print ( df1 ) import pandas as pd df1 = pd. DataFrame ( { ' first ' : [ 10 , 20 , 30 , 40 ] , ' second ' : [ 4 , 24 , 7 , 9 ] , ' third ' : [ 30 , 40 , 50 , 70 ] } ) df2 = pd. DataFrame ( { ' first ' : [ 17 , 18 , 19 , 20 ] , ' second ' : [ 14 , 15 , 17 , 19 ] , ' third ' : [ 13 , 14 , 15 , 17 ] } ) print ( df1 ) print ( df2 ) df3 = df1. rsub ( df2 ) print ( df3 ) df1 = df1. reindex ( [ 1 , 2 , 3 , 4 ], copy = False ) print ( df1 ) import p...

start your photography blog today

Image
  Photography is more than just pointing a camera and taking a shot. It is about capturing a moment and telling a story through an image. And one of the most important elements in creating a compelling photograph is composition. Composition is the way in which elements are arranged in a photograph. It includes the placement of the subject, the use of lines and shapes, and the balance of light and dark tones. A well-composed photograph can evoke emotions, create a sense of movement, and convey a message to the viewer. Here are some reasons why composition is so important in photography: It grabs the viewer's attention - A well-composed photograph immediately catches the viewer's eye. By using leading lines or placing the subject off-center, you can create a sense of movement that draws the viewer into the image. It tells a story - A photograph with good composition can tell a story without the need for words. By placing the subject in a particular way or using visual cues, you c...

how to make career in photography on blog

 first of all you should know that making career in field of content writing requires lot of patients and consistency  Choose a niche - First, determine what kind of photography you want to focus on. This could be anything from landscape to portrait photography. Narrowing your focus will make it easier for you to create content and target a specific audience. Choose a blogging platform - There are several blogging platforms available, but WordPress is the most popular and user-friendly. It offers a range of templates and plugins, making it easy to customize your blog to your liking. Choose a domain name - Your domain name is the web address that people will use to find your blog. It should be short, catchy, and relevant to your niche. You can use domain registration sites like GoDaddy or Namecheap to register your domain name. Choose a hosting service - A hosting service is where your blog will be stored online. Look for a hosting service that offers good uptime, fast loading ...

HOW to focus on your goals in year 2023 is skill that will make a fish out of water

Image
If you have a mindset of always being a unique man in the room then you have a way out follow some these rules and you will get a eye- Setting goals is the first step in achieving success, but staying focused on those goals is what separates successful people from those who fall short. Many people struggle with focus, especially when they are faced with distractions, setbacks, or competing priorities. However, by adopting some effective strategies, you can maintain your focus and achieve your goals. Set clear and specific goals To focus on your goals, you first need to have a clear and specific idea of what you want to achieve. Vague or general goals are difficult to focus on because they lack clarity and direction. Therefore, when setting goals, be specific and define what you want to achieve, how you will measure success, and when you want to achieve it. Create a SHORT plan of action Once you have set your goals, it's essential to develop a plan of action to achieve them. A plan ...

#5 on which the life works

5 terror of life  Before entering this world you get some pre defined fears, on which you life operates. It is just like 5 time interval in a single life. You will feel the terror but If somehow you get to know all your terror in 1 current life only you will become a exception in the world of mortals. Not content:Hii This is Zain the author of several anonymous webs I am on this blog to just a powerful Kickstart to master DieKi's blog that is the Zains By this post he will get boost .I think for producing more content. In todays blog I am gonna share the deep knowledge about 5 terror of life on which all life works ,And I am telling you if you know all your terror in a single life you will definitely become a god like animal in world. I achieved this state ,but you know after achieving this state you will also definitely lose the love of money and you will find yourself anonymous to this fucking life and you can live a life of a god but here is a exception if you are trying to cha...

#python handwritten notes for beginners

Here I am gonna tell you day1 python guide for you read the steps and enjoy Install Python: To start programming in Python, you need to first install the Python interpreter on your computer. You can download the latest version of Python from the official Python website. Learn the basic syntax: Python is a simple and easy-to-learn programming language. Start with the basics of the syntax such as variables, data types, operators, control structures, functions, and classes. Use an IDE: Integrated Development Environment (IDE) is a software application that provides a comprehensive environment to write, test, and debug your Python code. Popular IDEs for Python include PyCharm, Spyder, and Visual Studio Code. Write your first program: Once you have installed Python and an IDE, it's time to write your first Python program. Start with a simple "Hello World" program to get started. Practice coding: The best way to become proficient in Python is by practicing coding. Start with si...