|
Hi, I am fresher and I want to know what is a difference between SQL Lite and SQL server.
|
|
|
|
|
In short; SQL Server is a complete database-server, capable of handling multiple clients. It is used to share data.
SQLite is a simple and quick local database, serving a single client, mostly used for local data-storage.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
That's the part I can't figure out difference between $(this) and this keyword in jQuery?
I'll have your answer, guys!
|
|
|
|
|
Not unless you post in the correct forum, and provide some proper details of your problem. Have you looked at the jQuery documentation?
|
|
|
|
|
this is a javascript keyword, representing the current javascript class.
$(this) wraps this into a jQuery object, able to apply and act upon it using jQuery methods.
|
|
|
|
|
Hi,
I'm an experienced C# dev who wants to set up own business and I want to know what is the best route to getting clients.
I have a client at the moment and will finish project in about 5 weeks but I don't know where to source future clients (UK based preferably). There is another project coming up within the same company but I'm not counting my chickens (although I have been promised a good reference by current client/department).
EDIT: If you're wondering why I don't just get a job like everyone else? Well the reason is because I've been in hospital (psychiatric) twice and have two four year gaps in my CV and no one wants to take a chance on me (understandable? maybe).
Ben
modified 24-Feb-18 11:11am.
|
|
|
|
|
Member 13683208 wrote: what is the best route to getting clients.
That is a sales - as in how does one sell.
Best route is by word of mouth. They come to you.
Next one is networking. Your current client (the people there) put you in touch with someone else. Otherwise you need to use your own contacts.
After that you have the hard route - cold calling. Find prospects, try to get a meeting with them and convince them you can provide value for what you are selling.
Member 13683208 wrote: why I don't just get a job like everyone else?
Perhaps there is a government or charity outreach that can provide referrals specifically for someone in your type of position.
|
|
|
|
|
Thank you, very inciteful.
|
|
|
|
|
Member 13683208 wrote: I've been in hospital (psychiatric) twice and have two four year gaps in my CV and no one wants to take a chance on me (understandable? maybe). "Sometimes glass glitters more than diamonds because it has more to prove." ~ Terry Pratchet
That's how I got here, despite the gaps
If you can teach, I'd suggest you add that to the list of services provided. Might not be as much fun as coding, but it may help to pay the bills. And go out a lot; any software-related presentation, show, anything with computing - go out and talk to people.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
Eddy Vluggen wrote: Might not be as much fun as coding, but it may help to pay the bills
And could lead to jobs.
Eddy Vluggen wrote: And go out a lot; any software-related presentation, show, anything with computing - go out and talk to people.
Local clubs might lead to some convention invites which in turn can either lead to jobs and/or establish more of of a reputation when attempting to sell.
|
|
|
|
|
When I first started consulting I spent a lot of time at user groups for the tools I used, not sure they still exist though.
But yeah cold calling is a bitch, best bet is networking and even that is a lot of work.
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
Thanks a lot! I'm sure that if I work hard I'll make a living 
|
|
|
|
|
ping me if you want some technological help
|
|
|
|
|
|
I need a software for my hardware shop. Can anyone help?
|
|
|
|
|
If you need custom software for specific hardware then you would need to
1. Create appropriate specifications, both functionality and target OS.
2. Find someone to create it for you. You could look to either paying or doing profit sharing.
If you want to sell software then you would find a vendor that would sell to you and you sell it. Just like any other product in a shop.
|
|
|
|
|
What kind of software exactly?
|
|
|
|
|
Hi. I can made for you any kind of software, in C++, just give me details about. Write me an email to flaviu2@yahoo.com
|
|
|
|
|
HI, if you are looking for software for your hardware shop then first you have to finalize your requirements, for which purpose you are looking for. So, it will be helpful for you.
|
|
|
|
|
Any US based freelancers (1099) hold indemnity insurance? If so, who provides (which insurance company) and how much does it cost?
Thanks
|
|
|
|
|
As a freelancer, I wouldn't even contemplate working without Professional Indemnity insurance. It *might* be OK if you're delivering a non-mission critical standalone app and don't *ever* go anywhere near the clients' servers or collect any data. But in practice I wouldn't sleep at night without it, especially as I frequently have to make changes to the clients' servers, manage confidential data, and write systems that are central to my clients' businesses. Never had to claim on it, but that's not the point - it's knowing it's there.
I'm in the UK so can't recommend any US providers.
|
|
|
|
|
Hi!
I'm thinking months of a bot(algorithm) that can detect algorithms(written in assembly or any language) and say what they are talking about.
int factorial(int number){
int fact=1;
for(int i=1;i<=number;i++){
fact*=i;
}
return fact;
}
the robot will read this(analyze it) and say to me that this is an algorithm that calculate factorial, it's a function that return an integer, what...(maybe he should execute it virtually, track registers, vars...) our technology is slow in development, we just invented computers, no robots yet 
|
|
|
|
|
This isn't a business question (wrong forum.)
And there are vast, vast number of algorithms that you could not analyze because they do not represent processes that are defined like factorial is.
|
|
|
|
|
|
Nah, a computer can only determine the instructions available; not the intent. If you see me add stuff to a list, how would you determine whether it is a list that represents a high-score, or a list of all email-addresses on your machine?
A robot is a computer; and most applications run inside a virtual machine nowadays.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|