摘要: 使用windows cmd访问操控xampp mysql数据库的方法: sql常用语句: 查看所有database:SHOW DATABASES; 使用某个库:USE mg_data; 查看该库中的所有tables:SHOW TABLES; 创建数据库:CREATE DATABASE mg_data 阅读全文
posted @ 2019-06-12 10:44 Hardi 阅读(254) 评论(0) 推荐(0) 编辑
摘要: tutorial 3 - writing hello world! 使用linux系统运行c, 安装gcc,为compiler,使用vim等工具写好hello world程序,命名hello.c 之后在terminal中输入:gcc hello.c,之后会自动生成a.out文件,然后输入 ./a.o 阅读全文
posted @ 2018-10-12 19:22 Hardi 阅读(214) 评论(0) 推荐(0) 编辑
摘要: create a new directory “mytasklist” set up node.js server npm init (entry point =>server.js) open package.json npm install express body-parser ejs mon 阅读全文
posted @ 2017-06-02 22:07 Hardi 阅读(262) 评论(0) 推荐(0) 编辑
摘要: Install Node.js Install Angular CLI sudo npm install -g @angular/cli Install Node.js Install Angular CLI Set-up new app ng new my-first-app Run Server 阅读全文
posted @ 2017-05-07 20:10 Hardi 阅读(132) 评论(0) 推荐(0) 编辑
摘要: component is a kind of a directive normally we use attribute selector *ngIf="data" @Component({ selector: 'ng-if-else', template: ` <button (click)="s 阅读全文
posted @ 2017-05-04 21:26 Hardi 阅读(163) 评论(0) 推荐(0) 编辑
摘要: String Interpolation String Interpolation out put variables in the template file Property Binding Property Binding edit name.component.ts Event Bindin 阅读全文
posted @ 2017-05-03 20:19 Hardi 阅读(120) 评论(0) 推荐(0) 编辑
摘要: How to create a new component manually How to create a new component manually How to create a component from CLI ng generate component name or ng g c 阅读全文
posted @ 2017-05-03 17:27 Hardi 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 版权声明:本文为博主原创文章,未经博主允许不得转载。 版权声明:本文为博主原创文章,未经博主允许不得转载。 1. 异常 在连接github时,执行”ssh -T Git@github.com” 命令时,出现 ssh: connect to host github.com port 22: Conne 阅读全文
posted @ 2017-01-10 09:09 Hardi 阅读(578) 评论(0) 推荐(0) 编辑
摘要: pulling down the repo file from github server check git current status add a file commit show all of the commits over time list all branches create a 阅读全文
posted @ 2017-01-10 08:04 Hardi 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 希望通过《How linux works》这本书,以及Arch linux这个系统,让我对Linux更加熟悉。 这篇文章将会记录《How linux works》的读书笔记 chapter 1: The Basics 基础命令: ls(列出当前目录下的文件) ls -lh(详细参数+可读文件大小) 阅读全文
posted @ 2016-09-06 15:06 Hardi 阅读(120) 评论(0) 推荐(0) 编辑