build

Altium Designer 14.1.5 Build 30772

橙三吉。 提交于 2020-02-28 14:10:31
Altium Designer 14.1.5 Build 30772 CAX/EDA Sinapse 2个月前 (12-08) 5593浏览 3评论 智能系统设计自动化的全球领导者及3D PCB 设计解决方案(Altium Designer)和嵌入软件开发(TASKING)供应商Altium有限公司近日宣布推出其旗舰产品Altium Designer的最新版本Altium Designer 14。 Altium Designer 14着重关注PCB核心设计技术,提供以客户为中心的全新平台,进一步夯实了Altium在原生3D PCB设计系统领域的领先地位。Altium Designer现已支持软性和软硬复合设计,将原理图捕获、3D PCB布线、分析及可编程设计等功能集成到单一的一体化解决方案中。  Altium Designer 14独特的原生3D视觉支持技术,可以在更小、更流动的空间内加速处理和通信过程,从而实现电子设计的创新。这一强化平台可实现更小的电子设计封装,从而在降低物料和制作成本的同时增加耐用性。   施耐德电气集团旗下Pelco公司的PCB设计工程师Narinder Kumar 表示:“我使用Altium软件产品已经近30年了。就我个人而言,我认为软硬复合设计是过去三年中最酷的新特性之一。Altium一直致力于在产品中提供突破性的技术和功能以满足客户需求

Tutorial: Create a Blinky ARM test project(创建一个闪灯的arm测试项目)

柔情痞子 提交于 2020-02-28 09:58:37
Background ref : Tutorial: Create a Blinky ARM test project If you are new to ARM development, it is recommended to follow this short tutorial and learn how to build a simple test executable program that will blink a LED. Note: this tutorial was created with the GNU Tools for ARM Embedded Processors toolchain in mind. Only when using this toolchain the build is guaranteed to succeed. Using other toolchains might be possible, but small changes might be necessary in the source code and in the linker options. Note2: this tutorial requires a recent version of the STM32F4 template, not older than

基于vue+router+vuex的移动端留言板项目

亡梦爱人 提交于 2020-02-28 09:54:55
mimi 介绍: 该项目基于vue的移动端项目,没有使用UI框架,后端基于node express, 前端仓库: https://gitee.com/yango520/mimi 前端预览demo传送门 后端跟后台仓库: https://gitee.com/yango520/messageBoard 后台预览demo传送门 测试账号密码 mimi 123456 # install dependencies npm install # serve with hot reload at localhost:8080 npm run dev # build for production with minification npm run build # build for production and view the bundle analyzer report npm run build --report 需要安装的依赖 npm i axios -S //http请求 npm install style-loader sass-loader node-sass --save-dev //安装sass vue 中引入sass报错的注意事项 , 点击这里查看 为了移动端自配,将引入外部flexible.js进行适配,将flexible.js放在/static/js/目录下,然后在/src

一个通用的Makefile

僤鯓⒐⒋嵵緔 提交于 2020-02-28 09:44:39
一 makefile的作用 Makefile是用于自动编译和链接的,一个工程有很多文件组成,每一个文件的改变都会导致工程的重新链接,但是不是所有的文件都需要重新编译,Makefile中记录有文件的信 息,在make时会决定在链接的时候需要重新编译哪些文件。 Makefile的宗旨就是:让编译器知道要编译一个文件需要依赖其他的哪些文件 。当那些依赖文件有了改变,编译器会自动发现最终的生成文件已经过时,而应该重新编译相应的模块。 makefile带来的好处就是—"自动化编译",一旦写好,只需要一个make命令,整个工程完全自动编译,极大的提高了软件开发的效率。默认的情况下,make命令会在当前目录下按顺序找寻文件名为"GNUmakefile"、"makefile"、"Makefile"的文件,找到了解释这个文件。当然也可以使用make -f DIR/makefile 来指定用于makefile文件 二 makefile语法简述 2.1 makefile规则 target ... : dependencies ... command target目标文件,可以是Object File,也可以是执行文件,还可以是一个标签 dependencies就是,要生成那个target所需要的文件或是目标。 command也就是make需要执行的命令。(任意的Shell命令,可以有若干行)

Promote build with Jenkins API

拥有回忆 提交于 2020-02-28 09:36:56
问题 Given a Jenkins build job with different promotion jobs (i.e., that promote builds to different environments), how can one trigger a specific promotion job for a specific build using the Jenkins API? 回答1: Combined answers from different sources to come up with this: $Username = "Username" $APItoken = '12345' $Credential = "$($Username):$($APItoken)" $EncodedCredential = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($Credential)) $BasicAuthValue = "Basic

Promote build with Jenkins API

会有一股神秘感。 提交于 2020-02-28 09:34:07
问题 Given a Jenkins build job with different promotion jobs (i.e., that promote builds to different environments), how can one trigger a specific promotion job for a specific build using the Jenkins API? 回答1: Combined answers from different sources to come up with this: $Username = "Username" $APItoken = '12345' $Credential = "$($Username):$($APItoken)" $EncodedCredential = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($Credential)) $BasicAuthValue = "Basic

centos7 docker 安装教程

假装没事ソ 提交于 2020-02-28 07:23:50
本文教你如何在 CentOS 7 及以上版本进行 docker 安装。 第一步,确定是centos7及以上版本 cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) 第二步,yum安装gcc相关 确定centos7可以上外网 yum -y install gcc yum -y install gcc-c++ 安装完成之后,查看gcc版本 gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper Target: x86_64-redhat-linux Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib -

Qt for Android获取手机序列号

我是研究僧i 提交于 2020-02-28 04:44:21
在 Qt 项目中通过 jni 接口调用 Android 原生接口来获取相应的值。 java文件 package com . qt . useJava ; import android . os . Build ; import java . lang . reflect . Method ; public class MainActivity extends org . qtproject . qt5 . android . bindings . QtActivity { // 获取手机序列号 private static String getSerialNumber ( ) { String serial = "" ; try { if ( Build . VERSION . SDK_INT >= Build . VERSION_CODES . P ) { //9.0+ serial = Build . getSerial ( ) ; } else if ( Build . VERSION . SDK_INT > Build . VERSION_CODES . N ) { //8.0+ serial = Build . SERIAL ; } else { //8.0- Class < ? > c = Class . forName ( "android.os

学习记录

送分小仙女□ 提交于 2020-02-27 21:53:23
作为C++的包版本管理器,conan不是用C++来实现的,它甚至不是使用编译型语言来实现的,它使用的是脚本语言Pythonpip install conan Get the source: git clone git@github.com:johnmcfarlane/cnl_example.git cd cnl_example Add Bintray conan repository: conan remote add johnmcfarlane/cnl https://api.bintray.com/conan/johnmcfarlane/cnl Create a build environment in a directory called build : mkdir -p build cd build conan install --build cnl .. cmake .. Build the demo program: cmake --build . Run the demo program: ./bin/cnl_example Test the output of the demo program: ctes 是用CNL编写的仅标头DSP库,旨在实现典型DSP内核的浮点和定点实现。算法设计人员通常从Matlab,Scipy,R或Julia开始

vue-cli中webpack配置解析

不羁岁月 提交于 2020-02-27 08:36:19
版本号 vue-cli 2.8.1 (终端通过 vue -V 可查看) vue 2.2.2 webpack 2.2.1 目录结构 ├── README.md ├── build │ ├── build.js │ ├── check-versions.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── vue-loader.conf.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ └── prod.env.js ├── index.html ├── package.json ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ └── Hello.vue │ └── main.js └── static webpack配置 主要对build目录下的webpack配置做详细分析 webpack.base.conf.js 入口文件 entry entry: { app: '.src/main.js' } 输出文件