Trouble Installing SublimeLinter - sublimetext2

I've been trying for the past half hour to install SublimeLinter, but to no avail.
I've thoroughly been following the instructions here, but I don't have the same screen that they describe.
When I type linter into Package Control, I am not getting the results the say I should.
Here's a screenshot.
Does anyone know what they may have forgotten to metion?

The directions you are trying to follow are for SublimeLinter 3, which is only available for Sublime Text 3. Since you're using ST2, please follow the instructions here for information on how to install and set up the plugin.

Related

mkdocs search plugin suddenly disappeared - any debugging suggestions?

I've been running a (company-internal) site that uses mkdocs, the materials for mkdocs them, and the default mkdocs search plugin.
It all worked fine until some point around the change of year, when the search field suddenly disapeared.. without any obvious thing having changed. The website is being served by a (company-hosted) gitlab instance.. there's no error or warning message during build that seems to relate to this issue.. nor does there seem to be any related error/warning in the javascript console. All this makes it very difficult to know where to start investigating..
Did anybody experience the same? Or do you have suggestions of where I could start looking?
best
Michael
tried to change the order in which plugins are executed, and various search plugin settings - without any effect. Looked for error/warning messages during mkdocs build (via gitlab ci-cd) and in the Javascript console - without success. Where to start?

processing 2.0 not executing any sketches. It works fine in Javascript mode, but not in java

Im an absolute beginner here and I just signed up for some tutorials in generative visualisation using sublime text-2 for processing.
Im using Processing 2.0 right now and the thing is that none of the sketches in processing(even the examples) run when i hit cmd-r. The run button turns yellow but nothing happens. But when I change the mode to 'java script' the sketch opens up and displays in my browser.
What am I doing wrong here? Can someone please help me?
I did a bit of research and found out that it is indeed an issue found within the Processing 2.0 application (source: https://github.com/processing/processing/issues/1817)
In terms of solving it, I did say within the issue to install the latest version of Processing here: https://processing.org/download/, the latest is 3.3.7, when I ran a sketch using Processing 3.3.7, it did work.
My answer appears via the exact link to the issue: https://github.com/processing/processing/issues/1817.
I hope that this solves your problem.

How to install JSON for Visual Studio 2013?

I Installed the Nuget Package Installer thing, and it says it installed it.
However I can't find any references to JSON in Visual Studio.
I tried using System.JSON but I can't find it.
How can I use it?
Thanks
I have had been through the same trouble today, when I almost completed my Software Project and just had to use the File to use its contents to change the content of the Project.
For that I wanted to use JsonObject class to get the contents of the .json file. When I tried to write this
using System.Json;
It gave me the exact same error that you might have been going through. It asked for the Assembly files and DLLs.
I kept searching and I stumbled upon to this post, which was totally unhelpfull for me. So I searched and got what I was looking for. After that, I wanted to share that triumph with you people too so that next visitor must have an answer to his trouble on Stack Overflow.
Solution
What I did was, I went to the NuGet website for the System.Json extension package.
http://www.nuget.org/packages/System.Json
There, I capture the command for the installation.
I just click on the Tools --> NuGet package manager --> Package Manager Console and it gave me a new window in the bottom part of Visual Studio 2013.
There I typed (pasted) the link of command I copied. It started and installed the package for me. And now I can use it!
Further answer
I was told that it is a part of .NET v4.5, but I even have the v4.5.1 and still I don't get it why I don't have that package, maybe because on the Web page of the package it is shown deprecated. But still who ever needs it, can have the answer I have posted and it would help him out!
Good luck!
I think you can use the Newtonsoft JSON.NET package.
http://www.nuget.org/packages/newtonsoft.json/
I was also looking for a way to do JSON in C# and saw that they made it easier with .NET 4.5, couldn't do it and found this stack overflow question. I wasn't really satisfied with Afzaal Ahmad Zeeshan's answer so I kept searching and found this which I guess isn't depreciated and worked for me.
Steps in plain English (for .NET 4.5):
1.Add Reference to System.Runtime.Serialization
2.Add "using System.Runtime.Serialization.Json;" to your class
3.call "JsonReaderWriterFactory.CreateJsonReader()" or whatever methods you need to use to read/write json
Install latest VS 2017
Install-Package System.Runtime.Serialization.Json -Version 4.3.0
-- in PM console

Adding custom tab in redmine 2.0.3

I'd like to add custom tab to my redmine project which would be a static link to a webpage nested in IFRAME. I found this thread and I thought that my problems are solved and I won't need to learn ruby.
But later I've noticed that plugin is almost 4 years old and not really compatible with current verison (I have 2.0.3 installed). When I already got it to run it still throws errors and plugin configuration page doesn't work correctly. Bottom line: I can't add any new tab.
Did someone experience similiar problem or maybe has a workaround/another method to add a simple custom tab/iframe to redmine without digging too much into source code?
Any help wold be greatly appreciated.
The actual plugin is up to date. Have a look at the projects git page.
https://github.com/jamtur01/redmine_tab

php 4 / mysql jstree example from luban.danse.us - Anyway to port this functionality to the new version of jstree? (v1)

Having tried to use the example for php/mysql at http://jstree.com/demos I have realized that I needed extra functionality and as well noticed that this works only with PHP 5 due to some errors that Firebug was prompting for the output. I then started to look for more documentation on jstree and found in here someone suggesting to review the example on the following page:
http://luban.danse.us/jazzclub/javascripts/jquery/jsTree/reference/_examples/7_full.html
I did find it very close to what I need for a personal project, however the example is fixed for one DB interaction from what I was able to see in the core dependencies (full/script.js). I'm trying to port this example to PHP 5, but at the moment just would like to know if there is a possibility to extend this to use new plugins such as 'checkbox' even-though this is an earlier version.
I've posted this question in the forums to see if there is any possibility to recreate a PHP/mySQL example using the 'contextmenu' and as well the options at the top of the panel, but since this apparently is not supported by what I was able to understand from the documentation, I thought perhaps someone have tried something similar to this?
Thanks in advance,
JP-