- 浏览: 370207 次
- 性别:
- 来自: 苏州
最新评论
-
u013189503:
来个密码吧
[C++][Logging] 项目中写日志模块的实现 -
wyf_vc:
来个密码啊!!
[C++][Logging] 项目中写日志模块的实现
文章列表
原文出处
微软官方参考
https://msdn.microsoft.com/zh-cn/library/x98tx3cf.aspx
https://msdn.microsoft.com/zh-cn/library/974tc9t1.aspx
个人参考
http://www.cppblog.com/weiym/archive/2013/02/25/198072.html
根据下面的学习,我定义了一个自己的MemoryDtect的头文件,方便以后项目的使用,以后有任务,我会不断完善。
/*********************************************** ...
Ref
https://blog.csdn.net/weixin_28828243/article/details/112102142
STM32
STM32F10x 固件库下载与安装说明
http://www.51hei.com/bbs/dpj-110561-1.html
https://download.csdn.net/download/Jacky_Dai/83790648
FreeRTOS編譯
https://blog.csdn.net/weixin_28828243/article/details/112102142
https://www.keil.com/support/ ...
初始化angular项目
下载angular-cli
npm install -g angular-cli
建立项目
ng new first-angular
注意这里文件名或者文件的名字无法使用下划线,只能使用横线 。
载入服务
cd first-angular
ng serve
浏览器打开http://localhost:4200看到消息Our app works则证明成功。
Angular Samples
https://ng-matero.github.io/ng-matero/auth/login
https://www.cnblogs.com ...
REM init并产生tsconfig.json
tsc --init
REM compile command
tsc
ref
https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
/* Basic Options */
// "increme ...
https://www.cnblogs.com/shuoer/p/9471839.html
环境说明
两台主机
本地服务器 192.168.1.17 jenkins服务器及dev环境
阿里云 :112.74.184.170 代码仓库及上线环境
思路:
我想实现用本地的jenkins服务器控制dev环境和线上release环境
由于手头服务器有限,所以jenkins服务器和dev环境在同一台服务器上
release环境和代码仓库在同一台服务器上
ubuntu 安装 JDK
ubuntu的安装我们采取最简单的方式安装 直接用apt-get的方式
//添加java的ppa
sudo add- ...
Supported: Ubuntu64位OS
https://blog.csdn.net/jinking01/article/details/84982754
https://www.jb51.net/article/194092.htm
GitLab 安装
第1步 - 安装依赖项
在我们自己安装GitLab之前,安装一些在安装过程中持续使用的软件非常重要。幸运的是,可以从Ubuntu ...
预计SCR文档结构如下:
/SRC
-*ModuleA
--index.ts
-*ModuleB
--index.ts
-*Usgers
--index.ts
--users.ts
--api_v1.ts
--index.ts
SRC/ModuleA/index.ts
import { Router } from "express";
const router = Router();
export default router;
SRC/ModuleB/index.ts
import { Router } f ...
Sample for Express
var functions = require("firebase-functions");
const express = require("express");
//Set up ExpressJS Server
const expressRouter = new express.Router();
//expressRouter.get('*', (req: any, res: { send: (arg0: string) => void; }) => {
// res.sen ...
Project Pre-settings
1.1 Install Node.js
由于Backend和Frontend分别要求不同的Node.js版本,建议用Node.js多版本管理工具nvm来安装和切换Node.js版本。安装好nvm以后,分别执行下面的命令安装(命令提示符AP下):
nvm install 10.13 --目前部署前端使用的node版本
nvm install 10.14.2 --目前部署后端使用的node版本
注:nvm下载路径:https ...
<template>
<div class="login-wrap">
<div class="ms-login">
<div class="ms-title">后台管理系统</div>
<el-form :model="param" :rules="rules" ref="login" label-width="0px ...
// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limi ...
import urllib.request
import os
import threading
import datetime
import time
class urlDownloadThread(threading.Thread):
def __init__(self, threadName, url, targetFolder, targetFileName):
threading.Thread.__init__(self)
self.threadName = threadName
self.url = u ...
应用层
与其它计算机进行通讯的一个应用,它是对应应用程序的通信服务的。例如,一个没有通信處理function的process applicaiton就不能执行通信的代码,从事字处理工作的程序员也不关心OSI的第7层。但是,如果添加了一个传输文 ...
[轉] Android AIDL使用详解
- 博客分类:
- Android
一、概述
AIDL 意思即 Android Interface Definition Language,翻译过来就是Android接口定义语言,是用于定义服务器和客户端通信接口的一种描述语言,可以拿来生成用于IPC的代码。从某种意义上说AIDL其实是一个模板,因为在使用过程中, ...
https://bbs.csdn.net/wap/topics/350150286
https://blog.csdn.net/wzmsltw/article/details/50723267
https://blog.csdn.net/henhen2002/article/details/4485186
https://www.cnblogs.com/chucks123/p/7545660.html
https://blog.csdn.net/alaseven/article/details/8875906
https://www.cnblogs.com/memset/archive/2012 ...