The five reasons why programmers don't shut down their computers after work, have you been recruited? Form submission

The five reasons why programmers don't shut down their computers after work, have you been recruited?

***

Form submission

***
Do you just turn off the monitor, put on your cell phone and leave when you get off work?
When security personnel came to the office for inspection at night, they asked, why do these people leave work without turning off their power?
As a programmer, you smile. The other party doesn't understand that if it is turned off, the programmer may crash at work the next day:
Open IDEA, locate yesterday's code, open Navicat in ten minutes, open note taking software in two minutes, open browser in one minute, find yesterday's history, open Charles in five minutes, open various IM software in three minutes, open Xshell in five minutes, connect, open mailbox in five minutes, two minutes
I didn't turn it off because I was too lazy. Generally, most computers configured by companies for programmers will not have high performance and long service time. It takes a long time to turn on and off once. God knows how long it will take from starting up to opening various software and then entering the working state. Besides, the normal working state of programmers is that there is a phone call saying there is a problem online. Deal with it quickly. Time is urgent. The problem can be solved only when the machine is turned on. Time is money, so I never turn it off. There was a failure involving a high level of core business. I was driving home. After I hung up the phone, I pulled over and turned on the computer to repair the fault (when my wife was away, the computer took the co driver). Several of us in the message group responded almost at the same time and are processing it. A minute later, I repaired it and told everyone in the group. A classmate said, "Emma, I just turned it on!" hehe, he turned it off after work, but that colleague doesn't dare to turn it off after work even if he gives him money. As for when to turn it off? It seems that I haven't turned off my laptop since I took it from the company. No, I restarted the computer when it was upgraded the year before last, which delayed a lot of things. I haven't shut down the computer since.

Change the topic form submission

?????????

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Registration page</title>
    <style>
        * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
        }

        body {
            background: url("img/register_bg.png") no-repeat;
        }


        .rg_layout {       /**Frame horizontal center*/
            width: 900px;
            height: 500px;
            border: 8px solid #EEEEEE;
            background-color: white;
            /**
            Center div horizontally
            */
            margin: auto; /**Frame horizontal center*/
            margin-top: 15px;
        }

        .rg_left {
            border: 1px solid red;
            float: left;
            margin: 15px;
        }

        .rg_left > p:first-child {
            color: yellow;
            font-size: 20px;
        }

        .rg_left > p:last-child {
            color: #A6A6A6;
            font-size: 20px;
        }


        .rg_center {
            /*border: 1px solid red;*/
            float: left;
            width: 450px;

        }


        .rg_right {
            border: 1px solid red;
            float: right;
            margin: 15px;
        }

        .rg_light > p:first-child {

            font-size: 10px;
        }


        .rg_right p a {
            color: deeppink;
        }

        .td_left {
            width: 100px;
            text-align: right;
            height: 45px;
        }

        .td_right{
            padding-left:50px;
        }
        #username,#password,#email,#name,#tel,#checkcode{
            width: 251px;
            height: 32px;
            border: 1px solid #A6A6A6;
            /**
                Set border fillet
            */
            border-radius:5px;
            padding-left: 10px;



        }
        #checkcode{
            width: 110px;
        }
        #img_check{
            height: 32px;
            vertical-align: middle;
        }
        #btn_sub{
            width: 150px;
            height: 40px;
            background-color: yellow;
            border: 1px yellow;
        }


    </style>


</head>
<body>

<div class="rg_layout">
    <div class="rg_left">
        <p>New user registration</p>
        <p>USER REGISTER</p>
    </div>

    <div class="rg_center">
        <div class="rg_form">
            <!--   Define form-->
            <form action="#" method="post">
                <table>
                    <tr>
                        <td class="td_left"><label for="username">user name</label></td>
                        <td class="td_right"><input type="text" name="username" id="username" placeholder="enter one user name"></td>
                    </tr>

                    <tr>
                        <td class="td_left"><label for="password">password</label></td>
                        <td class="td_right"><input type="password" name="password" id="password" placeholder="Please input a password">
                        </td>
                    </tr>

                    <tr>
                        <td class="td_left"><label for="email">Email</label></td>
                        <td class="td_right"><input type="email" name="email" id="email" placeholder="Please enter the email address"></td>
                    </tr>

                    <tr>
                        <td class="td_left"><label for="name">full name</label></td>
                        <td class="td_right"><input type="text" name="name" id="name" placeholder="Please enter your name"></td>
                    </tr>
                         <td class=""></td>

                    <tr>
                        <td class="td_left"><label for="tel">cell-phone number</label></td>
                        <td class="td_right"><input type="text" name="tel" id="tel" placeholder="Please enter your mobile phone number"></td>
                    </tr>

                    <tr>
                        <td class="td_left"><label>Gender</label></td>
                        <td class="td_right">
                            <input type="radio" name="gender" value="male"> male
                            <input type="radio" name="gender" value="female"> female
                        </td>
                    </tr>

                    <tr>
                        <td class="td_left"><label for="birthday">date of birth</label></td>
                        <td class="td_right"><input type="date" name="birthday" id="birthday" placeholder="Please enter the date of birth">
                        </td>
                    </tr>

                    <tr>
                        <td class="td_left"><label for="checkcode">Verification Code</label></td>
                        <td class="td_right"><input type="text" name="checkcode" id="checkcode" placeholder="Please enter the verification code">
                            <img id="img_check" src="img/verify_code.jpg">
                        </td>
                    </tr>


                    <tr>
                        <td colspan="2" align="center"><input type="submit" id="btn_sub"  value="register"></td>
                    </tr>
                </table>


            </form>


        </div>

    </div>


    <div class="rg_right">
        <p>Existing account?<a href="#"> please log in now</a></p>
    </div>


</div>



</body>
</html>

Tags: html css

Posted by rubenc on Mon, 20 Sep 2021 10:32:18 +0530