desktop

Twitter Bootstrap2 100% height responsive

隐身守侯 提交于 2019-12-29 18:42:09
问题 I want to make a responsive layout with twitter's bootstrap v2, with a column and a map. The idea is to build a UI like that from maps.google.com, but using a responsive design with bootstrap2. I want to have a style for desktop with navbar on top 1 left column (as sidebar) height: 100% minus navbarHeight, with a scrollbar width: .span3 content that fills the rest of the screen Then for the responsive mobile design I want the parts that have the full height to have a height depending on the

颂游搭建教程

你。 提交于 2019-12-29 15:09:12
1,伪静态规则: location /qp_host/ { if (!-e $request_filename){ rewrite ^/qp_host/(.*)$ /qp_host/index.php?s=$1 last; } } location /qp_ht/ { if (!-e $request_filename){ rewrite ^/qp_ht/(.*)$ /qp_ht/index.php?s=$1 last; } } location /qp_down/ { if (!-e $request_filename){ rewrite ^/qp_down/(.*)$ /qp_down/index.php?s=$1 last; } } 2,网站更改,和数据库端口3308(根据自己数据库端口去改) Desktop\default\qp_host\Mobile\Admin\Common\function.php Desktop\default\qp_host\Mobile\Admin\Conf\config.php Desktop\default\qp_host\Mobile\Pay\Conf\config.php Desktop\default\qp_ht\application\database.php Desktop\default\qp_ht\application

Linux 基础操作

我们两清 提交于 2019-12-27 08:18:11
shell是什么? 为使用者提供操作界面的软件(命令解析器) 内核保镖 shell的种类分为1.图形shell 2.命令形式shell 如何打开一个shell? 单击鼠标右键 选择timital # 在操作过程中,存在风险,在虚拟机中进行操作 el8中控制虚拟机的方法(在真机中打开Terminal,输入命令如下) rht-vmctl 控制vm rht-vmview 显示vm [root@foundation66 ~]# rht-vmctl status workstation //检测vm的状态 workstation DEFINED [root@foundation66 ~]# rht-vmctl start workstation //打开vm Starting workstation. [root@foundation66 ~]# rht-vmview view workstation //显示vm [root@foundation66 ~]# rht-vmview view workstation//当vm出现任何问题时把vm还原(重置) [root@foundation66 ~]# rht-vmctl poweroff workstation //关闭vm Kernel 系统核心程序 负责管理系统的进程,内存,设备驱动程序,文件和系统网络

Redis可视化工具 Redis Desktop Manager

我怕爱的太早我们不能终老 提交于 2019-12-27 02:18:25
官网下载: https://redisdesktop.com/download github地址: https://github.com/uglide/RedisDesktopManager/releases 一、下载 Redis Desktop Manager 百度网盘: http://pan.baidu.com/s/1kU8sY3P 文件名称:redis-desktop-manager-0.8.8.384.exe 二、安装Redis Desktop Manager redis-desktop-manager-0.8.8.384.exe 傻瓜式安装,点击下一步就行。 安装完成桌面会生成如下快捷图标,双击启动如右图。 三、创建连接 来源: https://www.cnblogs.com/itrena/p/9200963.html

Linux学习基础

别来无恙 提交于 2019-12-27 01:06:38
1.什么是shell?什么是内核? 在操作系统中shell是内核保镖,是app和内核沟通的桥梁,用户可以通过shell使用内核,调动内核操控硬件。内核是系统的核心程序,负责管理系统的进程,内存,设备,驱动程序,文件和网络系统,并决定了调用资源的顺序与方式,由于特别重要,所以一般不允许修改内核。linux是一种内核,而不是一种操作系统。 2.命令行提示符的意义 root :开启shell的用户 @ :分隔符 foundation1 :主机短名称 Desktop :当前工作目录的基本名称(当前是在桌面) $: 身份提示符(超级用户) 3.如何执行命令 [root@foundation1 Desktop]# <命令>空格<参数>空格<目标> [root@foundation1 Desktop]# touch westos [root@foundation1 Desktop]# rm -rf westos 参数用来指定命令的某些功能,可以加也可以不加 使用参数时 -a -b -c =-abc=-cba 当命令或目标比较长时可以用快捷键 Tab补齐 4.如何开启shell 可以直接在桌面点击右键选择open in terminal 也可以在应用程序里打开termnal 5.shell中的快捷键 6.如何调用历史 直接键入命令 history就可以查看命令 键入history -c

树莓派开机启动运行脚本

会有一股神秘感。 提交于 2019-12-26 20:19:54
2019年更新 写好python脚本/home/pi/login.py 编辑rc.local文件 sudo vim /etc/rc.local 在exit 0之前添加命令 su pi -c "python /home/pi/login.py &" 保存退出 解释 su pi 意思是到这条命令时使用root用户权限在pi用户下执行这条命令, -c 表示执行完这条命令之后恢复原来的用户, python /home/pi/login.py & 是要执行的命令, & 放在命令后面表示设置此进程为后台进程 参考 以下作废 在 /home/pi/.config 下找到名为autostart的文件夹,如果没有就新创建一个。在该文件夹下创建一个xxx.desktop文件,文件名自拟,后缀必须是desktop,文件内容如下: [Desktop Entry] Name=test Comment=Python Program Exec=python /home/pi/test.py Icon=/home/pi/python_games/4row_black.png Terminal=false MultipleArgs=false Type=Application Categories=Application;Development; StartupNotify=true 参考 后继

RHEL8中的命令行

旧城冷巷雨未停 提交于 2019-12-26 07:40:35
RHEL8中的命令行 文章目录 RHEL8中的命令行 Shell解析 shell是什么 Kernel(内核) 命令行提示符 如何运行命令 系统中的常用快捷键 Shell中历史记录调用 虚拟机 关于虚拟机的操作 Shell解析 shell是什么 为使用者提供操作界面的软件(命令解析器) 内核保镖 Shell的种类分为: 图形界面shell(Graphical User Interface shell 即 GUI shell) 命令行式shell(Command Line Interface shell 即 CLI shell) Kernel(内核) 系统核心程序 负责管理系统的进程,内存,设备驱动器,文件和网络系统 * 注意:Linux是一款内核的名称并不是操作系统的名称* uname -r :显示操作系统的发行版号。 命令行提示符 命令行提示符的含义 [kiosk@foundation0 Desktop]$ kiosk:开启Shell的用户 @:分隔符 foundation():主机短名称 Desktop:当前工作目录的基本名称 $:身份提示符(表明你是普通用户还是管理员用户) 如何运行命令 [kiosk@foundation0 Desktop]$ <命令>空格<参数>空格<目标> [kiosk@foundation0 Desktop]$ ls 注: • 参数用来指定命令的某些功能

迁移桌面程序到MS Store(3)——开机自启动

痴心易碎 提交于 2019-12-25 15:42:55
  迁移桌面程序的时候,有可能你会遇到这么个需求——开机自启动。Windows传统桌面程序的传统陋习。不论什么奇葩软件都想要开机自启动,默认就给你打开,一开机哐哐哐什么雷,什么企鹅都蹦出来,也不管你用不用。   但是上班呢,老板是给钱的,只要有需求,节操什么的不重要。今天我们就来看怎么弄开机自启动……(大雾)   当然我们这里介绍的,是可以让用户随时禁用的。还有就是MS Store在审核时,会让你写需要自启动的理由。原生的UWP APP还会有一个要求授权的对话框。   首先我们还是和上一篇一样,建好一个空的WPF(WinForm也行)工程和一个Packaging工程。假设我们这里叫AutoLaunchApp和AutoLaunchPackaging。记得在Packaging工程的Applications下添加对AutoLaunchApp的引用。   接下来右键Package.appxmanifest文件,选择open with…再选择XML(Text)Editor打开。      在这个XML文件中,在最上方的Package添加命名空间 xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"      之后就可以通过desktop来添加desktop:Extension和desktop

How to re-authenticate NATIVE DESKTOP Facebook app

穿精又带淫゛_ 提交于 2019-12-25 08:57:51
问题 I'm in the progress of reading all documentation of Facebook related to programming a Native Desktop application for Facebook. I explicitly state Native Desktop app. It will be using Client Side authentication WITHOUT the JAVA SDK. As far as I have read, I know that access_tokens do expire. I've also read that you can re-authenticate. But........... Facebook has very limited documentation about how to do that with a desktop application running on Windows/Mac OSX or Linux using Client Side

Desktop Air Application Accessibility

冷暖自知 提交于 2019-12-25 07:05:04
问题 I'm trying to add accessibility to my application. I still can't figure out exactly how accessibility works in spark components. I'm on window's platform with the narrator function enabled. All I want to do is to name the three fields with a different name for accessibility so the user knows what to do. I tried to just use declaration to define the accessibility properties but it seems like it will always only speak out one name of the button. Thus, I took another approach and tried to create