Ew,it's hard to begin.In fact I don't know what to say either.So here is a sad story.First of all ,my status is a college student with now a ice-cold hand typing my keyboard.In my opinion there is a kind of the disaster of life is from the unit you are in.The unit that I'm in is my school.So you can easily get what I want to say.To avoid the flood of tear,I don't want to say anything about.As usual,the ruin of score won't let me feel anything wrong.But now it is the fulture that confused most.I have no interest in what I'm forced to learning,and I don't know what I want in the fulture either.The demand I set for myself is just pass the exam,and now only this seems no hardness for me.But this is not enough for being recommanded to the admission of postgraduate.Because the average of the goal they want is at least eighty,and now it's kind of dengerous for me.So everyday,I pace up and down between reviewing lessons and doing what I want.
  The worse thing is,if there were something that I really want,I won't be such pain. Once I loved programming.I put all my heart and time into it and nearly nothing feed me back.The only thing I got was three useless second prize and a terrible academic.Once I loved writing,and I tried to write a short novel.But I can't write even one more letter after twenty thousand words.Once I loved drawing,but...

随机推荐

  1. How To Install Linux, Nginx, MySQL, PHP (LEMP) Stack on Debian 7

    https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on- ...

  2. 从零开始写一个武侠冒险游戏-6-用GPU提升性能(1)

    从零开始写一个武侠冒险游戏-6-用GPU提升性能(1) ----把帧动画的实现放在GPU上 作者:FreeBlues 修订记录 2016.06.19 初稿完成. 2016.08.05 增加对 XCod ...

  3. 多层神经网络与C++实现

    BP理论部分参考:http://blog.csdn.net/itplus/article/details/11022243 参考http://www.cnblogs.com/ronny/p/ann_0 ...

  4. POJ 1251 Jungle Roads (prim)

    D - Jungle Roads Time Limit:1000MS     Memory Limit:10000KB     64bit IO Format:%I64d & %I64u Su ...

  5. HDOJ 1022 模拟栈

    Train Problem I Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) ...

  6. jQuery backgroundColor的animate效果

    我们知道jQuery几乎是我们最常用的javascript库了,不过尽管他自己本身拥有大量的特效,但却仍然缺少一些动画效果.比如说,颜色.背景颜色的变换. animate一般只支持大小,位置,透明度的 ...

  7. for循环,pydev提示未使用的变量,解决办法

    对于如下代码,pvdev会产生未使用变量的警告 for i in range(5): func() 解决办法: 把变量替换成下划线_,就不会生产告警了.改变后如下: for _ in range(5) ...

  8. Linux shell脚本编程基础之练习篇

    shell脚本编程基础之练习篇. 1.编写一个脚本使我们在写一个脚本时自动生成”#!/bin/bash”这一行和注释信息. #!/bin/bash ] then echo "请输入一个参数& ...

  9. java常用算法

    冒泡排序: //降序 public static int[] bubbleSort(int[] array){ for(int i = 0; i < array.length; i++){ in ...

  10. 【python】队列

    来源:http://www.cnblogs.com/yupeng/p/3413852.html 关于队列 >>> from collections import deque > ...