Javascript: console without browser [closed] - javascript

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there a script that provides similar functions as Google Chrome javascript console?
I said script? I mean emulator, shell, something with which I can automate my simple actions:
Go to page
Open javascript console
Type there a function
Catch output.
In other words, I need any program running custom javascript on web page.
Or any program accessing js browser console.

If I understand your question correctly, PhantomJS may be what you are looking for.
PhantomJS is a headless WebKit scriptable with a JavaScript API. It has fast and native support for various web standards: DOM handling, CSS selector, JSON, Canvas, and SVG.

Related

Save an HTML resume as a PDF [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Improve this question
I have a resume that I've made in HTML, but I need to make it into a PDF. I could print it and then scan it, but I don't have that option at the moment.
The website is made using HTML, CSS3, and very little javascript.
I've tried using HTML to PDF converters, but my fonts don't show up and some other things don't work out.
So simply put, is there a way I can save it while keeping all the styles?
If you use Firefox's Print to File option and change the printer settings like below (especially the "Header and Footer" setting, you can come up with a pretty decent result.
The result:
If you install some PDF software like Foxit PDF creator, you can print your webpage as a PDF

Any WebRTC client implementation for iOS? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there any iOS library/SDK I can use to create a single WebRTC one-to-one video call?
Let's say we will have set up the necessary server environmet suggested at http://www.youtube.com/watch?v=p2HzZkd2A40&feature=youtu.be&t=21m40s
Not interested in instant cloud services like OpenTok, OpenPeer, OpenClove, vLine, AddLive, etc. We want to create our own infrastructure, I just want to make a test prototype on iOS. Also cannot see clearly what is need to be implemented on Javascript side (if any) and on native side, etc.
As of right now, iOS has not implemented the webRTC specifications in their Safari browser. Hence you cannot use webRTC in a UIWebView in iOS.
Reference: http://caniuse.com/#search=webRTC
However you might be able to write your own library that connects to your backend service similar to the OpenTok iOS SDK.
Refrence: https://github.com/opentok/opentok-ios-sdk-webrtc

Library for TOTP in javascript [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am currently working on some client - server app. I need to make auth process more secure, so I want to use TOTP. Client app is written in phonegab, so I need some stable and reliable library for javascript. I have found some on github, and aerogear-otp-js from jBoss Community.
Aerogear-otp-js looks good, but its only initial release so I do not think that's good idea to use it productional enviroment. Also I need to setup interval beetween keys,and that is not an option in aerogear. So can you recommend me some good library?
I'm one of the AeroGear JS devs. The JS OTP lib is just getting started, but we have both Android and iOS libs that are more mature and since you are using cordova/phonegap it's possible to create a plugin to access the native libs until the JS version is a bit more solid.
-Luke

Anyone know of a good web debugging tool? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I need to trace the javascript and web traffic upon clicking on a button in a certain page (POSTing).
I'd like to go about the code step by step. Is there a way to do that? (Not debugging my code, I need to see what happens in the browser to any site)
If you're looking to debug from the client side I find Google Chromes in built tools to be pretty handy.
You can find a nice introduction / overview of them here
http://getfirebug.com/
Firebug integrates with Firefox to put a wealth of web development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.
Fiddler is wonderful: http://fiddler2.com/fiddler2/. It acts as a proxy, allowing you to inspect every step of the request/response cycle.
If you are on Windows, try HTTP Debugger as well.

I am looking for a JavaScript IRC client [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
http://sourceforge.net/projects/jisirc/ is exactly what I need, only problem is it has multiple ActiveX dependencies and that will not do. Does anyone know of any similar projects which are more portable?
You will have to have dependencies to an external application in order to open a socket towards the IRC server.
It can be dependent on the browser architecture (ActiveX controls, Mozilla based, ...)
Dependent on a java applet (in this case the irc server should be run on the same host the javascript originates from (unless you go towards signed applets))
The "real" IRC client is running on server-side, and the script is only used to communicate with that client.
In DmitryK's list you will find an example for each.
http://ajaxian.com/archives/mibbit-ajax-based-irc-client
http://www.mozilla.org/projects/rt-messaging/chatzilla/
http://www.dynamicdrive.com/forums/archive/index.php/t-5374.html

Categories

Resources