码迷,mamicode.com
首页 >  
搜索关键字:sep    ( 2064个结果
Linux 文件与目录管理
我们知道Linux的目录结构为树状结构,最顶级的目录为根目录 /。 其他目录通过挂载可以将它们添加到树中,通过解除挂载可以移除它们。 在开始本教程前我们需要先知道什么是绝对路径与相对路径。 绝对路径:路径的写法,由根目录 / 写起,例如: /usr/share/doc 这个目录。 相对路径:路径的写 ...
分类:系统相关   时间:2020-05-21 16:21:00    阅读次数:68
Citrix XenApp安装SEP杀毒软件后隐藏SEP图标
1、禁用SEP防篡改2、导入下列注册表WindowsRegistryEditorVersion5.00[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Symantec\SymantecEndpointProtection\SMC]"LaunchSMCGui"=dword:00000000[HKEY_LOCAL_MACHINE\SYSTEM\CurrentContr
分类:移动开发   时间:2020-05-21 10:02:27    阅读次数:117
Python GUI编程(Tkinter)Menu顶层菜单
import tkinterwin = tkinter.Tk()win.title("sunck")win.geometry("400x400+200+20")#菜单条menubar = tkinter.Menu(win)win.config(menu=menubar)def func(): pri ...
分类:编程语言   时间:2020-05-19 16:43:53    阅读次数:104
PAT 1004 Counting Leaves (30分)
题目 A family hierarchy is usually presented by a pedigree tree. Your job is to count those family members who have no child. Input Specification: Each ...
分类:其他好文   时间:2020-05-18 18:45:58    阅读次数:61
python的基本格式化输出
age = 18 weight = 64 print("我的名字是%s,我的国籍是%s"%("小张","中国")) print("我的年龄:%d岁"%age) print("我的年龄:%d岁,体重是%dkg"%(age,weight)) print("aaa","bbb","ccc") print( ...
分类:编程语言   时间:2020-05-18 00:40:57    阅读次数:90
SpringBoot之整合Quartz调度框架-基于Spring Boot2.0.2版本
1.项目基础 项目是基于Spring Boot2.x版本的 2.添加依赖 <!-- quartz依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-quartz ...
分类:编程语言   时间:2020-05-15 13:48:24    阅读次数:109
浅析微软的网关项目 -- ReverseProxy
浅析微软的网关项目 Intro 最近微软新开了一个项目 "ReverseProxy" ,也叫做 YARP(A Reverse Proxy) 官方介绍如下: YARP is a reverse proxy toolkit for building fast proxy servers in .NET ...
分类:其他好文   时间:2020-05-14 15:37:56    阅读次数:105
1044 Shopping in Mars
Shopping in Mars is quite a different experience. The Mars people pay by chained diamonds. Each diamond has a value (in Mars dollars M$). When making ...
分类:其他好文   时间:2020-05-10 23:17:57    阅读次数:64
【python小随笔】字典的替换方法
months = {'JAN' : 1, 'FEB' : 2, 'MAR' : 3, 'APR' : 4, 'MAY' : 5, 'JUN' : 6, 'JUL' : 7, 'AUG' : 8, 'SEP' : 9, 'OCT': 10, 'NOV': 11, 'DEC' : 12} def tes ...
分类:编程语言   时间:2020-05-10 13:19:10    阅读次数:84
ftp上传单一文件示例
废话不多说,直接上代码 1 class Program 2 { 3 static void Main(string[] args) 4 { 5 6 string username = "abc"; 7 string pwd = "123"; 8 string filePath = @"C:\User ...
分类:Web程序   时间:2020-05-10 01:40:32    阅读次数:64
2064条   上一页 1 ... 12 13 14 15 16 ... 207 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!