小编amp*_*ine的帖子

目的是什么:(冒号)GNU Bash内置?

命令的目的是什么,什么都不做,只是一个评论领导者,但实际上是一个内置的shell?

它比在每个调用中将注释插入脚本大约40%要慢,这可能会根据注释的大小而有很大差异.我能看到的唯一可能的原因是:

# poor man's delay function
for ((x=0;x<100000;++x)) ; do : ; done

# inserting comments into string of commands
command ; command ; : we need a comment in here for some reason ; command

# an alias for `true' (lazy programming)
while : ; do command ; done
Run Code Online (Sandbox Code Playgroud)

我想我真正想要的是它可能具有的历史应用.

bash shell built-in

313
推荐指数
11
解决办法
11万
查看次数

Angular中的全球事件

有没有相当于$scope.emit()$scope.broadcast()在角?

我知道EventEmitter功能,但据我所知,它只会向父HTML元素发出一个事件.

如果我需要在fx之间进行通信怎么办?兄弟姐妹或DOM根目录中的一个组件和一个嵌套了几层深层的元素?

events angular

218
推荐指数
5
解决办法
12万
查看次数

单击时,bootstrap按钮显示蓝色轮廓

我添加了这个,但单击按钮时仍然会出现蓝色轮廓.

.btn:focus {
  outline: none;
}
Run Code Online (Sandbox Code Playgroud)

如何删除那丑陋的东西?

css twitter-bootstrap

119
推荐指数
10
解决办法
14万
查看次数

如何使用bootstrap在按钮之间给出间距

我想在按钮之间给出间距是否有办法使用引导程序给出间距,以便它们对于不同的屏幕分辨率是一致的.

我尝试过使用margin-left但这是正确的方法吗?

这是演示

HTML:

<div class="btn-toolbar text-center well">
    <button type="button" class="btn btn-primary btn-color btn-bg-color btn-sm col-xs-2 margin-left">
      <span class="glyphicon glyphicon-plus" aria-hidden="true"></span> ADD PACKET
    </button>
    <button type="button" class="btn btn-primary btn-color btn-bg-color btn-sm col-xs-2 margin-left">
      <span class="glyphicon glyphicon-edit" aria-hidden="true"></span> EDIT CUSTOMER
    </button>
    <button type="button" class="btn btn-primary btn-color btn-bg-color btn-sm col-xs-2 margin-left">
      <span class="glyphicon glyphicon-time" aria-hidden="true"></span> HISTORY
    </button>
    <button type="button" class="btn btn-primary btn-color btn-bg-color btn-sm col-xs-2 margin-left">
      <span class="glyphicon glyphicon-trash" aria-hidden="true"></span> DELETE CUSTOMER
    </button>
</div>
Run Code Online (Sandbox Code Playgroud)

CSS:

.margin-left{
    margin-left: 80px !important; …
Run Code Online (Sandbox Code Playgroud)

html css twitter-bootstrap

65
推荐指数
7
解决办法
16万
查看次数

将vim中的shift-tab映射到Vim中的inverse选项卡

我已经做了一些搜索,并在vim中发现了大量有关绑定键的信息,但我无法确定如何映射shift-tab.或者我需要将它映射到哪个命令以使其"向后翻转".

这就是我现在所拥有的:

map <S-tab> <S-,><S-,>
Run Code Online (Sandbox Code Playgroud)

可能相关的信息:我正在使用2.22.3终端运行Debian.与VIM - Vi IMproved 7.1

vim

43
推荐指数
2
解决办法
2万
查看次数

是否有linux命令来确定与给定进程ID关联的窗口ID?

给定XX的进程iD,我想要列出任何窗口ID,其中_NET_WM_PID = XX.如果可能的话,更好的是最老的仍然活跃的窗口ID.

我对linux很新,但我要做的是创建一个脚本,该脚本将采用命令行,并查看是否已经打开一个属于使用相同命令行调用的进程的窗口.如果是这样,只需将焦点设置到该窗口,否则执行命令行以获得新进程.我的目的是在我的ubuntu桌面中使用它,我将把这个脚本挂钩到我的easystroke鼠标手势命令中,这样,例如,每次我为gmail做手势我都没有得到一个全新的gmail会话,我只是被带到我现有的gmail chrome app窗口.也许有一个更简单的方法来解决所有这些问题,但我还没有找到方法.

在帮助下,我已经弄清楚如何使用pgrep找到命令行的PID以及如何使用wmctrl将焦点设置到窗口句柄,但我仍然坚持从PID到窗口ID.

linux x11

38
推荐指数
5
解决办法
4万
查看次数

jQuery没有在bootstrap模块中定义

我想为我的网站使用bootstrap(使用node.js).但是我有以下错误:

/var/www/node_modules/bootstrap/js/transition.js:59}(jQuery); ^ ReferenceError:未在Object中定义jQuery.(/var/www/node_modules/bootstrap/js/transition.js:59:3)在Module._compile(module.js:456:26)处于Object.Module._extensions..js(module.js:474:10) )在Module.load(module.js:356:32)的Function.Module._load(module.js:312:12)的Module.require(module.js:364:17)at require(module.js:380) :17)at Object.(/var/www/node_modules/bootstrap/dist/js/npm.js:2:1)在Module._compile(module.js:456:26)的Object.Module._extensions..js(module.js:474) :10)

我试着做一个

var bootstrap = require('bootstrap');
Run Code Online (Sandbox Code Playgroud)

在我的主节点中.

我用npm(npm install bootstrap从我的文件夹)安装了bootstrap .我也尝试以相同的方式安装jquery并添加一个var jQuery= require('jquery');但它不起作用.你知道什么是错的吗?我正在启动node.js,我可能会错过一些东西

然后我<link href="../node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">在我的HTML网页中使用引用引导程序`

javascript node.js twitter-bootstrap

29
推荐指数
1
解决办法
3万
查看次数

将Bootstrap添加到Jekyll

我是Jekyll的新手,想要引入一些Twitter Bootstrap功能.有没有人这样做过,如果有的话,你有什么建议吗?我会选择Jekyll-Bootstrap,但不再支持它了.我已经建立了我的Jekyll网站,我希望有一种方法来引入Bootstrap.

jekyll twitter-bootstrap jekyll-bootstrap

26
推荐指数
3
解决办法
1万
查看次数

Bootstrap表没有新行

<h3>Mijn biedingen</h3>
        <table class="table table-responsive">
        <thead>
        <tr>
            <th>nummerplaat</th>
            <th>Bod</th>
            <th>Status</th>
            <th>Datum bod</th>
            <th>Aankoopdatum</th>
        </tr>
        </thead>
        <tbody>
                    <tr>
            <td>THOMAS</td>
            <td>&euro;    90 000,00</td>
            <td>open</td>
            <td>15/10/2014</td>
            <td>
                                        Niet beschikbaar
                                </td>
        </tr>
                    </tbody>
    </table>
Run Code Online (Sandbox Code Playgroud)

这是我的代码,结果如下:https://www.dropbox.com/s/6vkc2mpu7z4yqgq/Screenshot%202014-10-15%2019.28.09.png?dl=0

我如何在一条线上拥有TD?这个网站是响应性的,但由于文本中的空格,文本变成两行.

css css3 twitter-bootstrap twitter-bootstrap-3

25
推荐指数
1
解决办法
4万
查看次数

仅在移动视图 - Bootstrap 3上折叠DIV

我有侧边栏搜索参数.我想仅在移动设备上对此DIV进行折叠功能.使用Bootstrap 3 - 最新版本.

这是HTML标记.

<div class="col-md-3 col-sm-4 SearchParameters">
            <h4 data-toggle="collapse" data-target="#search">Location</h4>
            <div class="col-md-12 sCheck no-gutter collapse" id="search">
                <h5>Lahore (254)</h5>
                <div class="col-md-12">
                    <form role="form">
                        <div class="checkbox checkbox-primary">
                            <input type="checkbox" id="ModelTown">
                            <label for="ModelTown">Model Town</label>
                        </div>
                        <div class="checkbox checkbox-primary">
                            <input type="checkbox" id="DHA">
                            <label for="DHA">DHA</label>
                        </div>
                        <div class="checkbox checkbox-primary">
                            <input type="checkbox" id="CG">
                            <label for="CG">Cavalry Ground</label>
                        </div>
                        <div class="checkbox checkbox-primary">
                            <input type="checkbox" id="Gulberg">
                            <label for="Gulberg">Gulberg</label>
                        </div>
                        <div class="checkbox checkbox-primary">
                            <input type="checkbox" id="Samnabad">
                            <label for="Samnabad">Samnabad</label>
                        </div>
                        <div class="checkbox checkbox-primary">
                            <input type="checkbox" id="AIT">
                            <label for="AIT">Allama Iqbal …
Run Code Online (Sandbox Code Playgroud)

twitter-bootstrap

25
推荐指数
2
解决办法
4万
查看次数