原创 pycharm 安裝 Django創建項目

pycharm 安裝 Django file —> settings ----> project 解釋器 —> 點擊+ ----> 輸入Django —> install(如果選擇版本時,選擇 CheckBox ,選擇指定版本)

原创 推薦收藏 | 機器學習畫圖的神器scikit-plot

一、 安裝說明 1、安裝Scikit-plot非常簡單,直接用命令: pip install scikit-plot 即可完成安裝。 2、倉庫地址: https://github.com/reiinakano/scikit-pl

原创 操作系統之單進程死鎖

單進程死鎖 當無 IO Buffer 時有可能出現單進程死鎖 1、進程1 向 IO 請求數據,並告訴IO設備 返回的數據 應該送到 進程1 的哪個地址 2、IO設備去IO數據了,進程1就會阻塞等待,這時如果 進程1 被掛起,IO

原创 Mobileshop電商平臺系統設計

Mobileshop電商平臺系統設計 源碼下載 https://github.com/wuliwuxin/Mobileshop.git 1. 背景 生鮮電商是電商領域的最後一片藍海,這是由生鮮市場本身的特殊性決定的。生鮮作爲日常生

原创 操作系統--PV問題總集合

(一)PV經典問題之哲學家問題 (二)PV經典問題之讀寫者問題 (三)PV經典問題之生產者消費者問題

原创 pip install tensorflow

選的阿里雲的鏡像,極速安裝 pip install tensorflow -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

原创 PV經典問題之讀寫者問題

問題描述 有一個許多進程共享的數據區,這個數據區可以是一個文件或者主存 的一塊空間;有一些只讀取這個數據區的進程(Reader)和一些只往數據區寫數據的進 程(Writer),此外還需要滿足以下條件: (1)任意多個讀進程可以同時

原创 QTP與Selenium比較

QTP與Selenium比較 - Selenium QTP 是否付費 開源免費 商用付費 IDE 無IDE 有IDE 操作系統 各種操作系統 只支持Windows 應用類型 Web,不支持處理Window

原创 pycharm創建文件時自動註釋相關內容

pycharm創建文件時自動註釋 #-*- codeing = utf-8 -*- #@Time : ${DATE} ${TIME} #@Author : wuxin #@File : ${NAME}.py #@Software

原创 C語言題目1

1、計算一個字符串在另一個字符串出現的次數 //計算一個字符串在另一個字符串出現的次數 #include <stdio.h> #include <string.h> int main(){ int i,j,k,count; c

原创 面試題:以下函數的結果什麼?-阿里巴巴

面試題-阿里 以下函數的結果什麼? #include <stdio.h> void foo(int *a,int*b){ *a = *a + *b;//① *b = *a - *b//② *a = *a - *b;//③ }

原创 Dev-C++軟件Debug導致軟件崩潰問題

Dev-C++軟件Debug導致軟件崩潰問題 選擇Tools 選擇Compiler Options 選擇OK即可!

原创 git問題Could not open a connection to your authentication agent.

問題: ssh-add ~/.ssh/id_rsa Could not open a connection to your authentication agent. 解決: 執行: eval `ssh-agent -s`

原创 git問題error: failed to push some refs

問題: ! [rejected] master -> master (fetch first) error: failed to push some refs to ‘https://github.com/wuliw

原创 LeetCode——Two Sum兩數之和

LeetCode 題目及解析 題目: Given an array of integers, return indices of the two numbers such that they add up to a specif