I purchased App APK file and seller told me is 100% editable and can be modify, But All files and folders have their company tag and name on the codes - apk

I purchased App APK file and seller told me is 100% editable and can be modify,They give me instruction to how to change the App , But after I open the folders I noticed all files and folders have their company tag and name on the codes.As an example , Layout, all codes have their initials ,
Activity, every single code have their initials and tags like this
package in.techware.lataxi.listeners;
import in.techware.lataxi.model.CarBean;
import in.techware.lataxi.model.DriverBean;
public interface AppStatusListener {
void onLoadFailed(String error);
void onLoadCompleted(DriverBean driverBean);
Here is my concerns, does it matter if they have their initial on all codes? Unfortunately I am not a mobile app or programming expert.
What should do ? should completely forget about the app and think of it as lost do to future security problems , or should I pay more to someone to go over the files and change every single codes with our initial and company name ? Please if you are expert help me and instructed to make right decision.

Related

What is eForms and documents in Exchange Online's public folder

According to the introduction of public folder, we have this statement:
Public folder content can include email messages, posts, documents,
and eForms.
I already searched for a while and asked for MS support, but with little help.
Some possible alias name:
eForm
Microsoft Forms - can attached to a message which is sending to public folder address
Organizational Forms - use outlook desktop to create a tpl for post item
documents
Ambiguious naming to document library in Share Point, so I have no idea.
Questions:
Is anyone can illustrate how to create eForm & documents in public
folder?
And in deveolpeing perspective, What kinds of item class should those two items be (eForm & documents)?
Thanks for help!
eForms are MAPI forms https://learn.microsoft.com/en-us/office/client-developer/outlook/mapi/mapi-forms-overview and https://learn.microsoft.com/en-us/office/vba/outlook/concepts/forms/forms-and-message-classes.Most people would use SharePoint or other technologies instead of eForms and or Public Folders these day (eg client access to Public folder is limited outside of the Outlook Desktop on windows). Unless you have legacy code your trying to maintain it would be better to avoid either of these.

Why does my Joomla site subdomain copy the main site?

I'm not a pro with server management, I mainly do web design on Joomla.
Our IT Manager recently left and I was given access to everything since no-one else in our company knows web.
We have a main site. In this example I'll name the site as cookies.com for example sake.
www.cookies.com is the main site. The domain is cookies.com only. We have 3 server accounts for this.
123reg - to buy the domain and renew
heartinterner - to host the website
1and1 - this is where it is redirected (or something), well all the files are found in virtual servers here.
When I go to the virtual servers, there are a couple of directories, and eventually I can find a folder called "var" which leads me to another directory. I go to "www" and I find so many site folders there, including cookies.com and dev.cookies.com and more
My objective was to backup and restore cookies.com to dev.cookies.com so that I can work on it and replace the original cookies.com later on. I use Akeeba Backup for this.
The issue is, as soon as I started making changes to dev.cookies.com, cookies.com also made those changes.
I'm very confused- what's going on here? Is there something written in the files that direct the database or whatever to the same place, for which reason the changes occur together?
Sorry this is very confusing. Please suggest if you can what I can do. I know this might not be much information.
Thank you!
You probably have used the same database for both. Create another database and user for dev.cookies.com and use that database and user to create the new dev site. Check in the configuration.php file that these values should be different.
public $db = 'joomla';
public $password = 'db_password';
public $user = 'root';
These are all database values. Also check these settings
public $log_path = 'C:/xampp/htdocs/joomla/administrator/logs';
public $tmp_path = 'C:/xampp/htdocs/joomla/tmp';

windows folder for temporary files created by my application

I'm trying to decide where the 'correct folder' to store documents and logs created by my windows form application. The application is used in education and has all paths held in the SQL server. Some (like logs file paths are shared) are accessible on network but specifically for temporary documents where should I default the storage to? I've recently tried the Users/username/AppData/ folder but I seem to be getting differing results after installation; so far I have put this down to people user credentials as often in schools they can do whatever they want (yes I know shocking indeed).
If anyone can point me in the direction of an MSDn article or knows better please reply - Thanks.
** Edit 10/09/2013 - Sorry all I should be further explicit. I'm looking for the folder / structure Microsoft has designed for this sort off activity. My application already provides users with the ability to create thier own working directories (there are several required) but I'm keen to use the 'correct' locations for this sort of activity... I thought the right place would be c:/Users/USERNAME/Appdata/APPLICATION FOLDER/ but as I mention I've come across a few access rights issues when uses install the application.... hope that explains better - thanks
To create temporary directory you can use something like this:
public string GetTempDirectory() {
string path = Path.GetRandomFileName();
Path.Combine(Path.GetTempPath(), path);
Directory.CreateDirectory(path);
return path;
}
Path class info
Directory class info

How do I make a build show up in my TeamCity public NuGet feed?

We use TeamCity 7.1.1 to publish NuGet packages on both the authenticated and public feed URLs. I've just created a new package and can't get it to show up on the public feed, though it does appear on the private feed once I log in.
It smacks of a permissions problem, but I've assigned 'All Users' the 'Project Viewer' role on that build. I have another build that is showing up correctly, and the configuration seems the same. What could be stopping my new build from appearing on the public feed?
Solved it! I've been scratching my head for hours and of course I find the answer 30 seconds after posting to StackOverflow!
It seems that the Guest account is not a member of All Users, so assigning the Project Viewer role to All Users is not sufficient.
One has to explicitly assign the Project Viewers role to the Guest User. This is confusingly done in a completely separate screen, under Guest user settings, linked from the top right hand side of the main user administration screen. Walla! Job done.

Can I access a string value from resource dll in windows phone 7 app?

OK, so I've successfully managed to create a localisation resource library for the title of my WP7 app using the msdn tutorial
The app title is therefore stored in a string table within the resource library AppResLib.dll. This resource string is accessible from the WMAppManifest.xml file by using the following code:
#AppResLib.dll,-200
I would like to know if it's possible to access the app title string from a class within my app? My google searches seem to suggest that it's not possible. It's not possible to use a solution as outlined here, as it just returns the string "#AppResLib.dll,-200".
I think the only solution is to define the app title a second time in a localised string resource file as shown here which I would prefer not to do.
Any help would be greatly appreciated. Thanks for your time.
I'm use localised ressources, but it's a ressource file, I want to call my labels, title, and other text ressourecs in all my application (in my c# class and in XAML) .
if you want tutorial ( in french, sorry ) is here (you want to use google translate for translate all page in english )

Resources