码迷,mamicode.com
首页 >  
搜索关键字:linux指令 查找文件 find whereis which locate    ( 33554个结果
多开发机别名跳转脚本片段
#! /bin/bash # @author # @breif auto ssh function show_usage(){ echo -e " This is Usage " echo -e " -h: which host to go,for example dev041" } functio ...
分类:其他好文   时间:2021-04-19 15:50:26    阅读次数:0
查看电脑指定端口的占用情况
首先利用快捷键win+r打开运行窗口,输入cmd,回车 1、在命令窗口中输入: netstat -an 可以查看当前所有已被占用的端口号 本地地址(Local Addresss)对应的这列,“:”后边即为以开放的端口号。 2、如果需要指定端口号查看,可以输入: netstat -ano|find " ...
分类:其他好文   时间:2021-04-16 12:26:12    阅读次数:0
295. Find Median from Data Stream
问题: 设计结构体,能够满足以下两个功能: 向结构体中插入数据 void addNum(int num) 去当前结构体中的中位数 double findMedian() 若共有奇数个数,取最中间的数 若共有偶数个数,取中间两个数之和/2 Example 1: Input ["MedianFinder ...
分类:其他好文   时间:2021-04-16 11:45:21    阅读次数:0
02.ElementUI源码学习:babel配置
书接上文,接下来项目将引入babel支持ES6+语法兼容。 Babel 是一个工具链,主要用于将 ECMAScript 2015+ 版本的代码转换为向后兼容的 JavaScript 语法,以便能够运行在当前和旧版本的浏览器或其他环境中。中文官网 0x00.babel概念 Babel 是一个编译器(输 ...
分类:其他好文   时间:2021-04-16 11:40:13    阅读次数:0
linux 删除中文乱码
ls -li find . -inum 1840704 -exec rm {} -rf \; ...
分类:系统相关   时间:2021-04-15 12:07:25    阅读次数:0
gyp ERR! stack Error : can't find python executable "python",you can set the PYTHON env variable.
vue中安装node-sassnpm install node-sass --save-dev1出现上面图中问题 解决办法:vscode里,打开终端,输入下面的内容先输入(在管理员模式下打开) npm install --global --production windows-build-tools ...
分类:编程语言   时间:2021-04-14 11:49:56    阅读次数:0
UE4内存分配器概述
UE4支持多种内存分配器: /** Which allocator is being used */ enum EMemoryAllocatorToUse { Ansi, // Default C allocator Stomp, // Allocator to check for memory s ...
分类:其他好文   时间:2021-04-13 12:34:37    阅读次数:0
690. Employee Importance
You are given a data structure of employee information, which includes the employee's unique id, their importance value and their direct subordinates' ...
分类:其他好文   时间:2021-04-13 12:31:50    阅读次数:0
Full Binary Tree
题目来源 Full Binary Tree Description In computer science,a binary tree is a tree data structure in which each node has at most two children. Consider an ...
分类:其他好文   时间:2021-04-13 12:02:15    阅读次数:0
Leetcode** 162. Find Peak Element
Description: A peak element is an element that is strictly greater than its neighbors. Given an integer array nums, find a peak element, and return it ...
分类:其他好文   时间:2021-04-13 11:52:46    阅读次数:0
33554条   上一页 1 ... 12 13 14 15 16 ... 3356 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!