It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I've made topic for vim already Ready VIM setup for C and I'd like also get something similar to spf13-vim, but for emacs
You can have a look at Emacs Prelude.
Prelude is an enhanced Emacs 24.x configuration that features a lot of sensible defaults, additional 3rd party packages and powerful setups for most popular programming languages. It's very modular and has the nice ability to auto-install some packages on demand - for instance the first time you open a Clojure source file Prelude will automatically install support for Clojure programming.
There are many other preconfigured Emacs distributions as well - Emacs Starter Kit, Emacs Live, etc...
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
What is DBase? How to use DBase in Windows 98? How to install DBase?
What is dBase?
A very early PC non-SQL (not exactly "NoSQL") relational database.
How do I use DBase in Windows 98?
dBase was a breakthrough product, the first μ-processor DB, and for that matter a primitive predecessor of important tools like Perl, but it was later eclipsed by clones and then by various SQL products.
If I wanted something similar today I would just use Ruby, ActiveRecord, and MySQL.
How do I install DBase?
But if you want the real thing, and something that will run on Win98 (gods, but why?) I would look up dBASE on Wikipedia and see if the downstream products like FoxPro and Clipper are available. See also dBase, LLC.
Also note that many of today's quite powerful DBMS packages can read dbf files.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have practically no experience with programming outside of ide's (Microsoft Visual Studio, netbeans and eclipse) and I am beginning to learn C programming. I have adequate experience with C++ and Java. I have downloaded gVim 7.3 and am looking for some guidance on how to program in C with vim. I do not even know where to type code with vim! I am completely lost and am looking for instructions to run simple command-line programs such as hello-world (to start). Also, would notepad++ be of any use?
Somebody please show me the world of C programming and Vim
Usually its done like this - you open up a shell window, set your compile enviroment configuration. Then open any files you are working on with gvim to have a C syntax highlighting available, modify them and save. Get back to shell window repeat make command or whatever you need to compile and link application.
The usefull extension for me was ctags, which allows to browse declarations. You dont get the comfort of code completions, intelissence, on-the-fly error messages or list of function parameters, but I didnt miss that much eitherway.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Which database is secure for web application for avoiding hacking
They're mostly all secure (though you can subscribe to any vulnerability announcement mailing lists... so if a major security flaw shows up in the next few years, you will have time to react).
Security issues are mostly design flaws, for example SQL injection, unescaped content that you print out directly onto your webpage, etc.
To learn some of the basics of web design security, you may wish to do all the tutorials on http://google-gruyere.appspot.com/
There's no guarantee that any software can be made immune from hacking. All databases can be made to work if secured properly; all of them are vulnerable if not. No one can say that database X is always secure.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I wanna make a social network with some new ideas . I wonder with which programming languages , social networks , or forums can be written?
thanks .
There are a wide variety of languages that could be used. Some of the more popular ones include PHP and ASP.NET.
I would suggest looking into elgg. It's a popular open source engine that powers social networks. I believe it leverages LAMP, which is Linux, Apache, MySql, and PHP.
Anything which can be written in one Turing-complete language can also be written in every other Turing-complete language. Since the vast majority of what we think of as "programming languages" are Turing-complete, this means that they can be written in pretty much any programming language.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I would consider myself a fairly competent programmer with experience in Java and VB.net. My latest swim around the programming lake is having me modify a program written in C. (The program is Wireshark, an open source network analyzing tool.) I followed the instructions here http://www.wireshark.org/docs/wsdg_html_chunked/ChSetupWin32.html and simply don't know where to go from there. I'd like to use Visual Studio 2008 to work with the code if possible, but will do whatever is necessary. (I'm a total noob at using command prompt to do anything though.)
If you followed those steps, then you've built it. I'll copy Section 2.2.10 here.
2.2.10. Build Wireshark
Now it's time to build Wireshark ...
If you've closed cmd.exe in the meantime, prepare cmd.exe again
nmake -f Makefile.nmake all to build Wireshark
wait for Wireshark to compile - this may take a while!
run C:\wireshark\wireshark-gtk2\wireshark.exe and check if it starts
Just make changes in the code, do these steps over again, and presto! you've modified the program. You may want to bone up on C debuggers if you're doing anything very complicated.