turn-on-orgstruct++ orgstruct-mode missing - org-mode

I've been using (turn-on-orgstruct++) for a long time to get some org-mode like functionality in other modes. However, after a recent update, this has stopped working. Is there a different way to do this? Are these functions still supported?

Bah, looks like orgstruct was removed in version 9.2.
The recommendation is to use orgalist and outshine.

Related

Unity 2021.3.10f1 - Ctrl+Z causing the UNITY to crash always

any advice how to eliminate this problem on this version? or any other advice?
Thank you.
Sometimes when I'm in the zone.. I forgot to remind myself not to ctrl+z while in the editor view of unity and worst case is every time it crashes it doesn't save my changes or update in the past 40mins-1hr work.
additional info: I am required to use the stated version.
update: as of the moment(12/4/2022), this issue is gone. I don't know how or why. I can do ctrl+z now in the editor mode.
This seems like a very isolated issue. I looked up crash reports and can only find it for older versions. I think that a clean reinstall would be your best bet but I 'am guessing you already tried that. Here are the only bug reports I found:
https://issuetracker.unity3d.com/issues/prefabs-and-undo-leads-to-crash
it is only on versions: (2017.2.0b3, 2017.1.0p1, 5.6.2p4, 5.5.4p2)

Macro Issue After Upgrade kentico V11 --> V12

I've a question about the upgrade of Kentico V11 --> V12.
After the correct migration, I got these errors messages (20 times).
When I'll check the website, all design are blank. I just have the menu link without design.
I already re-sign the macro.
I've check all version of CMS.*.dll --> V12.
Do you have any idea for this blocking issue ?
Kind regards !
The error message
did you resign all the macros after the upgrade?
Typically there are a few things which can cause this. First being the hash salt changed in the web.config. If this changed, you need to resign your macros. Even if your hash salt hasn't changed the easiest thing is to go to System > Macros and check both boxes and resign all the macros.
The second thing, highly unlikely, would be you need to clear your browsers cache. Sometimes JS errors arise from the upgrade and cause problems with the system not running code.
What is the entire error message? What is the source URL and where is the code which is throwing the error? Isn't it possible it is coming from some transformation? I am asking since there were some API changes and the GetFileUrlFromAlias method was removed. See the API changes. You may want to use the Code upgrade tool to detect such changes.
I just give you a feedback.
The problem seems to be during the migration...
Due to the VPN low speed, that possible there was some timeout for many steps. (mandatory because the COVID19 =( )
I just get the database on my local computer and redone the migration, and all seems to be good now.
Thank you for your help on this subject :)
Take care of you in this period !

Save code after every successful modification in WebStorm

I have been writing some code in WebStorm for a practice project. But the problem is, I have written some code today and the application seems to work fine, then tomorrow when I am writing some more code and the application is catching a bug which I am not able to debug, then I have to start all over again, which is pretty painful.
I would therefore like to save the code while it is working so that if required I can revert back to the last working version. I believe this is called version control and most people use GitHub for this, is it ?
I couldn't find a similar question. Maybe I am not using the correct keywords while searching.

New project wizard bugged on NetBeans

I have this for every categories, it's all blank except the one i select, the only thing i think may have caused problems is the fact that i've used this plugin before. How can i fix this ?
Changing back to "Metal" Preferred look and feel seems to have fixed the problem
The Praxis LIVE look and feel - plugin detail itself states :
...
Because of the way this plugin is used in Praxis LIVE it overrides all
look and feel settings when installed - you'll need to uninstall it to
switch back to another look and feel. Treat this as beta, or even
alpha! Some things might not show correctly yet, and certain icons
still need fixing.
(emphasis mine).
As this is still in it's beta/alpha testing stage, I'd suggest you to uninstall this plugin, and switch back to the other look and feel.

Xcode 4 autocomplete buggy

do you face also the problems with Xcode 4 autocomplete feature that used to work great on version 3.x.x?
I've imported in the Prefix some classes and Xcode doesn't want to help me with the code entry. I have to manually add above #implementation
import "myclass.h"
To make Xcode help me entering the class name, properties, methods, macros defined in the myclass.h. On 3.x.x I could import those important classes once in the prefix and the autocomplete feature worked without any problems anywhere in the project.
Sometimes Xcode goes even more stupid, it doesn't want me to help typing the classes like UIButton, UIView and the common method like
addTarget:action:forControlEvents: for my buttons.
Do you also has the problems I mentioned in the Xcode 4, any solutions?
I was able to correct this issue by setting Precompile Prefix Header to No in the build settings.
EDIT 3: Note that this indexing issues has mostly disappeared in recent versions of Xcode (4.1 for sure, latest pre-Lion 4.0.x I think), and that I do not use this workaround anymore, using pch... And in fact not using Xcode anymore... AppCode ftw! :)
An easy, but quite dirty workaround imho is not using precompiled header .pch file to do global includes, but instead go a global header .h, that you include... everywhere. That way indexing will work flawlessly...
I Know that's dirty, don't downvote me please :) I'll delete this answer as soon as someone propose something better! Which I would love.
Off-topic, but related, read somewhere llvm2 is not supposed to get a gain speed with .pch files. which kind of deprecate them.
EDIT: Just checked to be sure of my answer, latest version of Xcode (4.0.1 when writing this) looks like fixing that bug for me. Did you upgrade to latest version?
EDIT 2: Removed my global import header .h, all its references, and moved my global imports into .pch file... That doesn't work as well I expected, latest Xcode 4.0.1 improved on this part but still have some cases where it fails. (I'm working on a project with hundreds of files). Looks like cleaning index/restarting Xcode fix it. I might consider reverting to my dirty workaround...
I have found that changing compilers, building, and then changing back, and building again works relatively consistently. Wrote a post about it on my blog:
http://rhappsody.wordpress.com/2011/08/03/xcode-4-code-colouring-and-auto-completion/
I found that sometimes the autocompletion gets broken when dealing with stuff defined in the prefix header. One way to get Xcode to index those again correctly is to use the touch command in the Terminal, e.g.:
touch /Users/someguy/Document/Foo-App/Foo-Prefix.pch
Or add a new line to the prefix for the same effect. Xcode then gets busy reindexing and things work again.
I've faced the same issued as soon as I moved to XCode4. What I realised was that I needed to install iOS's documentation to have the code completion fully working.
Go to Xcode -> Preferences -> Documentation and click GET on the iOS 4.3 Documentation. In the iTunes-style status window, the download progress will be shown.