I Wanna Say Is That…

There’s a guy called wsh in our computer room.

That guy registered a blog in CSDN, and its ID is wly_sh. We didn’t know why his ID is wly_sh, instead of wsh. In other words, who’s that guy called ly?

What Did We Do?

My friend zsyz_ZZY joined our team to explore its secret.

At first, we got a long list of all the students in grade 9. We searched the women whose name included ly. There went about 10 candidates. The most likely one we thought is lly.

That night zzy talked to his roommates and got a talk-warning ticket.

Yesterday we went back for the classes. zzy asked one of wsh’s primarimate. He told us that there’s a girl called lyt. She’s gone to some problems with wsh. We thought maybe she’s who we want to know about.

That’s all we know. zzy has released an article about this event.

I Think…

First of all, it’s easy to know that ly is wsh’s l**e.

Once he heard this idea, he said, “Dude, why does it works like that?” At the same time, he tickled his sock on his right.

So why does a normal man tickle his sock when he’s talking? It shows that he’s afraid about something. In this case, the things he may afraid is we got the name ly. Do I have a point?

Second, when ZZY called the name lyt, wsh’s just like-closed his eyes, like-smiled, and like-raised his middle finger. That strange behavior shows that we’ve just got the right answer although he really doesn’t want to tell us.

What’s more, when I was writing this passage, wsh’s behavior was very strange, too. When zzy and me are writing, wsh’s just pushed in his screen to him, frequently say some hard-understand sentences, like “How can I rename my U-disk?”. It shows that he’s restless.

wsh’s promised to zzy that he’ll tell the answer to us in Aug. 1st, 2019. After discussing with zzy, we all agreed that the reason why wsh decided to tell us after final-exam is that ly maybe leave our school after that test.

zzy has told these to ZY, a girl in his class. So all people who she met will know this no longer.

In a word, there’re 2 people who has strong suspicion. One is lly, the other is lyt. So it goes.

My Idea About ID wly_sh (关于用户名 wly_sh 的猜想)的更多相关文章

  1. ABAP 将SAP用户ID转换成用户名

    FORM frm_coverted_name USING usrid TYPE sy-uname                        CHANGING name TYPE adrp-name ...

  2. Jquery 实现 “下次自动登录” 记住用户名密码功能

    转载自:http://blog.csdn.net/aspnet_lyc/article/details/12030039?utm_source=tuicool&utm_medium=refer ...

  3. SSH+Ajax实现用户名重复检查(一)

    1.struts.xml设置 <package name="default" namespace="/" extends="json-defau ...

  4. javascript记住用户名和登录密码

    javascript记住用户名和登录密码 下面主要通过代码给大家展示下javascript记住用户名和登录密码,具体代码内容请看下文. <script type="text/javas ...

  5. jQ通过cookie记住用户名

    总结要点: 一.封装的一个cookie函数: 二.获取input的value值:$("input[name=user]").val() 三.设置input的value值:$(&qu ...

  6. Yii登录验证和全局访问用户ID

    注意:Yii默认的代码,Yii::app()->user->id返回的不是我们想要的用户ID,而是用户名.因此在useridentity类中要用一个变量来存储登录用户的ID,然后重载get ...

  7. ipmitool批量添加新用户名和密码

    Intelligent Platform Management Interface 需求:已知BMC帐号id2为root管理员帐号,添加id5bmc帐号 工具:ipmitool version 1.8 ...

  8. jsp中jquery用法一步刷新 验证用户名是否存在

    <script type="text/javascript"> /* $(document).ready(function(){ var id="ha&quo ...

  9. Discuze修改用户名长度限制

    第一步,在网站 uc_client\model 目录下的 user.php文件中,找到如下代码: ? 1 if($len > 15 || $len < 3 || preg_match(&q ...

随机推荐

  1. java8中字符串常量以及GC相应处理机制

    目录 1,常量池 1.1, class文件常量池 1.2, 运行时常量池 1.3,字符串常量池 String.intern() -XX:StringTableSize 2,使用new关键字和使用字符串 ...

  2. JS权威指南需要注意的知识点(1-6章)

    客官快来看一看了,都给你浓缩好了,确定不进来搂一眼嘛,走过路过不要错过哟 in运算符 in运算符希望它的左操作数是一个字符串或可以转化为字符串,希望它的右操作数是一个对象,如果右侧的对象拥有一个名为左 ...

  3. Java第二次作业第四题

    文本行输入学生姓名,下来框选择课程名称,文本行输入课程成绩:点击"录入"按钮,相关信息显示在文本区:点击"统计"按钮,将所有录入的成绩的平均成绩显示在另一个文本 ...

  4. (五)Linux内存管理zone_sizes_init

    背景 Read the fucking source code! --By 鲁迅 A picture is worth a thousand words. --By 高尔基 说明: Kernel版本: ...

  5. php数据提交POSt

    通常情况下用户使用浏览器网页表单向服务器post提交数据,我们使用PHP的$_POST接收用户POST到服务器的数据,并进行适当的处理.但有些情况下,如用户使用客户端软件向服务端php程序发送post ...

  6. 如何更规范化编写Java 代码

    如何更规范化编写Java 代码 Many of the happiest people are those who own the least. But are we really so happy ...

  7. Ubuntu+docker+gitlab安装和使用

    以前自己写的代码都是在本地,因为都是自己一个人维护,现在交给团队维护了,所以想着搭建一个gitlab 1,拉镜像 安装非常简单 docker search gitlab  搜索镜像 docker pu ...

  8. Hadoop 文件系统命令行基础

    Hadoop 命令行最常用指令篇:  1.ls (list directory) Usage: hadoop fs -ls [R] Option: -R => 递归显示 2.mkdir (mak ...

  9. python的元组存储的实质和多元赋值

    python中有一种赋值机制即多元赋值,采用这种方式赋值时,等号两边的对象都是元组并且元组的小括号是可选的.通常形式为 x, y, z = 1, 2, 'a string' 等同于 (x, y, z) ...

  10. Jib构建镜像的问题分析(Could not find or load main class ${start-class})

    问题简述 通过Jib插件将SpringBoot工程制作成Docker镜像成功,但是运行镜像的时候报错(Could not find or load main class ${start-class}) ...