Fiddler copy paste is broken - fiddler

I have a strange problem in Fiddler that I have been unable to fix by playing around with the various settings and options.
Copy and paste is not working in the Composer - both in the URI, and much much worst, in the Request Body.
This seem like a silly problem, but it has been the source of much grief for me, as I try to use it for testing a REST service I am developing, I have to manually type in EVERYTHING I need, every time. It is getting painful.
Copy/Paste works fine everywhere else on my machine. I have tried uninstalling and reinstalling Fiddler, to no success.
If you have any idea what this may be happening, please let me know. Thanks.

I have no idea why you would be having this problem, but a hacky solution would be making an AutoHotkey script. The script would simply be Send %clipboard%. This will just take whatever is in your current clipboard and type it out. References here: http://www.autohotkey.com/docs/misc/Clipboard.htm

This is currently still an issue for the Linux beta..
an easy workaround is to use [shift]+[insert]

Related

Pop-up message showing " Did you attach the CPU-Profile?" while trying to run live server in VScode

I have Live-Server extension installed in my VSCode.
I was trying to run the live-server but a pop-up appeared as below:
This is a reminder to make sure that you have not forgotten to attach 'c\Users\HP\AppData\Local\Temp\ritwickdey.LiveServer-unresponsive.cpuprofile.txt' to an existing performance issue.
I couldn't find much recourses to understand what the issue was or what action I should take about it.
BTW: Live Server is not loading the browser-page by its own, but at port:5500 its running.
Please Help.
after researching i found this blog, where i got to know that its because of performance issue
https://www.nicoespeon.com/en/2019/11/fix-vscode-extension-performance-issue/
first thing bundle your vsCode extensions:https://code.visualstudio.com/api/working-with-extensions/bundling-extension
if that solves the issue then great if not then add this extension to vsCode
https://marketplace.visualstudio.com/items?itemName=nicoespeon.abracadabra
hope the first link will provide complete solution.
Happy Learning

How to get autocomplete (GoCode) to work with all my imports?

After installing the GoCode autocompletion daemon in GoClipse, it works for the more general imports (fmt and such), but not for more specific ones.
I do believe my GoClipse is properly set up, since it works with some imports already.
The specific import I am trying to make it work for is "github.com/hyperledger/fabric/core/chaincode/shim".
There must be something I have to do to make those imports work, but I haven't figured it out yet. I can always code without autocompletion, but eh.
Does anyone know how to make it work?
Thanks a bunch.
Note: I'd post images to illustrate my problem, but well: "You need at least 10 reputation to post images".
Edit : It also doesn't autocomplete local variables. Is it related? Or is it working as intended?
Screenshots:
Alright, So I digged and found the solution to my problem. I basically needed to locally install the import on my machine.
This is easily done with the go get command
For example, for the specific problem I had, I wanted the import "github.com/hyperledger/fabric/core/chaincode/shim" to autocomplete.
I ran the command
go get "github.com/hyperledger/fabric/core/chaincode/shim"
Restarted GoClipse and it works perfectly.
Hope it helps someone else.

How to quickly format Github reply code block?

Every time when i past some code snippets in Github reply box, it past with weird indentation... which i fix manually every time.. i could possibly indent/format it first in my code editor.. copy and paste directly.. which could work.. however when i am more in a rush.. and copy a block directly from my running code.. it kind of a hassle to format... or even worse when i type code directly there...
is there any browser extension? hide short-cut wizardry that im not aware of in Github to format and indent my reply quickly?
You might want to try: https://github.com/panzerdp/clipboardy, it does look like it keeps formatting not only in GitHub, but also SO and others.
Many other extensions that might be useful here: https://github.com/showcases/github-browser-extensions.

Typo3 plugin not working in draft-workspace

I have a selfmade T3-plugin that actually works fine.
Unless I try to look at it in the draft-workspace - then I get an error saying «Template could not be found at "typo3/sysext/workspaces/Resources/Private/Templates/Preview/Preview.html"» (of course, the template is there).
We're working with T3 6.1.8
There were some rollbacks made recently that might have caused this, but that's just a wild guess...
Any ideas what could cause this?
The solution to this was actually quite trivial.
The person who wrote the extension used chdir() in the extension's header to write a PDF file. This confused the workspaces plugin so it didn't find it's own directory anymore.

working with workspaces and Pydev in Eclipse

im not sure what i did.. but i am working through some tutorials to get up to speed on python, and i started getting this error message... any ideas on how to fix this? from the error, i looked up the message, and it looks like wham i press the run button it is looking for a file that is no longer there.... but I'm not even working on that file anymore... I'm trying to run something different that does not refer to the previous file.
what does work is if i do run as.. but id rather not do that every time. I'm sure there is a setting I'm just not aware of that i messed up.
Well, not sure how exactly you're getting to that point from your explanation, but please take a look at: http://pydev.org/manual_101_run.html to see how to properly run a module inside PyDev.