chenlulouis

暴走笑话 杭州空调维修 杭州燃气灶维修 杭州洗衣机维修 上海ktv酒吧招聘 上海招聘 上海夜场招聘 上海夜场招聘

导航

2025年4月3日 #

K8S-ingress + 域名: 外部访问集群方式。

摘要: 127.0.0.1 timeserver.example.com127.0.0.1 robohash.example.com kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy 阅读全文

posted @ 2025-04-03 14:47 chenlulouis 阅读(16) 评论(0) 推荐(0)

2022年1月2日 #

locks, blocking, dead lock, session, connection and request

摘要: Installing SFTP/SSH Server on Windows using OpenSSH :: WinSCP -- Listing 8.2 Creating the sample database and table CREATE DATABASE IWS_TempGO USE IWS 阅读全文

posted @ 2022-01-02 20:20 chenlulouis 阅读(49) 评论(0) 推荐(0)

2021年11月6日 #

.gitlab-ci.yml

摘要: stages: - build - test - deploy variables: before_script: - export ROOT_PATH=$(pwd) - echo 'root path:' $ROOT_PATH #- mkdir $PROJECT_REPO_NAME #- cd $ 阅读全文

posted @ 2021-11-06 00:15 chenlulouis 阅读(19) 评论(0) 推荐(0)

2021年1月8日 #

centos常用命令集

摘要: https://pan.baidu.com/s/1OdRwiz_pMI6KzGuzlFvd5Q 查找指定路径下包含字符串的内容 ls /usr/local | grep javall 查看目录下文件详细信息. 代表当前目录 .. 代表上级目录 ~ 代表当前用户的主目录 / 代表根目录cd:代表切换目 阅读全文

posted @ 2021-01-08 12:11 chenlulouis 阅读(137) 评论(0) 推荐(0)

2017年3月8日 #

.NET Best Practices

摘要: Before starting with best practices tobe followed, it is good to have clear understanding of how memory is managed (allocation, de-allocation). So, le 阅读全文

posted @ 2017-03-08 16:15 chenlulouis 阅读(260) 评论(0) 推荐(1)

2012年10月29日 #

How to solve Windows system crashes in minutes

摘要: you're lucky, it only ruins your day. More than likely, you're in for several bad days followed by a few stressful weeks or months. After all, systems rarely fail only once. Rather, they keep crashing until you find the cause and fix the problem.UPDATE: How to solve Windows 7 crashes in minu 阅读全文

posted @ 2012-10-29 17:14 chenlulouis 阅读(811) 评论(0) 推荐(2)

2012年7月24日 #

vs2010,rdlc报表数据->新建数据集向导扩展绑定字段的技巧

摘要: 1.2.以右键选择XML编辑器打开报表文件自定义扩展报表数据集的可绑定字段3.4.注意,最后在提供数据源的sql中要包括上面设计报表中所有的绑定字段 阅读全文

posted @ 2012-07-24 23:36 chenlulouis 阅读(1611) 评论(0) 推荐(1)

2012年7月20日 #

RDLC打印成PDF,一页不能显示所有列,部分列到第2页显示的问题

摘要: 设计的RDLC标签报表是:3*3标签,A4纸规格,每个标签尺寸5.9cm*8.8cm,每列间隔 0.1cm。WEB中显示每行变为每行4列,预览和实际打印效果又每行3列,但第4个标签没有出现在第二第一列而是出现第二页第一列位置,查了很多资料未 果,求高手赐教!!!有几个地方请注意下:(Body Width + Left margin + Right margin) <= (Page width).请参考下面连接中的这个主题试试。6.Layout - Does your report print and display on the web correctly?http://www.ssw. 阅读全文

posted @ 2012-07-20 16:32 chenlulouis 阅读(1422) 评论(0) 推荐(1)

设置RDLC中table控件的表头在每页显示

摘要: 1.在Tablix 属性对话框中勾选“在每一页上重复标题行”及“滚动时保持标题可见”,注意只勾选行标题里面选项,不勾选列标题,否则编译通不过2.在分组窗格中,单击窗格上的小三角,选择“高级模式”,以显示静态成员:3.鼠标单击静态(行组层次中选择相应项目(静态)),在右侧属性窗口设置以下属性 阅读全文

posted @ 2012-07-20 16:25 chenlulouis 阅读(1953) 评论(3) 推荐(1)

2012年3月30日 #

windows下统计某ip的指定端口的连接数

摘要: 统计连接192.168.0.1的10000号端口的连接数netstat -an -p tcp | find "192.168.0.1" | find /c "10000" 阅读全文

posted @ 2012-03-30 17:20 chenlulouis 阅读(2576) 评论(0) 推荐(2)