-
as seen on Server Fault
- Search for 'Server Fault'
Log files and other textual data files are often tens or hundreds of megabytes in size, and some editors choke when you try to open something so large.
What are some good applications for viewing large files? Bonus points for apps that can open compressed files, search for things with regular expressions…
>>> More
-
as seen on Super User
- Search for 'Super User'
Among text editors on Linux, I usually prefer KWrite. I like that I can quickly turn on/off line numbers and line wrap in the View menu. Other settings are easy to change. Other text editors I've used in the past, such as Gnome's gedit, bury line numbering and wrapping checkboxes deeper into the…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In VS2008, you could enable right-margin marks by creating a string registry entry named Guides under HKCU\Software\Microsoft\VisualStudio\9.0\Text Editor. It also worked with the express editions: replace VisualStudio with VCExpress or VCSExpress.
The value I had was: RGB(192,192,192) 80, 100 which…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm willing to buy tools if they add genuine value over a FOSS equivalent. One thing I wouldn't mind having is an editor with the power of Emacs, but made more user-friendly. There seem to be several commercial editors out there, but I can't find much discussion of them online. Maybe it's because…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm looking for a feature somewhat like the vertical red 80 columns marker in NetBeans but one that's easier to use. I'd like it to function more like the tabs in MS Word except that the horizontal line is displayed on the entire file. I looked on the Comparison of Text Editors over at Wikipedia…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
hi guys,
i'm working on iphone application which needs to run offline at an exhibition. It should present data, stored local because there is no internet at the booth. Still, to easily have content updates it should be able to update it's content once connected to internet.
It's quite some data…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Ok, so for an app I am making, I want the user to be able to save data online. On my website, I will provide a web server with tables of UserName/Password/SaveData. How can I do this without crashing the server load? How can I guarantee security ? Is there a Design Pattern for this?Is there a better…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
i have a PHP contact form that submits data, and an email...:
<?php
$dbh=mysql_connect ("localhost", "username", "password") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("guest");
if (isset($_POST['submit'])) {
if (!$_POST['name'] | !$_POST['email'])…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
is it possible to have an html form organized/named in such a way that $foo-fromArray($_POST) would actually save relational data as well?
example:
html_form_fields:
user_name
country_name
db_table_users:
id
user_name
db_table_countries:
id
country_name
update:
forgot to say i'm trying to make…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello. I'm trying to save data to the MySQL database in Rails when the user drags items from different lists. I'm using the below Jquery script and HTML:
<script>
$(document).ready(function() {
$("#draggable").draggable( { connectToSortable: 'ul#myList', helper:'clone' } );
$("#myList")…
>>> More