sailsjs learning note】的更多相关文章

menu list: custom controller custom 模块使用 custom model custom middleware custom service ? 路由与对应的controller处理: 用命令行 & controller 变化 wade-mac:fin_server_invest mac$ sails generate controller mail sendmaillog info: Created a new controller ("mail&quo…
Summary of my learning note for WPF Binding Binding to DataSet. when we want to add new record, we should modify DataTable, not the DataTableView. Validation when Binding we can get the detail descrition from msdn. For ValidationRules, generally, we…
 http://www.sqlpanda.com/2013/07/learning-note-sql-server-vs.html This is my learning note base on the “SQL Server Essentials for Oracle DBAs Jump Start” . DATA BLOCK/EXTEND AND SEGMENT image: http://lh5.ggpht.com/-FxEKn7CCNd0/UetkOxZ6igI/AAAAAAAAIns…
Machine Learning Note Introduction Introduction What is Machine Learning? Two definitions of Machine Learning are offered. Arthur Samuel described it as:"the filed of study that gives computers the ability to learn without being explicitly programmed…
  shell learning note MAIN="/usr/local/" # 变量大写 STATUS="$MAIN/status" # 美元符加字符串是引用变量值,而美元符加数字表示命令行参数 echo "some words" >>$STATUS/log.log echo "test.sh start at `date '+%m/%d %H:%M:%S'`" >>$STATUS/log.log…
Vbird Linux: Vim Learning: http://linux.vbird.org/linux_basic/0310vi.php Bash Shell: http://linux.vbird.org/linux_basic/0320bash.php Key words of reminder: /etc/passwd history alias [Tab] Wildcard type ---builtin commands \[Enter] echo $variable…
Just sharing the learning experience related to @ngrx/store and @ngrx/effects. In my personal opinion, I fell there are tow different types of coding style by using @ngrx/store only @ngrx/store + @ngrx/effects So How we do with only ngrx/store? Contr…
Machine Learning 这是第一份机器学习笔记,创建于2019年7月26日,完成于2019年8月2日. 该笔记包括如下部分: 引言(Introduction) 单变量线性回归(Linear Regression with One Variable) 线性代数(Linear Algebra) 多变量线性回归(Linear Regression with Multiple Variables) Octave 逻辑回归(Logistic Regression) 正则化(Regularizat…
好几天没来学习了,昨晚把继承的又整理了一下.想把整理后的东西发到hexo博客上来,却发现命令行又失效了.前几天明明是好的,这几天又没有进行任何操作,网上搜了一下也没有招到合适的解决办法,无奈只能重装了.小白就是要折腾,下面贴上继承的第一个学习笔记 How to design the inheritance tree 1.Look for objects that have common attributions and behaviors.2.Design a class that repres…
[Andrew Ng NIPS2016演讲]<Nuts and Bolts of Applying Deep Learning (Andrew Ng) 中文详解:https://mp.weixin.qq.com/s/ZbUCh5bi6Ech55qJR2gaxg…
1. Java Classloader 链接: https://en.wikipedia.org/wiki/Java_Classloader 摘要: The Java Classloader is a part of the JRE that dynamically loads Java classes into the JVM. Usually only loaded on demand. In Java, libraries are typically packaged in JAR fil…
1/  int 转换成 string 格式 #include<sstream> std::stringstream ss; str::string temp; int n; ss<<n; ss>>temp; //再次使用时  需要  ss.clear();  或者重新定义 方法1: string转换成int atoi(str.c_str()) 函数 string s; int re; re= atoi(s.c_str()); 方法2 : int b= stoi(stri…
from:http://blog.sina.com.cn/s/blog_40983e5e0101dhz0.html     因为kali linux基于debian 7,当然要把这台Acer 4736z原有的debian 7删掉装kali啦,哈哈,这下不必为了BT5装虚拟机了,对于本子里60G的SSD来说还是好事一桩.要把kali当做桌面使用,就必须给kali添加一些软件,修改一些设置才好用,下面记录一下备忘,随时更新.   安装方法,官方文档,硬盘安装Kali Linux   把apt源设为官…
为啥写这一片文章呢? 主要是为了温故而知新和分享,也是为了更加促进自己的学习! 前端自动化工具很多  有grunt  gulp  webpack 等 这次主要分享下gulp的学习经验,让自己更好的总结和学习,好了下面开始啦哈哈. 首先说一个问题是我们为啥要使用自动化工具也叫构建工具,看名字应该就猜的差不多了吧,之所以叫做工具肯定是要用它了,用它可以简化流程操作,帮助我们更好的完成项目. 在没有自动化工具甚至是编辑器的时候我们是怎样工作的呢,相信大家可能都是一样的,比如你要  新建一个css im…
1.softmax函数的优化来防止溢出 2.np.argmax()函数的使用 返回值为数组中最大值的索引 a = [1, 2, 3, 4, 3, 7] print(np.argmax(a)) 若np.argmax()中的参数为矩阵,则需要添加axis参数 e.g. a = [[12, 2, 3], [9, 14, 7]] # 显示每一行(横向)的最大值的索引 print(np.argmax(a, axis=1)) # output: [0 1] # 显示每一列(纵向)的最大值的索引 print(…
1. Prepare Input File $ tleap >source leaprc.protein.ff14SB ----- Source: /home/wangq/Programs/amber16/dat/leap/cmd/leaprc.protein.ff14SB ----- Source of /home/wangq/Programs/amber16/dat/leap/cmd/leaprc.protein.ff14SB done Log file: ./leap.log Loadin…
感觉周末没事就喜欢折腾点东西,看到KBengine这一款开源服务器引擎,之前也研究过一阵子Photon,但是要收费,弃之.觉得不错,研究下,顺便记录之. 启动环境 首先需要装好MySql与Python,都是最新版本即可. 下载源码 KBengine 国内镜像 下载这几个,第一个是源码,其他两个是Demo Build http://kbengine.org/docs/build.html Install http://kbengine.org/docs/installation.html 作者很贴…
AsyncTask 实现原理 AsyncTask是Android提供的轻量级异步类,可以直接继承AsyncTask在类中实现异步操作,并提供接口反馈当前的异步执行程度(通过接口实现UI进度更新),最后反馈执行的结果给UI主线程. 使用优点 1.简单快捷的实现异步操作 2.过程可控 使用的缺点: 1.在使用多个异步操作并需要进行UI变更时会变得复杂 Handler 实现原理 在Handler异步实现时,涉及到Handler, Looper, Message, Thread四个对象, 实现异步的流程…
I am working on the Andrew Ng's course on Machine Learing. I have a question on the week2 session. Is there anybody can tell me why there is a 1/2m in front of the cost function.…
oracle SQL select 'para1' || 'para2' as "para" must "" from table t where c.name in ('test1','test2') group by c.name,c.id having count() show data group by "count(*)","id","name",selected fields must equa…
Learning Note For MvvmLight MvvmLight quitstart refer link1 : MVVMLight HelloWorld *** mc:Ignorable usage. we have a lot of places using mc:Ignorable in our xaml. it is used to Comment code in xaml.how to use it in our xaml, we can refer this topic.…
http://blog.csdn.net/pipisorry/article/details/44783647 机器学习Machine Learning - Andrew NG courses学习笔记 Anomaly Detection异常检測 Problem Motivation问题的动机 Anomaly detection example Applycation of anomaly detection Note:for Frauddetection: users behavior exam…
https://www.quora.com/How-do-I-learn-machine-learning-1?redirected_qid=6578644   How Can I Learn X? Learning Machine Learning Learning About Computer Science Educational Resources Advice Artificial Intelligence How-to Question Learning New Things Lea…
Unsupervised Learning of Spatiotemporally Coherent Metrics Note here: it's a learning note on the topic of unsupervised learning on videos, a novel work published by Yann LeCun's group. Link: http://arxiv.org/pdf/1412.6056.pdf Motivation: Temporal co…
Unsupervised Visual Representation Learning by Context Prediction Note here: it's a learning note on unsupervised learning model from Prof. Gupta's group. Link: http://120.52.73.9/www.cv-foundation.org/openaccess/content_iccv_2015/papers/Doersch_Unsu…
Unsupervised Learning of Visual Representations using Videos Note here: it's a learning note on Prof. Gupta's novel work published on ICCV2015. It's really exciting to know how unsupervised learning method can contribute to learn visual representatio…
  print:直接输出 type,求类型 数据类型:字符串,整型,浮点型,Bool型     note01.py # python learning note 01   print('Hello world!')   a = 10 print a print type(a)   a = 1.3 print a,type(a)   print   a = True print type(a)…
R2RT   Written Memories: Understanding, Deriving and Extending the LSTM Tue 26 July 2016 When I was first introduced to Long Short-Term Memory networks (LSTMs), it was hard to look past their complexity. I didn’t understand why they were designed the…
ListView Learning Note how to add double click event to listviewitem in ListView. refer link in stackoverflow Some notes about this. we can use add event in Style by using EventSetter. Sample code: xaml: <ListView.ItemContainerStyle> <Style Targe…
Menu & MenuItem learning note Menu MenuItem MSDN Sample Code <Menu Grid.Row="0" HorizontalAlignment="Left" Background="White" BorderBrush="Black"> <MenuItem Header="生产管理" Style="{StaticRe…