Questions by Grace Funk
Split Java String by New Line?
I'm trying to split text in a JTextArea using a regex to split the String by \n However, this does not work and I al...
Checking if a key exists in a JavaScript object??
How do I check if a particular key exists in a JavaScript object or array? If a key doesn't exist, and I try to acc...
Appropriate icon for Windows 8 installer?
I'm trying to figure out which icon I'm supposed to (and allowed to) ship with my installer. I'd rather not use a cu...
Convert tabs to spaces in Notepad++?
How do I convert tabs to spaces in Notepad++? I found a webpage that suggests it's possible, but I couldn't find a...
AngularJS reusable modal bootstrap directive?
I'm new with AngularJS. I'm trying to implement a reusable modal Bootstrap. This is the index.html: <div n...
Generating patches in Mercurial?
I've looked for that in the manual, but I can't generate a patch for the last commit. I tried hg qnew patch_name ...
XML output from MySQL?
is there any chance of getting the output from a MySQL query directly to XML? Im referring to something like MSSQL ...
Unescaped left brace regex error?
I’m not an expert in regex and can't figure what I am supposed to change here. I get these two errors Unescaped ...
String to java.sql.Date?
I realize this has been asked a lot. I did actually look. I've spent hours looking around and trying to figure this ...
Reading a delimited string into an array in Bash?
I have a variable which contains a space-delimited string: line="1 1.50 string" I want to split that string with ...
LDAP root query syntax to search more than one specific OU?
I need to run a single LDAP query that will search through two specific organization units (OU) in the root query ho...
Extend $PATH variable in git bash under Windows?
I'm trying to extend my $PATH variable in git bash (MinGW shell) by adding the following to the file ~/.bashrc PATH...
Laravel: How to Get Current Route Name? (v5 … v7)?
In Laravel v4 I was able to get the current route name using... Route::currentRouteName() How can I do it in Lara...
ValueError: Grouper for <something> not 1-dimensional?
I'm have the following code which creates a table and a barplot via seaborn. #Building a dataframe grouped by the #...
Allow only numbers to be typed in a textbox [duplicate]?
This quest...