联想C461M安装Ubuntu13.10问题 本人的笔记本:联想旭日C461M,买来后安装的是Vista系统,用起来很不习惯,速度也慢,现在喜欢上了Linux的系统, 不喜欢Windows系统,WinXP微软也放弃维护了,于是前一年安装Fedora系统,使用还算正常,但是发现软件升级……
无法加载pdf等module的问题 简单地加载pdf的Module,如官网所述: play -> pdf 1.0 然而却提示无法加载。 尝试运行: play install pdf-1.0 提示:Cannot fetch the modules list from %%http://www.playframework.org/modules%% 后在playframework群中找到答案,是因为要用.com域名才能获取。 需要修改此文件:{PLAY_HOME}/framew……
Ubuntu下Eclipse完美安装方案 Ubuntu下直接apt-get安装Eclipse的问题 直接安装的版本较低,我用Ubuntu13.10安装的是Eclipse3.8,而要用ScalaIDE,最好是4.x以上版本。 其次是Eclipse的菜单显示问题,点击后看不到下拉菜单。 完美……
数据库相关 HQL 中 left join 的写法 用 Play 查询数据时,遇到关联对象的查询时,需要使用 left join 的语句,但与我们习惯的 SQL 语句不同,HQL 的写法和思路是面向对象的,所以下面就记录一些可用的例句供实际使用时参考: 查询教的学生中有年龄大于30的老师 hql = "select distinct o from Teacher o, Student r left join r.teacher h where r.age>=?"; Datomic 信息模型……
项目管理的网站服务 layout: post categories : manage agile title: 项目管理的网站服务 tagline: “Git is Great!” tags : [scurm, git, project, agile, free] lang: zh 分享一些项目管理的网站: 敏捷软件开发思想的项目管理网站服务: teambition:可免费创建有限数量的项目,界面友好。 trello.com:永久免费,但空间有限(10MB),界面友好。 Git 托管的网站服务: G……
Clojure/Script 学习 layout: post title: “Clojure Learning” description: "" category: devtech/clojure tags: [clojure, GraphQL] RESTful Service Framework Luminus 综合 web 框架,其中(查看 Profiles 详细包含内容)包含 RESTful Services 的实现。 Immutant Web server Hiccup HTML Template Compojure API Sweet web apis with Compojure & Swagger Arachne is a full, highly modular web development framework for Clojure. It emphasizes ease, simplicity, and a solid, scalable design. Hoplon ClojureScript Web Framework,如果只做一些网页,不多的动态效果,特别是你的技术栈还没有加入 React,而是在用 jQuery……
React Native 相关学习 layout: post title: “React Native Learning” description: "" category: devtech/react tags: [react native] top: true React 相关 React 官网 Ant Design 蚂蚁金服ui库 Ant Design Pro 上手备忘录 Bi Sheng 转化 markdown 文档为静态单页面 React 应用 從零開始學 ReactJS React 中文文档 React 最佳实践——那些 React 没告诉你但很重要的事 基于 Jest + Enzyme 的 React 单元测试 How to debug Jest tests with VSCode react-motion React 动画效果库 redux-saga 实践总结 集成方案: React + Redux + RESTfulAPI React + Relay + GraphQL Rela……
4clojure problem solving
14 题以前答案一般没啥区别,略过…… #15 #(* % 2) adereth’s solution: * 2 #16 format "Hello, %s!" adereth’s solution: #(str "Hello, " % "!") #17 '(6 7 8) adereth’s solution: [6 7 8] #18 '(6 7) adereth’s solution: '(6 7) #19 #(peek (vec %)) adereth’s solution: (comp first reverse) #20 #(nth (reverse %) 1) adereth’s solution: (comp second reverse) #21 (fn getn [ary n] (if (= n 0) (first ary) (getn (rest ary) (dec n)))) adereth’s solution: #(first (drop %2 %1)) #22 #(reduce (fn [a b] (inc a)) 0 %) adereth’s solution: (fn [sequence] (reduce (fn [acc v] (inc acc)) 0 sequence)) #23 #(reduce (fn [rs ls] (cons ls rs)) [] %) adereth’s solution: (fn [s] (loop [result [] s s] (if (seq s) (recur (concat [(first s)]……
Android Learing
Android 开发学习 准备工作 安装 JDK,Gradle,Android SDK 等; 首先装 SDKMan,先别急去一个个下载,这里介绍就是安装其他开发工具的工具: 这是专为开发人员准备的安装工具!网速好的话,一句话搞定: curl -s "https://get.sdkman.io" | bash 安装 Gradle,点击看一下最新的命令,本文书写时还是 3.0 版本,如下: sdk install gradle……
Angular 2 相关学习
基础 I18n 官方文档如此{:target="_blank"},目前的解决方案似乎很麻烦。 Angular 2 Components: Inputs and Outputs{:target="_blank"} The impure AsyncPipe{:target="_blank"} Angular2 管道(pipes){:target="_blank"} [Angular 2] Build a select dropdown with *ngFor in Angular 2{:target="_blank"} JavaScript Array Methods Reference{:target="_blank"} JavaScript Modules: A Beginner’s Guide{:target="_blank"} 问题……