
技术类书籍笔记
CodingIsFun
function myProfile(){
let major= ['English', 'Computer Science and Technology'];
let career_goal = 'front-end development';
let motto = 'Pressing on is my only option';
}
展开
-
Microsoft Excel 2019 Pivot Table Data Crunching by Bill Jelen and Michael Alexander
About the companion contentThe download files for this book include all of the data sets used to produce the book, so you can practice the concepts in the book. You can download this book’s companion content from the following page:MicrosoftPressStore.co原创 2020-12-29 13:26:27 · 827 阅读 · 0 评论 -
VBA Automation for Excel 2019 Cookbook by Mike Van Niekerk
VBA Automation for Excel 2019 CookbookSolutions to automate tasks and increase productivity with Excel and other MS Office applicationsBy Mike Van NiekerkThe code bundle for the book is also hosted on GitHub at https://github.com/PacktPublishing/VBA-Aut原创 2020-11-30 09:14:09 · 4094 阅读 · 0 评论 -
Positioning in CSS: Layout Enhancements for the Web by Eric A. Meyer
POSITIONThe values of position have the following meanings:staticThe element’s box is generated as normal. Block-level elements generate a rectangular box that is part of the document’s flow, and inline-level boxes cause the creation of one or more原创 2020-09-22 11:42:49 · 192 阅读 · 0 评论 -
Flexbox in CSS: Understanding CSS Flexible Box Layout by Estelle Weyl
”礼让三先“就是遇到通行困难的情况下要礼貌让行,要先慢、先让、先停。“宁停三分,不抢一秒”是从无数血的教训中总结出来的宝贵经验。Live examples are available at http://standardista.com/flexbox/flexfiles. You can either click theicon while reading this book to go directly to a live version of the code example reference原创 2020-09-19 16:13:01 · 339 阅读 · 0 评论 -
Webpack for Beginners
Your Step-by-Step Guide to Learning Webpack 4 by Mohamed Bouzid源代码:https://gitee.com/liyangzhong/webpack_beginners.githttps://github.com/Li-YangZhong/webpack_beginners.gitOnce you are in the webpack_beginners folder, use the following command to ini原创 2020-08-11 14:21:29 · 370 阅读 · 0 评论 -
Beginning Git and GitHub by Mariot Tsitoara
Beginning Git and GitHubA Comprehensive Guide to Version Control, Project Management, and Teamwork for the New DeveloperMariot Tsitoara$ git init # Initialize a new git database$ git clone # Copy an existing database$ git status # Check the status原创 2020-08-03 14:44:04 · 501 阅读 · 0 评论 -
What Every Web Developer Should Know About HTTP By K. Scott Allen
In fact, these days many web sites try to avoid having any sort of real file name in their URL. For starters, file names are usually associated with a specific technology, like the .aspx file extension for Microsoft’s ASP.NET technology. Many URLs will out原创 2020-07-08 12:46:42 · 322 阅读 · 0 评论 -
You Don't Know JS Yet (book series) - 2nd Edition by Kyle Simpson
You Don’t Know JS Yet (book series) - 2nd Edition全文阅读地址From https://github.com/getify/You-Dont-Know-JS我的GitHub文件: https://github.com/Li-YangZhong/Kyle_Simpson_You_Don-t_Know_JS_Yet_-Get_Started.git...原创 2020-04-21 13:20:10 · 2019 阅读 · 0 评论 -
Learning JavaScript - JavaScript Essentials for Modern Application Development by Ethan Brown
Learning JavaScript JAVASCRIPT ESSENTIALS FOR MODERN APPLICATION DEVELOPMENT by Ethan BrownI certainly hold no animosity toward amateurs: everyone has to start somewhere, programming is a profitabl...原创 2020-04-11 15:30:11 · 586 阅读 · 0 评论 -
Learning Web Design by Jennifer Niederst Robbins
Learning Web DesignA BEGINNER’S GUIDE TO HTML, CSS,JAVASCRIPT, AND WEB GRAPHICSJennifer Niederst Robbins My GitHub Files: https://github.com/Li-YangZhong/Learning_Web_Design_Book_by_Jennife...原创 2020-03-02 00:47:18 · 3112 阅读 · 0 评论 -
Git Essentials by Ferdinando Santacroce
The main difference betweenVersion Control Systems (VCS) and Distributed VersionControl Systems (DVCS)is the constraint—in the centralized system —to have a remote server from which to get and in...原创 2019-09-09 09:14:36 · 247 阅读 · 0 评论 -
《Beginning C++17》-学习笔记-Chapter 01-Basic Ideas
书名:Beginning C++17 - From Novice to Professional作者:Ivor Horton, Peter Van Weert笔记:Blocks can be placed inside other blocks—this concept is called nesting. Blocks can be nested, one within anothe...原创 2018-11-01 14:52:47 · 579 阅读 · 0 评论 -
《Beginning C++17》-学习笔记-Chapter 02-Introducing Fundamental Types of Data
#include <iostream>int main(){ //int apple_count{ 15.5 }; /*此行会导致编译错误。错误类型是narrowing conversion。*/ int apple_count{ 15 }; /*第一种赋值形式;The braces enclosing the initial value are called a bra...原创 2018-11-02 23:57:40 · 279 阅读 · 0 评论 -
Notes: Learn PHP, MySQL & Javascript 5th with jQuery, CSS & HTML5 by Robin Nixon-未读完
Internet Protocol (IP) addressMySQL accepts commands in Structured Query Language (SQL). SQL is the way that every user (including a PHP program) communicates with MySQL.You may notice that the de...原创 2019-07-06 14:08:18 · 1421 阅读 · 0 评论 -
Learn JavaScript with p5.js: Coding for Visual Learners 书籍简介
作者:Engin Arslan阅读时间:2019-01-21至2019-01-29本书主要通过p5.js 介绍一些基本的编程知识。 使用p5.js 提供的一些函数可以很容易地绘制图形。对于初学者来说可以很直观的看到代码的显示效果,使编程学习变的有趣而简单。一些例子可以在作者网站上看到:https://www.codingforvisuallearners.com/examples...原创 2019-01-29 13:21:03 · 210 阅读 · 0 评论 -
《C++ Without Fear》学习笔记
书名:C++ Without FearA Beginner’s Guide That Makes You Feel Smart作者:Brian Overland阅读时间:2018/10/6-2018/10/20书摘+书评:An important rule of good programming style is that variables should usually...原创 2018-10-31 13:27:52 · 747 阅读 · 0 评论