ASP.NET and Python/Javascript

Many jQuery plugins that are designed and shared for free on the internet. By searching on Baidu with jQuery and jQuery zhijia we can find a lot of useful things for our own projects. Today I find a star-rating plugin, which is almost available by direct copy from sources.

About The Storage Technologies:

There are two kinds of storages which differs in storage environment. One is Direct Attached Storage, the other is Network Storage, which is divided into two kinds: Storage Area Network and Network Attached Storage.

Javascript and Python: a big door to open up.

Javascript and Python are both script languages, (I think). In python, the = is of an assigning functionality; == is used for judging if two operands are equal to each other(Equality); === is used for judging if two operands are identical to each other(Equivalent). How to see the keywords reserved for python which can’t be used as variable names: use import keyword (Enter) print(kwword.list); quite a few datatypes are there in python: (here we only discuss about python 3.x) number types are int and float, string types are str, byte and unicode, collection types are tuple and list. About number, there are a few built-in constants, like Number.MAX_VALUE, INFINITY, MAX_SAFE_INTEGER; NaN stands for Not a Number, and there are: Number.NaN() function used for judging whether an operand is a number type or not; null is nothing but an object in python.

About MySQL

I have researched a lot on this, however hadn't made a record in time. Below are what I got today:

[mysqld remove]: used to remove mysql service, after doing this, remove the data folder under installation path .

[mysqld install]: used to install mysql service, before this the data folder under installation path.

[mysqld --initialize -insecure]: used to set null password for root user

[mysqld --skip-grant-table]: used to skip the examine by mysql login system

[net start mysql]: used to start mysql service, if it returns Access Denied, ErrNo:5, it means a higher privileged user, like Administrator is required to do this.

[net stop mysql]: like one above.

[mysql -uroot -p]: for login

[mysql -uwqf -p]: for login

[create user 'USERNAME' identified by 'PASSWORD']: create user for a certain database, in this written case, no privilege is granted to 'USERNAME'.

[flush privileges]: used to see new privileges after a change.

Conclusion: MySQL Workbench is the software that has been long existing in my computer, installed by myself, today went wrong when inserting a certin Chinese character into a table. First I used show variables like '%char%' to see the character set of each database, after I changed them separately into utf8, which worked on terminal however not on workbench, so I went to re-install the mysql service, changed the my-default.ini file, however this time it worked only when you set the character set to gbk(I have tried utf8, failed), so I used gbk instead of utf8. Fortunately, gbk supports both English and Chinese.

Day 2: ASP.NET and python trying的更多相关文章

  1. ASP.NET Core 性能对比评测(ASP.NET,Python,Java,NodeJS)

    前言 性能是我们日常生活中经常接触到的一个词语,更好的性能意味着能给我们带来更好的用户体检.比如我们在购买手机.显卡.CPU等的时候,可能会更加的关注于这样指标,所以本篇就来做一个性能评测. 性能也一 ...

  2. (转)ASP.NET Core 性能对比评测(ASP.NET,Python,Java,NodeJS)

    转:https://www.cnblogs.com/savorboard/archive/2016/10/17/dotnet-benchmarks.html 前言 性能是我们日常生活中经常接触到的一个 ...

  3. 我的博客:C# PHP J2ee Java Android js WP Asp.net mvc Python

    <p><A target="_blank" href="http://blog.163.com/hr_company_product/" &g ...

  4. Python 融于ASP框架

    一.ASP的平反 想到ASP 很多人会说 “asp语言很蛋疼,不能面向对象,功能单一,很多东西实现不了” 等等诸如此类. 以上说法都是错误的,其一ASp不是一种语言是 微软用来代替CGI的一种web框 ...

  5. PYTHON ASP FRAMEWORK

    Python 融于ASP框架   一.ASP的平反 想到ASP 很多人会说 “asp语言很蛋疼,不能面向对象,功能单一,很多东西实现不了” 等等诸如此类. 以上说法都是错误的,其一ASp不是一种语言是 ...

  6. python学习1

    1.由于win8的电脑上出现了0xc0000b错误不能解决,所以现在使用的是虚拟机中的Linux系统.安装过程见http://blog.csdn.net/yuzhongchun/article/det ...

  7. [Python] 学习资料汇总

    Python是一种面向对象的解释性的计算机程序设计语言,也是一种功能强大且完善的通用型语言,已经有十多年的发展历史,成熟且稳定.Python 具有脚本语言中最丰富和强大的类库,足以支持绝大多数日常应用 ...

  8. Python学习笔记(五)——list和tuple

    一.list 1.定义: list是一种有序的集合,可以随时添加和删除其中的元素 2.声明方法: subjects=['Math','English', 'Chinese'] 3.一些api (1)获 ...

  9. python基础——使用list和tuple

    python基础——使用list和tuple list Python内置的一种数据类型是列表:list.list是一种有序的集合,可以随时添加和删除其中的元素. 比如,列出班里所有同学的名字,就可以用 ...

随机推荐

  1. 文件上传中UUID的解读

    UUID简介如下:1.简介UUID含义是通用唯一识别码 (Universally Unique Identifier),这 是一个软件建构的标准,也是被开源软件基金会 (Open Software F ...

  2. CentOS6.5升级GCC4.8

    # curl -Lks http://www.hop5.in/yum/el6/hop5.repo > /etc/yum.repos.d/hop5.repo # cat /etc/yum.repo ...

  3. cpu使用率低负载高,原因分析

    原因总结 产生的原因一句话总结就是:等待磁盘I/O完成的进程过多,导致进程队列长度过大,但是cpu运行的进程却很少,这样就体现到负载过大了,cpu使用率低. 下面内容是具体的原理分析:在分析负载为什么 ...

  4. HTML5的自定义属性的使用总结

    https://blog.csdn.net/qq_31851435/article/details/53100691 <div id="myDiv" data-attribu ...

  5. 基于token的身份验证JWT

    传统身份验证的方法 HTTP 是一种没有状态的协议,也就是它并不知道是谁是访问应用.这里我们把用户看成是客户端,客户端使用用户名还有密码通过了身份验证,不过下回这个客户端再发送请求时候,还得再验证一下 ...

  6. [CodeForces 471A] MUH and Sticks

    题目链接:http://codeforces.com/problemset/problem/471/A 题目数据规模1 - 9,可以用一个数组进行计数,减掉出现四次的数,看看还有几个是非零数,有一个就 ...

  7. VirtualBox for mac

    一. VirtualBox 1.下载 官网: https://www.virtualbox.org/wiki/Downloads 2.安装 傻瓜式安装即可 二.centOS7 1.下载 centOS: ...

  8. Docker镜像Push到DockerHub

    1.自己整理的容器首先通过commit做成本地镜像 docker commit -a "Cristin" -m "测试开发平台Jenkins" 281eef85 ...

  9. css 简介 2

    css css Table属性 border-collapse 设置是否把表格边框合并为单一的边框 border-spacing 设置表格标题的位置 empty-cells 设置是否显示表格中的空单元 ...

  10. linux使用代理进行apt安装 以 nord 为例

    我的环境:(不必完全一样,只是提一下)----------- linux系统:kali 桌面:xface ----------------------------------------------- ...