Keyboard shortcut to switch focus from web developer tools in Atom - atom-editor

Is there a keyboard shortcut to allow you to switch between Chrome Developer Tools and the main window and back again? I am looking for a shortcut that will work on Windows, MacOSX and Linux.

I don't think there is a direct answer to this. Unfortunately, all of the keyboard shortcuts for changing the focus are intercepted by Chrome Developer Tools. You can toggle the visibility of Chrome Developer Tools with:
Windows: Ctrl-Alt-i
OSX: Alt-Cmd-i
Linux: Ctrl-Shift-i
However once you are in Chrome Developer Tools very few Atom Shortcuts still work, this is maybe something that can be implemented in a package or in init.coffee.

Related

SASS bug with compilation

I'm new in StackOverflow and I'm a beginner in web development thank advance for your comprehension.
I have problem with SASS
it tells me well in my terminal that it compiles my code on my main.css but this shows me the result only a few times on my browser (Firefox and I cleaned his caches).
I use the terminal of VSCode (Windows Powershell) I have SASS with node.js and local server with WAMP.
I find it hard to understand my other projects I did not have this problem.
Know what I can do to fix this?
You can find my code on GitHub and a video to show you the problem.
Thank you and have a good day!
Code of my project on GitHub: https://github.com/ValentinBnmr/Semaine_Inter
Video:https://youtu.be/dV_FcwNwwcY
PS: Sorry for my poor English.
First of all, check if the value actually changes within the compiled css file. Since your Sass compiler tells you that it compiled everything successfully, it should then be changed within your css file.
It is most likely your browser's cache. Clearing it once has no effect on later reloads as seen in your video. You can set your browser (both Firefox and Chrome) to deactivate Cache while developer tools are open.
Chrome: open DevTools [Ctrl Shift i], open its settings (either hit [F1] or open via DevTools menu), under "Network" check the box at "Disable cache (while DevTools is open)
Firefox: open Web Developer toolbox [Ctrl Shift i], open its settings (same with Chrome), under "Advanced Settings" check the box at "Disable HTTP Cache (when toolbox is open)"
Whenever you load a site with those tools open (as it should be when doing stuff like this) you will never run into cache issues anymore.

Cannot open Network tab in firefox developer tools

If I go to the firefox developer tools options and check the network tab it does not shows up. The others tabs works well.
How do I open the network tab?
Firefox version: 52.9.0
Edit: the style editor tab also does not shows up
upgraded to the lastest ESR release : https://www.mozilla.org/en-US/firefox/organizations/

Jupyter notebook restart kernel with keyboard

I program with my laptop, and having to use the touchpad is just the worst. I <Esc>, 0, 0 to 'restart the kernel' per the keyboard shortcuts docs, but that gives me a dialog... when I hit <Return>, it selects, apparently, the "don't restart the kernel, actually" option. <Tab>, <Return> doesn't seem to work for selecting the 'restart' option in the dialog.
Please help me escape the evil clutches of my touchpad!
If you upgrade to a newer version of the notebook, you can define your own keyboard shortcuts and so could set you own shortcut for the "restart kernel" command which does not prompt you. Editing keyboard shortcuts was introduced in 5.0, and can be done via Help > Edit Keyboard Shortcuts
If you cannot upgrade the notebook for whatever reason, then it may just be your browser. I tested it in both Chrome and Firefox and it auto-selects the Restart option for me, and I can switch between the two options using Tab and Shift+Tab and press Enter to select them.

Toggle Software Keyboard for entire test suite in appium python

Currently I am writing iOS tests using Python Appium and would like to completely hide the software keyboard which pops up whenever you have to type something. I am already aware of driver.hide_keyboard() function but it's a pain to include it everywhere in tests.
I was going over the Appium Desired Capabilites but couldn't find anything that will disable the software keyboard. Appreciate if anyone can help me here?
To disable soft keyboard in iOS simulator do this:
Simulator Menu > Hardware > Keyboard > Connect Hardware Keyboard (enable it)
Even if you quit and reopen the simulator, the selection will stay. I'm not sure what happens when you factory reset the simulator.
screenshots attached.

Launching Internet Explorer 9 with Developer Tools

I have a script that runs in a browser add-on. It's using the log function of the console object that is only available when the F12 Developer Tools is loaded.
While I can disable the add-on and enable it again to see the early messages intended to be logged, I find it a bit annoying. Is there a way to load IE9 with developer tools? I'm hoping there might be an obscure argument to be passed to the application to enable that.
If this were possible, I would assume it would be mapped to a command-line options, however there doesn't appear to be any such option (though it would be a nice addition to the browser). A current list of all command line options can be found online at Windows Internet Explorer Command-Line Options.
With IE10, if you leave the Developer tool pinned to the browser window, it will be loaded the next time you open Internet Explorer after you exit.
Note that this will not work if it is unpinned.

Resources