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. Docker Compose 配置文件常用指令

    Docker Compose 配置文件常用指令 YAML文件格式及编写注意事项 YAML是一种标记语言很直观的数据序列化格式,可读性高.类似于XML数据描述语言,语法比XML简单的很多. YAML数据 ...

  2. shell批量修改mysql用户密码

    需求 现在有这么一个需求, 需要大批量修改用户的密码, 需要注意的规则是: 必须添加的字符: *$#sjdKw% 用户名的第一位+*$#sjdKw%+用户名的最后一位,比如用户名chenglee,密码 ...

  3. eclipse的springboot插件

    eclipse的springboot插件官网下载地址还喜欢捉迷藏,正确的下载路径修改方法: 点击zip,然后复制出官网路径如下 http://download.springsource.com/rel ...

  4. 关于decode("utf-8")出现编码错的提示

    data = data.decode("utf-8") 出现错误时候可以加上第二个参数  如下; data = data.decode("utf-8",&quo ...

  5. 使用C#加密及解密字符串

    using System; using System.IO; using System.Security.Cryptography; using System.Text; namespace Util ...

  6. 配置SAP GUI FOR HTML(通过WEB方式登录)

    配置SAP GUI FOR HTML(通过WEB方式登录) SAP系统可以通过安装 SAP GUI.SAP GUI FOR JAVA.SAP GUI WEB FOR JAVA.SAP GUI FOR ...

  7. https://localhost:1158/em运行不正常

    1.页面无法打开 一般是由于网站安全问题直接挂掉,可以更换浏览器,如Google Chrome.Fire Fox等.不建议使用IE Google浏览器使用如下, 直接继续 接着以用户sys,密码cha ...

  8. win8获取保存的wlan密码方法

    使用netsh wlan show profile * key=clear 方法查找所有的保存的wifi 使用 netsh wlan show profile name="wifi名字&qu ...

  9. linux基础11-bash编程(字符串测试 和 for循环)

    练习:传递一个用户名参数给脚本,判断此用户的用户名跟其基本组的组名是否一致,并将结果显示出来.(1)字符测试:==:测试是否相等,相等为真,不等为假!=: 测试是否不等,不等为真,等为假>< ...

  10. angular5 @viewChild @ContentChild ElementRef renderer2

    @viewChild 作用一:选择组件内节点 <!--视图 --> <div #mydiv><input></div> // 选择 @ViewChild ...