Troubles to Install REPL in Sublime 3 and 4 - sublimetext

As you can see on the screen I am having trouble installing the REPL. I have checked lot of questions but I could not find the same situation.
My problem is at the first moment because I cannot even install it.
I´d tried to uninstall and install it again but is the same.
Maybe someone can help me, it is super basic but I don know what to change in the console.
When I check the console, I can see this
enter image description here
This is the Console code:
DPI mode: per-monitor v2
startup, version: 4113 windows x64 channel: stable
executable: /C/Program Files/Sublime Text/sublime_text.exe
application: /C/Program Files/Sublime Text
working dir: /C/Program Files/Sublime Text
packages path: /C/Users/Samsung/AppData/Roaming/Sublime Text 3/Packages
state path: /C/Users/Samsung/AppData/Roaming/Sublime Text 3/Local
zip path: /C/Program Files/Sublime Text/Packages
zip path: /C/Users/Samsung/AppData/Roaming/Sublime Text 3/Installed Packages
ignored_packages: ["Vintage"]
Unable to decode Packages/Theme - City Lights/assets/reverse.png
pre session restore time: 0.162259
startup time: 0.235259
first paint time: 0.237259
reloading plugin Default.arithmetic
reloading plugin Default.auto_indent_tag
reloading plugin Default.block
reloading plugin Default.colors
reloading plugin Default.comment
reloading plugin Default.convert_color_scheme
reloading plugin Default.convert_syntax
reloading plugin Default.copy_path
reloading plugin Default.echo
reloading plugin Default.exec
reloading plugin Default.fold
reloading plugin Default.font
reloading plugin Default.goto_line
reloading plugin Default.history_list
reloading plugin Default.html_print
reloading plugin Default.indentation
reloading plugin Default.install_package_control
reloading plugin Default.keymap
reloading plugin Default.kill_ring
reloading plugin Default.mark
reloading plugin Default.new_templates
reloading plugin Default.open_context_url
reloading plugin Default.open_in_browser
reloading plugin Default.pane
reloading plugin Default.paragraph
reloading plugin Default.paste_from_history
reloading python 3.3 plugin 0_package_control_loader.00-package_control
reloading plugin Default.profile
reloading plugin Default.quick_panel
reloading plugin Default.rename
reloading plugin Default.run_syntax_tests
reloading plugin Default.save_on_focus_lost
reloading plugin Default.scroll
reloading plugin Default.set_unsaved_view_name
reloading plugin Default.settings
reloading python 3.3 plugin Package Control.1_reloader
reloading plugin Default.show_scope_name
reloading plugin Default.side_bar
reloading python 3.3 plugin Package Control.2_bootstrap
reloading plugin Default.sort
reloading plugin Default.switch_file
reloading plugin Default.symbol
reloading plugin Default.transform
reloading plugin Default.transpose
reloading plugin Default.ui
reloading plugin CSS.css_completions
reloading plugin Diff.diff
reloading plugin HTML.encode_html_entities
reloading plugin HTML.html_completions
reloading plugin ShellScript.ShellScript
reloading python 3.3 plugin Package Control.Package Control
plugins loaded
Package Control: Skipping automatic upgrade, last run at 2021-10-22 17:50:33, next run at 2021-10-22 18:50:33 or after
ignored packages updated to: ["SublimeREPL", "Vintage"]
reloading settings Packages/User/Package Control.sublime-settings
reloading settings Packages/User/Preferences.sublime-settings
Package Control: Attempting to use Urllib downloader due to WinINet error: Error downloading package. Host not found (errno 12007) during HTTP write phase of downloading https://codeload.github.com/wuub/SublimeREPL/zip/2.1.2.
Package Control: Error downloading package. URL error [Errno 11001] getaddrinfo failed downloading https://codeload.github.com/wuub/SublimeREPL/zip/2.1.2.
error: Package Control

Related

Jenkins unable to save a new or edit an existing Maven Project Configuration

Whenever i try to save a new Maven Project in Jenkins i can press apply or save without anything happening or any error messages showing up. When i switch from Chrome to Firefox i get a "Error" popup which just contains an empty http body.
The logs dont show any problems or errors. The weird thing is Freestyle project do work just fine.
What i've tried :
-Update Jenkins & Plugins
-Rollback some plugins to older versions
-deinstall some unused plugins
-set java home for maven
Is there any way to fix it?

Cordova ios plugins Failed after build complete when app loading in xcode

Loading XCodewe are getting this error.
Any solution?
FAILED pluginJSON =
["AuthProxy1342781311","AuthProxy","initWebStrategies",[]] 2020-01-24
12:59:00.432213+0530 myJobCard[23188:330651] ERROR: Plugin 'StatusBar'
not found, or is not a CDVPlugin. Check your plugin mapping in
config.xml. 2020-01-24 12:59:00.432347+0530 myJobCard[23188:330651]
FAILED pluginJSON = ["StatusBar1342781312","StatusBar","_ready",[]]
2020-01-24 12:59:00.432539+0530 myJobCard[23188:330651] ERROR: Plugin
'Console' not found, or is not a CDVPlugin. Check your plugin mapping
in config.xml. 2020-01-24 12:59:00.432642+0530 myJobCard[23188:330651]
FAILED pluginJSON = ["INVALID","Console","logLevel",["LOG","Set
javascript initial log level: ERROR"]] 2020-01-24 12:59:00.432821+0530
myJobCard[23188:330651] ERROR: Plugin 'Console' not found, or is not a
CDVPlugin. Check your plugin mapping in config.xml. 2020-01-24
12:59:00.432906+0530 myJobCard[23188:330651]
FAILED pluginJSON =
["INVALID","Console","logLevel",["LOG","Ionic Native: event fired
after 444 ms"]] 2020-01-24 12:59:00.433063+0530
myJobCard[23188:330651] ERROR: Plugin 'SMPSettingsExchangePlugin' not
found, or is not a CDVPlugin. Check your plugin mapping in config.xml.
We are using the following versions in npm:
version image
List of plugins which we are using in our project:List of plugin verions
We are trying the following solutions:
In X-Code, goto Build Phases -> open the Compiled Sources dropdown. Click + and add the missing plugin .m file that should be in your Plugins directory (but is missing from the compiled sources).All ready.M file is available . please follow the image in x-code All plugins .m files
In short:
delete ./plugins/ios.json,
then delete ./platforms/ios,
then run cordova platform add ios
then cordova build. Deleting ios.json
Sorry to say that you aren't providing a lot of information, which makes guessing a lot harder - what app are you trying to build? Is the SMP SDK installed? It does look a little to me that the project config is out of sync with the sources, which may happen if you blindly delete folders in Cordova :)
To be safe when Cordova runs into hiccups, I usually
Remove the offending plugins with cordova plugin remove <id>
Remove the offending platform with cordova platform add <ios>
In case of doubt, get rid of the plugins and platforms folders altogether
Re-add the offending platform via cordova platform add ios
Re-add the offending plugin via cordova plugin add <id>
Also, as a general rule of thumb - do not mess with the platforms folder. As opposed to Ionic sources, the generated output is not meant to be modified, and if there are issues with the output, it is likely that there are issues with your Cordova project settings.
Maybe my CI tutorial gives you another hint or two as well: https://developers.sap.com/tutorials/ci-best-practices-mobile-cordova.html

Build/Run Elasticsearch Locally with plugins

(On Elasticsearch version 6.5.1)
How can I build/run Elasticsearch from source with local plugins?
I've tried the following command to install the plugins:
./distribution/build/cluster/run\ node0/elasticsear-6.5.1-SNAPSHOT/bin/elasticsearch-plugin install file:/<path_to_plugin_zip> and that says it successfully installed the plugin.
However, when I run elasticsearch via ./gradlew run --debug-jvm, it cleans out the contents of that directory before running ES.
The reason I installed the plugin into that particular directory is that I put a debugger in the PluginsService.java file, and saw that the Path pluginsDirectory parameter in the constructor was set to /Users/jreback/Desktop/elasticsearch/distribution/build/cluster/run node0/elasticsearch-6.5.1-SNAPSHOT/plugins.
So, how can I get my plugin installed on my local ES version and run ES such that the plugin code doesn't get removed as the process starts up? Many thanks in advance!
FWIW, I got this working with some manual code changes (there may be or likely is a more recommended way to do this, but this worked for me).
In my ES checkout, I made the following code change to server/src/main/java/org/elasticsearch/env/Environment.java:
replace this line: pluginsFile = homeFile.resolve("plugins"); with pluginsFile = Paths.get("<path to plugin directory");
(Also, you must import java.nio.file.Paths at the top of that file).
The directory structure for the directory you listed above should look like this:
- plugin parent directory (should whatever you put in the Environment.java file)
- plugin directory (name of the plugin)
- plugin-descriptor.properties file
- plugin jar file (generated from building the plugin in some prior step)
Then you should see that it loaded the plugin you've just added in the logs when you start up ES again.

Jmeter plugins not installing for Jmeter 3.0

I was having issue with some missing class error and decided to uninstall and install new version of Jmeter.
I installed the Jmeter plugin manager and selected a plugin from available plugins to install and click on Apply Changes and Restart Jmeter. However I have tried this many times but the selected jmeter plugin does not get installed.
I even looked up on lib/ext folder to make sure the plugins have been installed. Not sure what the problem is here. My java version is 1.8.0_131. I have tried installing on both Jmeter 3.0 and Jmeter 3.3 but kept running into the same issue.
This is the Jmeter log file, if that is of any help -
2017/12/18 14:52:41 INFO - org.jmeterplugins.repository.PluginManager: Restarting JMeter...2017/12/18 14:52:41 INFO - org.jmeterplugins.repository.PluginManager: Starting JMeter Plugins modifications 2017/12/18 14:52:41 WARN - org.jmeterplugins.repository.PluginManager: Failed to run plugin cleaner job java.nio.file.NoSuchFileException: C:\Users\Documents\Jmeter\apache-jmeter-3.0\lib\ext\jmeter-plugins-manager-0.18.jar
at sun.nio.fs.WindowsException.translateToIOException(Unknown Source)
at sun.nio.fs.WindowsException.rethrowAsIOException(Unknown Source)
at sun.nio.fs.WindowsException.rethrowAsIOException(Unknown Source)
at sun.nio.fs.WindowsFileCopy.copy(Unknown Source)
at sun.nio.fs.WindowsFileSystemProvider.copy(Unknown Source)
at java.nio.file.Files.copy(Unknown Source)
at org.jmeterplugins.repository.ChangesMaker.getTempPmgrJAR(ChangesMaker.java:63)
at org.jmeterplugins.repository.ChangesMaker.getProcessBuilder(ChangesMaker.java:34)
at org.jmeterplugins.repository.PluginManager.startModifications(PluginManager.java:145)
at org.jmeterplugins.repository.PluginManager$1.run(PluginManager.java:202)
I hope you followed these steps...
Download JMeter plugin manager from https://jmeter-plugins.org/install/Install/ and put it in your JMeter's "lib/ext" folder.
Now start your JMeter in UI mode.
Click Options - you should find "Plugins Manager" option (if not something wrong - download fresh copy of latest JMeter 4.0).
Click "Plugins Manager" option.
Go to "Available Plugins" tab.
Install one at a time (which ever is required) - Installing multiple at a time might cause some problem.
Just try to remove the existing Jmeter plugin manager and reinstall it in the correct way as follows.
Download and configure the Jmeter plugin manager:
Browse the following link and download the "Jmeter plugin
manager" Jar file.
Jmeter plugin manager
Add copy and paste the downloaded JAR file into "ext" folder to the
"C:\your location\apache-jmeter-5.3\lib\ext."
(In my case - C:\Users\My Account\Downloads\apache-jmeter-5.3\lib\ext)
Restart the Jmeter. (You will see a new icon at the top right corner of your JMeter application if the installation process is completed.)
Note: always use the latest version of JMeter. You can download that from here.
Jmeter download link -
Or.
You can install the plugins directly to the Jmeter as follows.
Search and download the particular plugin that you want to install. You can download them using this link
Go to the "lib" folder which resides within the downloaded plugin folder.
You can see "jar file/s" and "ext" folder.
Copy that jar file into the "lib" folder which is located within your JMeter folder.
(In my case - C:\Users\My Account\Downloads\apache-jmeter-5.3\lib)
Go to the "ext" folder of your downloaded folder. (You can see another JAR files within that)
Copy those files to the "ext" folder which is located within your JMeter folder.
(In my case - C:\Users\My Account\Downloads\apache-jmeter-5.3\lib\ext)
Restart the Jmeter application.
The simplest solution is to download the older version of the plugin as it may have been modified to use the latest version of JMeter. https://jmeter-plugins.org/ provides the plugins. On this site, you can look up for the plugin you need and download the required version as seen in the below image. Extract the zip file and copy the jar in [JMeter Root Directory]/lib/ext directory.

Sublime Package Control Errno 13

Whenever I open up Sublime on my Window 7 machine I get an error about Package Control not having permissions to access a temp folder as it tries to update packages.
I've tried resetting the permissions of the parent folder to no avail, and tried to create a new temp directory and still encountered the error. Even running the app as administrator doesn't seem to help.
Is there something else I'm missing here?
DPI scale: 1
startup, version: 3114 windows x64 channel: stable
executable: /C/Program Files/Sublime Text 3/sublime_text.exe
working dir: /C/Program Files/Sublime Text 3
packages path: /C/Users/jlesc/AppData/Roaming/Sublime Text 3/Packages
state path: /C/Users/jlesc/AppData/Roaming/Sublime Text 3/Local
zip path: /C/Program Files/Sublime Text 3/Packages
zip path: /C/Users/jlesc/AppData/Roaming/Sublime Text 3/Installed Packages
ignored_packages: ["Material Theme", "SHS-At-Rule", "SHS-Bourbon-Neat", "SHS-Compass-Mixins", "SHS-Compass-Variables", "SHS-CSS-Properties", "SHS-CSS-Property-Values", "SHS-Sass-Functions", "Vintage"]
pre session restore time: 0.0998618
startup time: 0.119862
first paint time: 0.121862
first paint time: 0.121862
reloading plugin Default.auto_indent_tag
reloading plugin Default.block
reloading plugin Default.comment
reloading plugin Default.convert_syntax
reloading plugin Default.copy_path
reloading plugin Default.delete_word
reloading plugin Default.detect_indentation
reloading plugin Default.duplicate_line
reloading plugin Default.echo
reloading plugin Default.exec
reloading plugin Default.fold
reloading plugin Default.font
reloading plugin Default.goto_line
reloading plugin Default.history_list
reloading plugin Default.indentation
reloading plugin Default.kill_ring
reloading plugin Default.mark
reloading plugin Default.new_templates
reloading plugin Default.open_context_url
reloading plugin Default.open_file_settings
reloading plugin Default.open_in_browser
reloading plugin Default.pane
reloading plugin Default.paragraph
reloading plugin Default.paste_from_history
reloading plugin Default.profile
reloading plugin Default.quick_panel
reloading plugin Default.run_syntax_tests
reloading plugin Default.save_on_focus_lost
reloading plugin Default.scroll
reloading plugin Default.set_unsaved_view_name
reloading plugin Default.show_scope_name
reloading plugin Default.side_bar
reloading plugin Default.sort
reloading plugin Default.swap_line
reloading plugin Default.switch_file
reloading plugin Default.symbol
reloading plugin Default.transform
reloading plugin Default.transpose
reloading plugin Default.trim_trailing_white_space
reloading plugin CSS.css_completions
reloading plugin Diff.diff
reloading plugin HTML.encode_html_entities
reloading plugin HTML.html_completions
reloading plugin 0_package_control_loader.00-package_control
reloading plugin 0_package_control_loader.02-bz2
reloading plugin Package Control.1_reloader
reloading plugin Package Control.2_bootstrap
reloading plugin Package Control.Package Control
reloading plugin SideBarEnhancements.SideBar
reloading plugin SideBarEnhancements.SideBarAPI
reloading plugin SideBarEnhancements.SideBarDefaultDisable
reloading plugin TrailingSpaces.trailing_spaces
plugins loaded
Package Control: Installing 1 missing package
reloading settings Packages/User/Package Control.sublime-settings
reloading settings Packages/User/Preferences.sublime-settings
error: Package Control
An error occurred creating the package file Material Theme.sublime-package in c:\users\jlesc\appdata\local\tmp\tmp5bsz0p.
[Errno 13] Permission denied: 'c:\\users\\jlesc\\appdata\\local\\tmp\\tmp5bsz0p\\Material Theme.sublime-package'
change the security settings and give yourself full permissions to modify and write to the sublime text folder both in your app data and your program files. Worked for me

Resources