Loopback 4 cli instructions language - how to reset - loopbackjs

I am trying to create a new project in LoopBack 4 CLI using lb4 but the language it pops up such as project name and directory is in Turkish language.
How do I reset or change the LoopBack 4 CLI language?

No worries, it us back to English after a fresh install

Related

How to use firebase / cocos2dx-cpp-sample

https://github.com/firebase/cocos2dx-cpp-sample
I can not understand this guide. Please teach this process more easily.
I tried ...
cocos new Hello -p com.Hello -l cpp -d ~/Desktop
console.firebase.google.com
Add Project > Project Name "Hello", Country Name
Add Firebase in ios
iOS bundle ID "org.cocos2dx.hellocpp"
GoogleService-Info.plist DL
Add Firebase SDK using cocoa pods
Swift or OBJ-C I do not know this. Because I am using C ++. I tried putting the OBJ-C code in AppController.mm but it failed.
I want you to tell me more gently about the explanation of this image. I want to learn by moving the sample as soon as possible.
Thanks.
You want to run or use firebase / cocos2dx-cpp-sample project
Steps you tried
Why are you creating new fresh project, then you need to integrate manually by your self, leave this task to setup_firebase_sample.py
// Firebase Console task, I need GoogleService-Info.plist for my iOS App
Yes you need to register your project
Creating Project
Add iOS App to your newly created Firebase Project
"org.cocos2dx.hellocpp"iOS bundle id for Sample project
Download GoogleService-Info.plist that is needed in my iOS Project
Back to step 1. When I downloaded/cloned firebase / cocos2dx-cpp-sample project. Project having setup_firebase_sample.py that download a fresh cocos project in sample_project folder and Firebase SDK.
After that you only have to open sample_project/proj.ios_mac/HelloCpp.xcworkspace file in Xcode and add your downloaded GoogleService-Info.plist inside HelloCpp.
Leave this step
Done.
You can also check this thread may be some helpful
http://discuss.cocos2d-x.org/t/firebase-c-and-cocos2d-x-official-guide-from-google-almoust-works-out-of-the-box/35645

Asterisk and multitenant module for vtiger 6

I am new to vtiger. I would like to know is there any modules available for Asterisk and multitenant. If so can you please give me the link. I saw some post saying it will be in future release.
as per developers, setting PBX Manager back in action is planned in version 6.1
Meantime, you'll need to wait or create your custom module.
check out http://www.vtigerexperts.com/vtiger-crm-6-1-demo/
PBX manager is available in 6.1. For multi-tenancy you have to customize.

Creating a manifest file inside of /Library/Google/Chrome/NativeMessagingHosts requires super user permissions

This is on Mac 10.8
I have written Google Chrome Extension and a Native Messaging executable which communicates with the Chrome Extension using Native Messaging. All works fine with my Proof of Concept as part of development.
Issue is that now I want to get it deployed.
I have my in house installer which by which I need to create a com.my_company.my_product.json manifest file inside of this /Library/Google/Chrome/NativeMessagingHosts directory which cannot be accessed unless I ask for the password of the admin user.
I am doing this port as part of migration of NPPlugin to Chrome Extension Native messaging communication which will replace the NPPlugin. NPPlugin can be accessed from both /Library as well as ~/Library which does not require sudo permissions.
Why does the manifest file need to be at root /Library level ad not user ~/library level? If so how can we get this installed on a Mac without bothering the user with admin password which the user will obviously be less likely to share.
If anyone has a solution, the Native Executable is a C++ program that can use Mac API calls.
Your understanding is correct. The Chromium team is investigating user directories as an additional option. Ensuring continuing security is the primary concern. I'll update this answer when there's more to report. (Update 6/1/2014: see Rob W.'s comment to this answer)

per machine install of mapi custom form server(message based)

I have a custom message form server which i am installing on terminal server based on windows server 2003 and 2008.
I want to do per machine install, i don't seem to get how to install it for all the domain users logging on to the machine.
If i use http://msdn.microsoft.com/en-us/library/cc815785.aspx Installform, i can install to a local form library or a personal form library which are user specific.
I don't want to install to organizational form library, if it cannot be done through msi based installer.
What do i have to do make the form server available to all users, i have tried doing MapiOpenLocalFormContainer and then InstallForm but that seems to only work for the calling user (administrator in this case)
Regards,
rui
I've used this approach before:
Using Active Setup to Repair User Settings
You'll have to adapt it to your needs but I find it works well. They describe how to do it in InstallShield but it applies to WiX as well.
Make the property ALLUSERS='1' it will do the per machine installation
In the end i had to install form on first launch of outlook for each user in their respective local form container and on uninstall of our software, i did all the user profile enumeration and cleared the FRMCACHE.DAT.
Also there is a very useful registry key ForceFormReload described here http://support.microsoft.com/kb/919596
Thanks for all the answers.

Django Deployment

I am given a responsibility in my project to develop a Equipment tracking tool with following requirements
New Equipment can be added by admin to a particular user
Once equipment is assigned to a person he will a request to accept the request so he will be responsible
User can transfer his equipment to other users.
At the same time Admin should be sent a mail or message whenever there is a change in status.
It should be deployed locally on a PC( So it is not actually a web app) that is connected to network which can be accessed by everyone
I thought I can use Django for this( I am new to it ), but I do not know much about deployment on a local PC , How can I do this, or is there any better Idea for this?
It still sounds like you want a web app, you just won't be deploying it on a traditional web server. One thing to note, client versions of Windows (XP, Vista) will limit you to 10 incoming connections per computer.
You'll want to follow these instructions on how to install Django. If you haven't installed python yet, I'll recommend that you install version 2.5, since that will include sqlite, an embedded database that makes it very easy to get started developing with Django. Django includes its own development web server, which you will come across naturally as you go through the tutorial.
Start by installing and then jump right into the tutorial. Your deployment options will be much easier to understand once you're comfortable with developing in Django.
Try http://docs.djangoproject.com/en/dev/howto/deployment/#howto-deployment-index
and if you should deploy using IIS then try http://code.djangoproject.com/wiki/DjangoOnWindowsWithIISAndSQLServer