小编ama*_*el2的帖子

我无法使用Google Chrome加载资源:net :: ERR_BLOCKED_BY_CLIENT

我在运行我的项目后得到白页但是它正确地使用.net客户端我是否需要在浏览器中进行任何设置?并且链接将在错误之后出现

Failed to load resource: net::ERR_BLOCKED_BY_CLIENT http://clkmon.com/adServe/getTag?cid=200093510300000000&pid=CRSRDR&type=inject

Failed to load resource: net::ERR_BLOCKED_BY_CLIENT http://ads.626apps.com/a.php?626ref2=200093510300000000&626Name=Plus-HD-4.9&626ref3=B41A77C1675040A28F7E209964620E5EIE&626ref1=63726f73737269646572
Run Code Online (Sandbox Code Playgroud)

.net c#

289
推荐指数
7
解决办法
24万
查看次数

Linux GUI开发

我有一个大型GUI项目,我想移植到Linux.在Linux中用于GUI编程的最佳推荐框架是什么?像KDE/Gnome这样的框架是否可用于此目标或者更好地使用除X之外更通用的东西?

我觉得如果我选择了Gnome或KDE中的一个,那么我正在关闭市场,因为Linux市场中有一个选择了另一个.(是的,我知道有重叠)

有没有更好的办法?或者我是否必须创建2个完整的GUI应用程序才能获得接近100%的覆盖率?

没有必要拥有一个也适用于Win32的跨平台解决方案.

c++ linux user-interface kde gnome

14
推荐指数
2
解决办法
8134
查看次数

AngularJS RouteParams

我不明白为什么,但当我console.log()盒子和box.color它告诉我它未定义...我尝试了许多不同的方法来解决这个问题但它都失败了.

云9

Plunker

这是script.js:

var app = angular.module('LoginApp', ["firebase", "ngRoute", "ngCookies"])


app.provider("box", function ()
{
    var hex = "SomeColor";
    var UID = 3;
    return {
        setColor: function (value)
        {
            UID = value
        },
        $get: function ()
        {
            return {
                color: hex
            }
        }
    }
})

app.config(function ($routeProvider, $cookiesProvider) {
    $routeProvider
      .when('/', {
        templateUrl: 'HtmlFiles/registration.html',
        controller: 'regController'
      })
     .when('/logIn', {
        templateUrl: 'HtmlFiles/login.html',
        controller: 'loginController'
      })

      .when('/Chat', {
        templateUrl: 'HtmlFiles/Chat.html',
        controller: 'chatController'

      })
      .when('/Test' , {
        template: '<h3>This is just a testing …
Run Code Online (Sandbox Code Playgroud)

javascript undefined angularjs

11
推荐指数
1
解决办法
621
查看次数

SDL2无法创建窗口,因为找不到匹配的GLX visual

我有一个问题,因为我目前正在Windows 10上运行Ubuntu终端.我还安装了XMing作为我的X服务器(我使用XMing作为qemu等等).我正在尝试运行这个SDL2计划.所以我对main.cpp有这个:

#include <stdio.h> 
#include <stdlib.h> 
#include <unistd.h> 

#include <SDL2/SDL.h> 
#include <GL/gl.h> 

int main(int argc, char *argv[]) 
{ 
        int final_status = 1; 
        SDL_Window *window; 
        SDL_GLContext openGL_context; 

        if (SDL_Init(SDL_INIT_VIDEO)) { 
                fprintf(stderr, "Unable to initialize SDL: %s\n", 
                        SDL_GetError()); 
                return 1; 
        } 
        window = SDL_CreateWindow("My Demo", SDL_WINDOWPOS_CENTERED, 
                                  SDL_WINDOWPOS_CENTERED, 640, 480, 
                                  SDL_WINDOW_OPENGL); 
        if (!window) { 
                fprintf(stderr, "Can't create window: %s\n", SDL_GetError()); 
                goto finished; 
        } 

        openGL_context = SDL_GL_CreateContext(window); 
        if (!openGL_context) { 
                fprintf(stderr, "Can't create openGL context: %s\n", 
                        SDL_GetError()); 
                goto close_window; 
        } 

        /* drawing code removed …
Run Code Online (Sandbox Code Playgroud)

c++ glx sdl-2 windows-subsystem-for-linux

9
推荐指数
1
解决办法
5028
查看次数

如何包含字符文字?

我有一个问题,如何从文件中获取信息时包含字符串文字.让我展示一下我的代码以便更好地理解:

Program.b:

print \"Hello World\n\"; print \"Commo Estas :)\n\"; print \"Bonjour\";print \"Something\"; return 0;
Run Code Online (Sandbox Code Playgroud)

main.cpp(我已将实际文件最小化为此问题所需的内容):

int main()
{
    std::string file_contents;
    std::fstream file;
    file.open("Program.b");
    std::ifstream file_read;
    file_read.open("Program.b");

    if(file_read.is_open())
        while(getline(file_read,file_contents));

    cout << file_contents << endl;

}
Run Code Online (Sandbox Code Playgroud)

所以当我打印时file_contents,我得到:

print \"Hello World\n\"; print \"Commo Estas :)\n\"; print \"Bonjour\";print \"Something\"; return 0;
Run Code Online (Sandbox Code Playgroud)

你可以看到它包括\n.有没有办法让它成为一个真正的字符文字,所以打印它实际​​上会打印一个新行?(我希望引号一样.)

c++ special-characters

8
推荐指数
1
解决办法
141
查看次数

如何识别变量的类型

如何在c ++中正确识别变量类型.我试过这个来识别一种变量:

int a = 5;
std::cout << typeid(a).name() << std::endl;
Run Code Online (Sandbox Code Playgroud)

而不是预期的输出int,它给你:

i
Run Code Online (Sandbox Code Playgroud)

我很困惑,为什么会发生这种情况..它只是给你一个你声明变量的类型的第一个字母.Int不是唯一的...也是这样的:

 char a = 'A'
 std::cout << typeid(a).name() << std::endl;
Run Code Online (Sandbox Code Playgroud)

Example Program

有一个简单的解决方法吗?任何帮助,将不胜感激!

c++ types typeid gettype

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

如何在angularJS中创建全局变量

我有这个问题,当你注册时,你进入用户页面.并且它假设说"欢迎"用户剂量剂出现在网页上因为我不确定...请帮助这里是plunkr:

http://plnkr.co/edit/qB3Gkeq5ji1YQyy0kpGH?p=preview

我需要帮助..

我需要为plunker获取一些代码所以:script.js:

var app = angular.module('LoginApp', ["firebase", "ngRoute"])

app.config(function ($routeProvider) {
    $routeProvider
      .when('/', {
        templateUrl: 'registration.html',
        controller: 'AuthCtrl'
      })
      .when('/logIn', {
        templateUrl: 'login.html',
        controller: 'AuthCtrl'
      })

      .when('/User', {
        templateUrl: "User.html",
        controller: 'AuthCtrl'
      })
      .otherwise({
        redirectTo: '/'
      });


  });


app.factory("Auth", ["$firebaseAuth",
  function($firebaseAuth) {
    var ref = new Firebase("https://uniquecoders.firebaseio.com/");
    return $firebaseAuth(ref);
  }
]);


app.controller("AuthCtrl", ["$scope", "Auth",
  function($scope, Auth) {


      $scope.createUser = function() {

        $scope.message = null;
        $scope.error = null;
    var ref2 = new Firebase("https://uniquecoders.firebaseio.com/");
  ref2.createUser({
    email: $scope.email,
    password: $scope.password
  }, …
Run Code Online (Sandbox Code Playgroud)

angularjs

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

如何在不使用angularjs向下滚动时验证表单?

我正在尝试验证名为"同意信息"的页面的表单.在这里,用户必须向下滚动才能向前移动(请记住框底部没有复选框,而是用户必须一直向下滚动直到滚动结束),如果用户单击"继续/同意"按钮而不滚动,必须显示一个div元素/错误,说"需要滚动到信息的底部"(必须是锚链接,点击它应该突出显示带有颜色的框).这是代码和图像

 (function(){
    angular
        .module('agreeToInfoApp',[])
        .directive('execOnScrollOnBottom', [function () {
            return {
                restrict: 'A',
                link: function (scope, elem, attrs) {
                    var fn=scope.$eval(attrs.execOnScrollOnBottom),
                        clientHeight=elem[0].clientHeight;
                    elem.on('scroll',function(e){
                        var el=e.target;
                        if ((el.scrollHeight-el.scrollTop) === clientHeight) {
                            elem.addClass('class-summary')
                            scope.$apply(fn);
                        };
                    });
                }
            };
        }]);
})();
Run Code Online (Sandbox Code Playgroud)

HTML:

<body>
<div class="class-summary">
    <div class="open">
        <p>Some Information Missing</p>
        <ul>
            <li>Please scroll down to lookup the information</li>
        </ul>
    </div>
</div>
<form name="myform" >
    <div cols="3" exec-on-scroll-on-bottom name="agreeTerms" class="agree-terms" >
        <p>adsfadfad</p>
        <p>adsfadfad</p>
        <p>adsfadfad</p>
        <p>adsfadfad</p>
        <p>adsfadfad</p>
        <p>adsfadfad</p>
        <p>adsfadfad</p>
        <p>adsfadfad</p>
        <p>adsfadfad</p>
        <p>adsfadfad</p>
        <p>adsfadfad</p>
        <p>adsfadfad</p>
    </div><br>
    <input …
Run Code Online (Sandbox Code Playgroud)

javascript angularjs

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

如何在#include指令中使用宏?

我对如何在#include指令中使用宏感到困惑.我这样做了:

#include "../../../../GlobalDefintions.h"
#include "../../../../lib/libc++/" ARCH_FAMILY_S  "/" ARCH_S  "/stkl/printkc/printkc.h"
Run Code Online (Sandbox Code Playgroud)

GlobalDefintions.h:

#ifndef _GlobalDefintions_
#define _GlobalDefintions_

/*Architecture Information Start*/


#define ARCH i386
#define ARCH_FAMILY x86


#define ARCH_S "i386"
#define ARCH_FAMILY_S "x86"

/*Architecture Information End*/

#endif /*_GlobalDefintions_*/
Run Code Online (Sandbox Code Playgroud)

但是这给了我的是:

kernel.c++:24:88: fatal error: ../../../../lib/libc++/: No such file or directory  

#include "../../../../lib/libc++/" ARCH_FAMILY_S  "/" ARCH_S  "/stkl/printkc/printkc.h"

有没有办法成功追加ARCH_FAMILY_SARCH_S我的#include指令字符串?

c++ macros include

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

IntrinsicAttributes 和 string[] 类型上不存在属性“props”

我不确定为什么会收到错误:

TypeScript error in /home/amanuel2/tutorial/go/react-go/src/frontend/src/App.tsx(34,15):
Type '{ props: string[]; }' is not assignable to type 'IntrinsicAttributes & string[]'.
  Property 'props' does not exist on type 'IntrinsicAttributes & string[]'.  TS2322
Run Code Online (Sandbox Code Playgroud)

代码:

function App() {

  const [ChatHistory, setChatHistory] = useState<string[]>([])
  useEffect(() => {
    connect((msg: string) => {
      console.log("New Message")
      setChatHistory([...ChatHistory, msg])
    })
    console.log(ChatHistory)
    return () => { }
  }, [])

  
  
  return (
    <div className="App">
      <Header />
      <header className="App-header">
        <Chat props={ ChatHistory }/>
        <button type="submit" onClick={()=>sendMsg("Hello")}>
          Hello
        </button>
      </header>
    </div>
  );
}
Run Code Online (Sandbox Code Playgroud)

和 …

javascript typescript reactjs

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