CocoaLumberjack: timed out while trying to read CoreDataLogger.xcodeproj - carthage

I'm using Carthage, Xcode 8 and swift 2.3, on Mac Sierra, carthage version 0.17.2
In my cartfile I have: github "CocoaLumberjack/CocoaLumberjack" "2.4.0"
I run Carthage bootstrap --platform iOS and I get this error:
timed out while trying to read CoreDataLogger.xcodeproj
Any suggestions on what I can do as I'm stuck at this point.
Thanks.

Solved it. Need to be be running at least Carthage 0.18.1 for Xcode 8 support. I was on Carthage 0.17.2

Related

Error found while developing games with react

I am getting the following error while duilding tic-tac-toe game with react.
"./src/index.css (./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-3-1!./node_modules/postcss-loader/src??postcss!./src/index.css)
Error: Package exports for 'G:\Nodejs\projectReact\tic-tac-toe\node_modules\colorette' do not define a valid '.' target"
I faced a similar issue when I had the latest colorette version installed i.e. 1.2.1. As per my understanding, this version of colorette requires Node 14+ while I have Node 13.1. Therefore there are two options to resolve this, either upgrade Node to 14+ version of downgrade colorette to its previous version 1.2.0.
I have not tried upgrading Node as it will effect my other projects so I have just downgraded colorette to 1.2.0 and it works fine for my case by using following commands.
To uninstall colorette:
npm uninstall colorette
To install colorette version 1.2.0:
npm install colorette#1.2.0
Had the same problem when using node v 13.1.x upgrade it to 14.x helped so far using command :
sudo n latest

Unable to enable Javafx on Eclipse in Ubuntu 18.04.1 LTS

I recently shifted from Windows 7 to Ubuntu. I have installed eclipse version 2018-09 . The java version that I am using is 1.8.0_191. I am trying to work on a project that makes use of Javafx. I installed Javafx using the instructions available at following link. After all the installation is complete and I have restarted eclipse I import the project. I am getting the following error:
the import javafx cannot be resovled
I have tried setting the build path but still I am getting the same error. Going over one of the stack overflow posts I have tried installing openjfx but still I am getting the same error.
Please any help would be much appreciated.
sudo apt install openjdk-8-jdk openjfx
And restart Eclipse

Meteor installation/updation problems on Windows 7

I'm tried to install Meteor on Windows 7:
I downloaded the installer from the official download link. Upon trying to install it, I get the error Failed to contact install server.
Using this answer over here I successfully managed to install an older version of Meteor: but now neither meteor update nor any other command works. The response I get is:
This project uses Meteor 1.2.1, which isn't available on Windows. To work with this app on all supported platforms, use meteor update --release METEOR#1.2.1 to pin this app to the newest Windows-compatible release.
The suggested command generates the same response. Any workarounds?

Installing XCode 4.2.1 on OS X 10.7.2 using App Store

I am trying to install Xcode 4.2.1 from App Store on my iMac running OS X 10.7.2 and when I started the installation by clicking on the Install button in the App Store on my iMac, it changed to Installing but it doesn't show any progress bar indicating the status or percentage of progress of the installation. Is this how it is supposed to be? How long does it take to install? I had uninstalled my previous Xcode 4.1 earlier before starting the Xcode 4.2.1 installation.
Look for Install Xcode.app in your Applications directory. Try to run it manually (that's what I had to do). I've also seen the recommendation to chmod +x on the installation app as well -- I didn't need to do that.
It happened to me. I rebooted and it worked properly.

Sqlite3 error after Rails 3 (beta 4) install

After Installing Rails 3, I get the following error regarding Sqlite3 when I try to do a migrate:
dlsym(0x1037e5f10,
Init_sqlite3_native): symbol not found
- /Library/Ruby/Gems/1.8/gems/sqlite3-ruby-1.3.0/lib/sqlite3/sqlite3_native.bundle
I am using Snow Leopard, if that makes a difference.
I faced the same issue. The problem is that your sqlite-ruby interface is not installed properly in your snow leopard. To install that , use the following :-
sudo gem install sqlite3-ruby
But before installing that check if a proper gcc is installed in your Mac.Use the below lines to check that :-
ok First of all check if the follwoing is installed:-
$gcc -v
If not then you have to install Mac developers xcode package in your snow leopard first.
You can download using a free registration from this site:- http://developer.apple.com/devcenter/mac
For more reference take a look into my post : How to install ruby interface for sqlite3 in Mac snow leopard?
If you face the problem the problem even after trying these please let me know the error your facing. Because I faced all the error before making my snow leopard work ;). So I 'm familiar to most of the errors and blunders we usually make ;) !!
Hmm, looks like maybe something isn't compiled correctly. Maybe a gem was compiled on an older system or pre-upgrading to snow leopard? It may be that the sqlite binary is 64 bit but the native ruby extension isn't.
I'd try this:
Install RVM (Or create a new gemset if you're already using it.)
Using a fresh rvm gemset, re-install rails 3
Do bundle install to get all your gems loaded
If the problem goes away then it's likely that your libraries aren't all compiled the same way. This can happen when upgrading to snow leopard from a previous version of Mac OS X. The upgrade would have updated the sqlite binary but not any gems you had compiled yourself, like the sqlite bindings for ruby.
I'm not sure how it's done with Snow Leopard but you need to install The sqlite dev package, libsqlite3-dev
Then install the gem, sqlite3-ruby
Just got to the GEMFILE inside you project and comment out the gems that you do not require.

Resources