小编BG *_*uno的帖子

如何在完全背景"Microsoft Windows(WIN)"中运行"Oracle VirtualBox(VBOX)"?

问题

我想在本地DEV机器上使用" Microsoft Windows(WIN) " 运行自动启动" 虚拟机(VM) ",而不使用" Oracle VirtualBox(VBOX) "" 图形用户界面(GUI ) ".

如何在完全运行后台进程中执行此操作?

virtualization service virtualbox vbox

46
推荐指数
6
解决办法
8万
查看次数

如何解决"Microsoft Visual Studio(VS)"错误"无法连接到配置的开发Web服务器"

问题

如果您开始使用" Microsoft Visual Studio(VS) "中的" Microsoft Internet Information Services Express(IIS) ",您可能会在运行时获得生成此错误消息

Unable to connect to the configured development Web server.

Failed to register URL "http://{ip_addr}:{port}/" for site "{project_name}" application "/". Error description: Access is denied. (0x80070005)

它有什么样的权利?

visual-studio iis-express access-rights

45
推荐指数
5
解决办法
10万
查看次数

如何从Firebase数据库中删除所有数据?

我开始使用使用Firebase实时数据库的代码.我实现了它到我的解决方案.连接和控制是完美的,所以我将它用于生产环境.

过了一段时间我正在升级,我需要再次删除所有数据 - 但是等等,在最高根级别的控制台中没有删除按钮,并且只允许一次选择一个项目:

https://console.firebase.google.com/project/{{project_name}}/database/data
Run Code Online (Sandbox Code Playgroud)

在上次更新中只显示了此消息,并且没有下一步的步骤:

激活只读和非实时模式以提高浏览器性能选择具有较少记录的密钥以实时编辑或查看

问:如何一次删除所有数据?

firebase firebase-realtime-database firebase-console

21
推荐指数
5
解决办法
1万
查看次数

如何解决闪烁的 Font Awesome 图标?

如果我使用到处推荐的东西 -每次在“页面加载时”闪烁时都使用“ Font Awesome ”的CDN 附件。

<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet" />
Run Code Online (Sandbox Code Playgroud)

Q 如何防止闪烁?

css fonts cdn webfonts font-awesome

7
推荐指数
1
解决办法
6025
查看次数

如何在"ios contenteditable element"中恢复格式文本后的平滑滚动?

我想在#ios上的"contenteditable element"中编辑内容.在那个元素是更多的文字.

脚步

  1. 我顺利滚动到所选文本
  2. 我触摸元素和打开键盘
  3. 我触摸并选择多行文本并将其格式化为粗体
  4. 我现在想要滚动内容,但它不再流畅

这是可播放的代码:https:
//console.webcloud.io/profile/bruno.onlyme@gmail.com/_playwithcode/contenteditable-scroll-after-format/index.html

视频预览在这里.

<html>

<head>
    
    <meta name="viewport" content="width=device-width,minimum-scale=1,maximum-scale=1,user-scalable=no">
    
    <style>
        
        body {
            font-size: 24px;
        }
        
    </style>

</head>

<body>
    
    <button>button</button> | <a onclick="console.log();">anchor</a><br>
    <br>
    
    <div contenteditable>
        What is Lorem Ipsum?
        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type …
Run Code Online (Sandbox Code Playgroud)

html javascript contenteditable mobile-webkit ios

6
推荐指数
1
解决办法
165
查看次数

如何完全删除新的Microsoft Visual Studio for Mac?

我最近在它发布之后就安装了Visual Studio for Mac.它消耗了20 gb的磁盘空间,所以我决定将其删除.我进入了应用程序文件夹,并将最近安装的与安装相关的组件移动到了垃圾箱.但它根本没有释放任何空间.所以我在线搜索并按照以下链接进行卸载:卸载Xamarin

在关注链接并输入所有终端命令后,我只能释放10 GB的存储空间.如何释放剩余的10 GB存储空间?

macos uninstall file visual-studio

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

ejs错误“include”需要“filename”选项

问题

通过一些在线示例,您可以使用这样的语法

<%- include hello-world %>
Run Code Online (Sandbox Code Playgroud)

或者甚至你可以使用

<%- include('hello-world'); %>
Run Code Online (Sandbox Code Playgroud)

您可能会收到包含缺少文件名的错误

Exception occurred: Error: `include` requires the 'filename' option.
Run Code Online (Sandbox Code Playgroud)

问:如果我的语法正确,问题出在哪里?

ejs node.js

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