The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
54 views

How do I get Rtools 3.0 working for R 3.0? R can't find the installation

I'm trying to get R to recognize that I have installed Rtools.exe. I've tried installing it in several different locations. However, whenever I restart R and load devtools I get the same error: > ...
0
votes
1answer
14 views

Chrome DevTool panel docked to right issue

I use dev tools panel docked to the right to test various screen resolutions/widths. After right click to inspect element I have to resize the panel again as it resizes to last width before inspecting ...
6
votes
3answers
99 views

Is there any tool / way to detect/remove all unused variables,macros,headers(includes) and functions from c++ code?

I had to customize some projects which have been written for some other purpose but some core functionality is same for my project and works as it is. But There are lots of variables, macros,functions ...
1
vote
0answers
37 views

add citation information in R package

I am building my R package using Roxygen2 and devtools, and I would like to add some citation information in my R codes (i.e. I hope to write in a .R file from which the citations can be ...
0
votes
0answers
17 views

Chrome downloads content but does not display it in DevTools

I'm requesting http://images.tv.adobe.com/cdn/aws/atv-fe545/desktop/swf/player.swf in Chrome. It's loading flash player and playing some default video (external). Why Chrome's DevTools don't display ...
0
votes
0answers
7 views

IE dev tool bar not logging in debug statements when https is enabled on it

IE dev tool bar not logging in debug statements when https is enabled on it. It logs properly when https is not enabled . I am working on IE8. Please do share your thoughts. Thanks in advance.
3
votes
3answers
62 views

Javascript code: how does it work?

I recently completed the DevTools ~> http://discover-devtools.codeschool.com/ course and while inspecting the code used I came across some sections which I did not understand: String.prototype.repeat ...
1
vote
1answer
56 views

data.table & devtools: install_github error - function works locally but not after installing package from github

I'm having trouble with the data.table package after installing a package from github using devtools. My custom function (which uses data.table functionality) works when I load the function locally, ...
2
votes
1answer
76 views

devtools/GitHub download error

As of today I can not use devtools to install a package from GitHub. I don't know if the error lies in: Me devtools GitHub I'm using install_github as follows and get the following error: ...
0
votes
2answers
86 views

How to use node-webkit-agent?

How to use node-webkit-agent? I'm stuck with the second step: Using your browser, go to devtools frontend URL corresponding to your nodejs version How can I access the devtools?
0
votes
1answer
24 views

Chrome Developer tools numbers after each files name?

I was debugging my website using the developer tools, if you refer to my image, there are 2 styles.css overwrite one another. It is weird though, because I remember I have only one style.css file ...
0
votes
1answer
47 views

do not show function help document in building R package by roxygen2

I am using devtools to build R package, and there are some functions that are NOT designed to be visible to end-users. However, since these functions involve calling C codes by .Call, so that I have ...
0
votes
1answer
21 views

object 'Cdqrls' not found when building R packages using devtools

I got an error as the title shows Error: object 'Cdqrls' not found I use devtools for building R packages, and one function in my current package, I used .Call(Cdqrls, x[, id1, drop=FALSE] * w, w ...
1
vote
1answer
30 views

devtools test() returning 'Loading [package] Testing [package] NULL'

I'm relatively new to R and am trying to develop an example package which has documentation, unit testing etc baked in to enable myself and others in the company to reference it for best practices. ...
0
votes
2answers
29 views

make Chrome script breakpoints persistant between page (re-)loads

I have scripts that run when the document loads. But to see changes I've made to the page, I must reload it, and this clears out all the breakpoints I've set in my script. Is there anyway to make ...
0
votes
0answers
41 views

How to read sass code (created by hammer) on Chrome?

I read this Article which states that we can debug our sass code using chrome. I managed to do this using codekit as a sass compiler. The result is very good. Recently I started using Hammer to create ...
2
votes
2answers
53 views

Should there be a 'package' subfolder in a github package repo [duplicate]

I developed a small R package using devtools and put it on github (https://github.com/paulhurleyuk/PaulHurleyMisc). I created it with this structure PaulHurleyMisc\ R\ data\ man\ ...
0
votes
0answers
22 views

How do you programmatically switch page contexts in chrome devtools?

One of the dropdowns at the bottom of the chrome devtools javascript console is the page-context menu, which lets you switch into and out of browser extension context. Is there a way to do this ...
0
votes
1answer
57 views

Node.js and DevTools autosave

Did anyone have this problem? I'm trying to use Node.js and DevTools autosave, my path details in Chrome are: Match: http://localhost:49387/ Save To: F:\MvcApplication1\MvcApplication1\ Servers: ...
0
votes
1answer
43 views

Error loading R dev_mode from .Rprofile

I'm doing a lot of development in R at the moment, so I would like to enable dev_mode when R starts up. I've tried adding dev_mode() to my .Rprofile, given here: library("devtools") ...
0
votes
1answer
46 views

Avoiding duplicate Developer Tool panel instances

I'm trying to create a devtools extension, starting with adding a panel. I'm simply calling chrome.devtools.panels.create from an external script loaded onto my extension's page. But when I select the ...
0
votes
1answer
67 views

Error: bad 'S3method' directive: S3method(plot) in R

I am writing a R package using devtools. Now I have a generic function plot that can take different classes (e.g. plot.fact, plot.numer, etc.). In the .R file of plot.fact, I use #' comment for ...
2
votes
0answers
35 views

Is there a way to activate the chrome inspector from javascript? [duplicate]

Possible Duplicate: Can I programmatically open the devtools from a Google Chrome extension? I'd like to trigger the chrome inspector by clicking a button on a webpage - I'm building a ...
0
votes
0answers
66 views

what could cause a long receiving time in chrome devtools

Using chrome devtools i can see the there is a particular request on the webapp i'm building that take really long. BY putting message in the log on the server side,i know that is request is fast as ...
0
votes
0answers
137 views

Devtool Chrome autosave not working properly

I installed devtool autosave yesterday and it was working properly. Now the server is running properly and it is showing DevTools Autosave 1.0.0 is running on h t t p : / / 1 2 7 . 0 . 0 . 1 : 9 1 0 4 ...
5
votes
2answers
125 views

Exporting an environment from an R package

I am developing an R package that wraps the rmongodb package and creates a developer-friendly interface for working with MongoDB. The package uses proto internally. I'd like to export a single ...
0
votes
1answer
95 views

C# Dynamic Console for debugging possible?

I'm creating a program and i would really like to create a quick dev window into which i can type comands. I will try pseudo code what i'm trying to say. Console User Types "Add player" Takes the ...
2
votes
2answers
114 views

How to define which variables or functions from a package are exported

My R package uses an internal variable x. If I load the package (I've only tried using devtools::load_all), then x doesn't appear in the ls() list, but it does have a value. How can I avoid this? I'm ...
4
votes
1answer
147 views

What do the colours mean for detached DOM nodes in the Chrome Heap Profiler?

When analyzing heap snapshots using Chrome devtools, I can't seem to figure out what the colours mean when viewing Detached DOM Trees. What is the difference between red & yellow?
0
votes
1answer
334 views

devtools roxygen package creation and rd documentation

I am new to roxygen and am struggling to see how to be able to use it to quickly create a new/custom package. I.e. I would like to know the minimum requirements are to make a package called package1 ...
0
votes
0answers
56 views

install_github not installing all folders in inst

I am not sure if I am doing something stupid, but for some reason, all folders in inst are not getting installed when I run install_github('slidify', 'ramnathv', ref = 'dev'). In particular the folder ...
1
vote
1answer
68 views

install_bitbucket in devtools: case-sensitive? [closed]

library(devtools) install_bitbucket("readlicor","remkoduursma") works fine! However: install_bitbucket("GasExchangeR","remkoduursma") does not, it appears to be looking for: ...
5
votes
2answers
93 views

How does DevTools determine an object's constructor's name?

I'm using Chrome v22.0.1229.94 m, not that it should matter, but just in case :-) Portability is of no concern to me. As long as it works with Chrome (and Safari) I'm happy. I have two functions, ...
1
vote
1answer
109 views

Keyboard shortcut to focus on docked dev tools. Chrome. OSX

Tried googling this with no success. If I have the chrome dev tools docked to the right of my browser window and my focus is on the webpage, is there a keyboard shortcut to set my focus to the dev ...
1
vote
1answer
453 views

why i failed to download source code of chrome?

just want to know what happened... why gyp_chromium returned non-zero exit status? what i should do to deal with this issue? i have tried to run sync for the second time, get the same error... ...
0
votes
0answers
85 views

Weird behavior with data.table, devtools, and S4 [closed]

I am getting some really weird behavior when trying to write an S4 subclass of data.table. In short, after loading the RCurl package, the "[" method no longer can find variable names in the scope of ...
4
votes
1answer
178 views

rbundler build error: “cannot open file 'startup.Rs': No such file or directory”

I'm running into an issue when building the following package: https://github.com/yoni/rbundler My test attempts to run rbundler's bundle command on a trivial package which has a single dependency. ...
2
votes
1answer
125 views

r sourcing private repos from github

Hi I was wondering how to source private repos in github that I have been given access to. Using the devtools package, it is easy enough to source open repos by using commands such as: ...
0
votes
2answers
36 views

How does Developer Tool works in IE? [closed]

Do you know how does Developer Tool(F12) works in IE?by working i mean how does it parses the pages?i noticed that it parses encoded pages like facebook correctlly and decodes all urls and ...
1
vote
1answer
1k views

iOS Devtools.Core Framework pbxcp missing in Xcode?

I downloaded the Doomclassic Source Code and wanted to have a look at it. First I wanted to compile it to see if it actually works. So I followed the instructions and copied the .wad files into the ...
3
votes
1answer
59 views

How do I access any NOTEs that might appear while checking a package?

While running R CMD check, one can receive an Error, a Warning, or a NOTE. I'd like to check if a NOTE was generated and if so access the contents of the NOTE programmatically. My goal is to see ...
1
vote
1answer
69 views

WYSIWYG-ish AJAX dev tools?

I'm working with someone who's an experienced system programmer, but is taking on web programming for the first time. What good tools are there to facilitate features like click-to-sort columns in ...
2
votes
0answers
168 views

Settings breakpoints inside callbacks on Spotify's dev tools often crashes the app

While debugging JavaScript code using the developers tools, setting a breakpoint inside a callback and evaluating expressions (either using the debugger's watch functionality or simply trying to ...
1
vote
1answer
82 views

Accessing/Manipulating content scripts through console in Google Chrome/Firefox Addon

Through google chrome's console and Mozilla Firefox's Web Console we can access/manipulate javascript state of any page. But is it possible to access content scripts running in isolated worlds in ...
2
votes
2answers
470 views

Installing ggbiplot from github

I'm trying to install development version of ggbiplotfrom Github. During installation I'm getting the following error message: library(devtools) install_github("ggbiplot", "vqv") Installing github ...
1
vote
1answer
366 views

install_github returning error: zip file can't be opened

when I run the following: library(devtools) install_github('roxygen2') I get the following error: with devtools 0.51: Installing roxygen2 from hadley Error in unzip(src, list = TRUE) : zip ...
11
votes
2answers
732 views

Is it possible to use R package data in testthat tests or run_examples()?

I'm working on developing an R package, using devtools, testthat, and roxygen2. I have a couple of data sets in the data folder (foo.txt and bar.csv). My file structure looks like this: / mypackage ...
5
votes
1answer
356 views

R using s3 and s4 methods of simulate in the same package

I'm puzzled by the error found an S4 version of 'simulate' so it has not been imported correctly I have written an R package that includes a definition for a simulate() method as an S3 method. ...
5
votes
3answers
394 views

R's devtools - install from github with “configure” file

I have an R package on github that uses a "configure" script (since some of the C code depends on GSL libraries). I try installing the package using github_install() function from devtools package ...
0
votes
1answer
153 views

The last Xcode 4.2.1 doesn't install all devtools packages

I have a big problem, My macintosh HD was dead. So I formated all my datas. Great ! :( I downloaded and installed xcode with the Mac AppStore but I have several errors. Apparently, the all devtools ...

1 2