#for

ssh.sh_for_ubuntu1404

#!/bin/bashsed-i's/PermitRootLoginwithout-password/PermitRootLoginyes/g'/etc/ssh/sshd_configsed-i's/#PasswordAuthenticationyes/PasswordAuthenticationyes/g'/etc/...
代码星球 ·2020-04-03

ssh.sh_for_ubuntu1604

#!/bin/bashsed-i's/PermitRootLoginprohibit-password/PermitRootLoginyes/g'/etc/ssh/sshd_configsed-i's/#PasswordAuthenticationyes/PasswordAuthenticationyes/g'/etc...
代码星球 ·2020-04-03

ssh.sh_for_centos

#!/bin/bashsed-i's/#PermitRootLoginyes/PermitRootLoginyes/g'/etc/ssh/sshd_configsed-i's/#UseDNSyes/UseDNSno/g'/etc/ssh/sshd_configsed-i's/GSSAPIAuthenticationye...
代码星球 ·2020-04-03

cloud.cfg_for_ubuntu

user:defaultdisable_root:falsepreserve_hostname:falsecloud_init_modules:-bootcmd-resizefs-set_hostname#-update_hostname-update_etc_hosts-ca-certs-rsyslog-sshclo...
代码星球 ·2020-04-03

cloud.cfg_for_centos

users:-defaultdisable_root:0ssh_pwauth:1locale_configfile:/etc/sysconfig/i18nmount_default_fields:[~,~,'auto','defaults,nofail','0','2']resize_rootfs_tmp:/devss...
代码星球 ·2020-04-03

Before an Exam

题目:http://codeforces.com/problemset/problem/4/B题解:有d组minmax值以及一个sum值,现在要求d个介于min和max之间的数,让其和为sum。此题可以先从sum中减去所有的min,然后对剩下的值进行处理,对其分配时不能超过每一对max-min的值,如果能全部分完,则满...
代码星球 ·2020-04-03

wpf/winform获取windows10系统颜色和主题色

原文:wpf/winform获取windows10系统颜色和主题色Windows10开始微软在系统颜色中添加了深色,对于UWP来说很轻松就能获取到系统当前的颜色和主题色,而对于Win32应用就没有那么直观了。在wpf中,可以通过SystemParameters.WindowGlassBrush获取一个近似的颜色,也没办...

取代Ajax.BeginForm的ajax使用方法

原文:取代Ajax.BeginForm的ajax使用方法Asp.netcore中已经取消了Ajax.BeginForm,也不会计划出ajaxtaghelper,所以得利用插件jquery-ajax-unobtrusive,在form中加入相关data-*属性https://github.com/aspnet/Mvc/i...

Xamarin.Forms登录对话框及表单验证

原文:Xamarin.Forms登录对话框及表单验证微信公众号:Dotnet9,网站:Dotnet9,问题或建议,请网站留言;如果您觉得Dotnet9对您有帮助,欢迎赞赏。内容目录实现效果业务场景编码实现本文参考源码下载弹出登录窗口,输入验证主窗口弹出登录或者其他小窗口表单验证3.1添加Nuget库创建名为“Login...

Xamarin.Forms弹出对话框插件

原文:Xamarin.Forms弹出对话框插件微信公众号:Dotnet9,网站:Dotnet9,问题或建议,请网站留言;如果您觉得Dotnet9对您有帮助,欢迎赞赏。内容目录实现效果业务场景编码实现本文参考源码下载弹出动画主窗口弹出登录或者其他小窗口时使用3.1添加Nuget库创建名为“App5”的Xamarin.Fo...

Winform给TextBox设置默认值

主要是通过TextBox的获取焦点Enter和失去焦点Leave两个事件来实现的,思路如下:  1.设置一个字符串常量,作为TextBox的默认值;  2.在界面的构造方法中将默认值赋值给TextBox,并设置TextBox的ForeColor为灰色;  3....

c#基础在winform操作数据库,实现增删改查

1.数据库操作类代码:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.Data;usingSystem.Configuration;...

工具系列 | 使用FormData方式上传文件

服务端代码/***文件上传*/publicfunctionuploadFile(){Log::error('文件上传:'.json_encode($_FILES));$dir=$this->request->post('type','file');$file=$this->request->fi...

13-UIKit(tableviewcell贴图、手势GestureRecognizer、transform变形)

目录:一、tableviewcell贴图二、手势GestureRecognizer5.1Tap(按一下)5.2Swipe(轻扫一下)5.3pinch(捏/扩)5.4longPress(长按)5.5Pan(拖动)5.6Rotation(旋转)6transform变形回到顶部一、tableviewcell贴图1.table...

Android Exception 5(startActivityForResult & singleTask)

昨天碰到一个很诧异的事情,主要内容是1.startActivityForResult(intent2,302);2.onActivityResult问题是:onActivityResult调用时间很让人尴尬,就是在startActivityForResult触发的时候,onActivityResult就执行了。而且在下...
首页上一页...266267268269270...下一页尾页