pid
int64 2.28k
41.1M
| label
int64 0
1
| text
stringlengths 1
28.3k
|
---|---|---|
36,256,630 | 0 | Angular ng-options doesn show all elements <p>I am working in some app with AngularJS and I am using the <code>ng-options</code> directive, but I have one problem. When I select the <strong>"Provincia"</strong>, the <strong>"Cantón"</strong> select only shows the last element in the array. </p> <p>Anyone knows what is the problem?</p> <p>This is my HTML code:</p> <pre class="lang-html prettyprint-override"><code><div class="form-group"> <select class="form-control" ng-model="selected.provincia" ng-options="p.provincia for p in geografiaCR"> <option value="" disabled selected hidden>Seleccione una provincia</option> </select> </div> <div class="form-group"> <select class="form-control" ng-model="selected.nombre" ng-options="n.nombre for n in selected.provincia.cantones"> <option value="" disabled selected hidden>Seleccione un cantón</option> </select> </div> </code></pre> <p>And this is the Angular code:</p> <pre class="lang-js prettyprint-override"><code>$scope.selected = {}; $scope.geografiaCR = [ { provincia: 'San José', cantones: [{nombre: 'San José',nombre: 'Escazú',nombre: 'Desamparados',nombre: 'Puriscal',nombre: 'Tarrazú', nombre: 'Aserrí',nombre: 'Mora',nombre: 'Goicochea',nombre: 'Santa Ana', nombre: 'Alajuelita', nombre: 'Acosta',nombre: 'Tibás',nombre: 'Moravia',nombre: 'Montes de Oca',nombre: 'Turrubares', nombre: 'Dota',nombre: 'Curridabat',nombre: 'Perez Zeledón', nombre: 'León Cortes'}] }, { provincia: 'Limón', cantones: [{nombre: 'Limón',nombre: 'Pocosí',nombre: 'Siquirres',nombre: 'Talamanca',nombre: 'Matina', nombre: 'Guácimo'}] } ]; </code></pre> |
26,935,126 | 0 | <p>You could get rid of all your <code>if/elseif</code> loops:</p> <pre><code>n = size(Y); colour = {'y','m','c','r','g','b','k','r','b','g'}; shape = {'c','c','c','c','c','c','c','s','s','s'}; for ii = 1:n(2) subplot scatter(X(1,ii), X(2,ii), 12, colour{Y(ii)}, shape{Y(ii)}, 'filled') hold on end </code></pre> |
3,016,399 | 0 | Qt - How to post a banner on the dialog? <p>I have a directroy where I have several pictures and gif animations. I want to post that pictures and animations on a QDialog in an infinite loop (by cyclically changing pictures in 2 minutes interval) and on that pictures and animations I want to set a link so that when you click the browser open the set link.</p> <p>How I could do this?</p> <p>Please consider that I know how to get all .jpg amd .gif file names (full path) in the directory. Consider there is a QStringList fileNameList; which contains that full paths.</p> |
12,873,142 | 0 | invalid application of 'sizeof' to incomplete type 'struct array[]' <p>I am trying to organize my project by splitting commands up into separate files for easier maintenance. The issue I am having is trying to iterate over the array of commands defined at compile time. I have created a dumbed down example that reproduces the error I am getting.</p> <pre><code>. ├── CMakeLists.txt ├── commands │ ├── CMakeLists.txt │ ├── command.c │ ├── command.h │ ├── help_command.c │ └── help_command.h └── main.c </code></pre> <h3>./CMakeLists.txt</h3> <pre><code>PROJECT(COMMAND_EXAMPLE) SET(SRCS main.c) ADD_SUBDIRECTORY(commands) ADD_EXECUTABLE(test ${SRCS}) </code></pre> <h3>commands/CMakeLists.txt</h3> <pre><code>SET(SRCS ${SRCS} command.c help_command.c) </code></pre> <h3>commands/command.h</h3> <pre><code>#ifndef COMMAND_H #define COMMAND_H struct command { char* name; int (*init)(int argc, char** argv); int (*exec)(void); }; extern struct command command_table[]; #endif </code></pre> <h3>commands/command.c</h3> <pre><code>#include "command.h" #include "help_command.h" struct command command_table[] = { {"help", help_init, help_exec}, }; </code></pre> <h3>commands/help_command.h</h3> <pre><code>#ifndef HELP_COMMAND_H #define HELP_COMMAND_H int help_command_init(int argc, char** argv); int help_command_exec(void); #endif </code></pre> <h3>commands/help_command.c</h3> <pre><code>#include "help_command.h" int help_command_init(int argc, char** argv) { return 0; } int help_command_exec(void) { return 0; } </code></pre> <h3>./main.c</h3> <pre><code>#include <stdio.h> #include "commands/command.h" int main(int argc, char** argv) { printf("num of commands: %d\n", sizeof(command_table) / sizeof(command_table[0])); return 0; } </code></pre> <p>If you run this</p> <pre><code>mkdir build && cd build && cmake .. && make </code></pre> <p>the following error occurs</p> <pre><code>path/to/main.c:6:40: error: invalid application of 'sizeof' to incomplete type 'struct command[]' </code></pre> <p>So, how do I iterate over <code>command_table</code> if I can't even determine the number of commands in the array?</p> <p>I realize there are other posts out there with this same error, but I've spent a while now trying to figure out why this doesn't work and continue to fail:</p> <ul> <li><a href="http://stackoverflow.com/questions/8915230/invalid-application-of-sizeof-to-incomplete-type-with-a-struct">invalid-application-of-sizeof-to-incomplete-type-with-a-struct</a></li> <li><a href="http://stackoverflow.com/questions/5240435/invalid-application-of-sizeof-to-incomplete-type-int-when-accessing-intege">invalid-application-of-sizeof-to-incomplete-type-int-when-accessing-intege</a></li> </ul> |
24,958,778 | 0 | <p>Just use:</p> <pre><code>- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { return indexPath.row != THE_ROW_YOU_WANT_TO_STOP; } </code></pre> |
20,660,956 | 0 | how to avoid getting ^M in file? <p>I don't know why it appears in my file when using vim. Sometimes not in the vim, but in the output of 'git diff', why?</p> <p>what command can help me check if file under some dir have '^M' problem, and fix all of them?</p> |
26,559,162 | 0 | Is the AllowHtml attribute secure <p>I have a MVC model field that the user enters some html source code into. Currently, I am getting the following error:</p> <blockquote> <p>A potentially dangerous Request.Form value was detected from the client</p> </blockquote> <p>I have had a look at the following resource: <a href="http://blogs.msdn.com/b/marcinon/archive/2010/11/09/mvc3-granular-request-validation-update.aspx" rel="nofollow">http://blogs.msdn.com/b/marcinon/archive/2010/11/09/mvc3-granular-request-validation-update.aspx</a></p> <p>The resource says to add the <code>AllowHtml</code> attribute. I have added this attribute, and the error is now not occuring.</p> <p>My question is this: Is there any other security features that I should add to my application, or is the <code>AllowHtml</code> attribute all that is required? Should I also use the following protection library: <a href="http://wpl.codeplex.com/" rel="nofollow">http://wpl.codeplex.com/</a></p> <p>Thanks in advance</p> |
3,757,888 | 0 | <p>This returns the sequence you look for:</p> <pre><code>var result = MyList .Select(s => s.Split('-').OrderBy(s1 => s1)) .Select(a => string.Join("-", a.ToArray())) .Distinct(); foreach (var str in result) { Console.WriteLine(str); } </code></pre> <p>In short: split each string on the <code>-</code> character into two-element arrays. Sort each array, and join them back together. Then you can simply use <code>Distinct</code> to get the unique values.</p> <p>Update: when thinking a bit more, I realized that you can easily remove one of the <code>Select</code> calls:</p> <pre><code>var result = MyList .Select(s => string.Join("-", s.Split('-').OrderBy(s1 => s1).ToArray())) .Distinct(); </code></pre> <p>Disclaimer: this solution will always keep the value "A-B" over "B-A", regardless of the order in which the appear in the original sequence.</p> |
32,615,703 | 0 | <p>A couple suggestions:</p> <p>1 ) Instead of this: </p> <p>Command="{Binding ViewModel.GetQuoteQuestionsCommand, Mode=OneWay}" /></p> <p>try: Command="{Binding ViewModel.GetQuoteQuestionsCommand}" /></p> <p>2) Don't "roll your own" RelayCommand. Use an MVVM library such as MvvmLight and use the RelayCommand provided there. </p> |
26,913,734 | 0 | Hitting Max number of files and blobs for Google App Engine <p>When trying to deploy my application:</p> <pre><code>appcfg.py update --oauth2 . </code></pre> <p>I'm getting:</p> <pre><code>PM Rolling back the update. Error 400: --- begin server output --- Max number of files and blobs is 10000. --- end server output --- </code></pre> <p>How do I solve this?</p> |
15,242,260 | 0 | Error in installing ATF in eclipse <p>In eclipse JUNO->install new software-><a href="http://download.eclipse.org/tools/atf/updates/0.3.0" rel="nofollow">http://download.eclipse.org/tools/atf/updates/0.3.0</a></p> <p>but it gives me this error</p> <p><strong>Cannot complete the install because one or more required items could not be found. Software being installed: AJAX Tools Framework Webtools Integration (Incubation) 0.3.0.v201006041600-15-7zCN3HbXIOZQuUeDRRMG (org.eclipse.atf.feature.feature.group 0.3.0.v201006041600-15-7zCN3HbXIOZQuUeDRRMG) Missing requirement: AJAX Tools Framework Mozilla IDE (Incubation) 0.3.0.v201006041600-17K-DZRDIXEqJdCQQLF (org.eclipse.atf.mozilla.ide.feature.feature.group 0.3.0.v201006041600-17K-DZRDIXEqJdCQQLF) requires 'org.mozilla.xpcom.feature.feature.group 1.8.1' but it could not be found Cannot satisfy dependency: From: AJAX Tools Framework Webtools Integration (Incubation) 0.3.0.v201006041600-15-7zCN3HbXIOZQuUeDRRMG (org.eclipse.atf.feature.feature.group 0.3.0.v201006041600-15-7zCN3HbXIOZQuUeDRRMG) To: org.eclipse.atf.mozilla.ide.feature.feature.group [0.3.0.v201006041600-17K-DZRDIXEqJdCQQLF]vCannot complete the install because one or more required items could not be found. Software being installed: AJAX Tools Framework Webtools Integration (Incubation) 0.3.0.v201006041600-15-7zCN3HbXIOZQuUeDRRMG (org.eclipse.atf.feature.feature.group 0.3.0.v201006041600-15-7zCN3HbXIOZQuUeDRRMG) Missing requirement: AJAX Tools Framework Mozilla IDE (Incubation) 0.3.0.v201006041600-17K-DZRDIXEqJdCQQLF (org.eclipse.atf.mozilla.ide.feature.feature.group 0.3.0.v201006041600-17K-DZRDIXEqJdCQQLF) requires 'org.mozilla.xpcom.feature.feature.group 1.8.1' but it could not be found Cannot satisfy dependency: From: AJAX Tools Framework Webtools Integration (Incubation) 0.3.0.v201006041600-15-7zCN3HbXIOZQuUeDRRMG (org.eclipse.atf.feature.feature.group 0.3.0.v201006041600-15-7zCN3HbXIOZQuUeDRRMG) To: org.eclipse.atf.mozilla.ide.feature.feature.group [0.3.0.v201006041600-17K-DZRDIXEqJdCQQLF]</strong></p> <p><br> thanks</p> |
28,638,165 | 0 | <p>It sounds like an encoding issue. You're probably saving down as a different encoding to the original document, and different from what the target application is expecting. Hence the change in file size.</p> <p>It's possible to change the encoding used for the save as described by dbc above:</p> <blockquote> <p>Create an XmlWriterSettings, set XmlWriterSettings.Encoding as appropriate, then create an XmlWriter and pass it to XDocument.Save().</p> </blockquote> |
28,083,040 | 0 | Does MPandroid CHart Library supports Stackbar charts? <p>I reasrched a lot about compound graphs in MPanroidCHart library. By compound graph i mean having multiple types of graph series in single plot.</p> <p>I tried other libraries too like androidplot , achartengine library.. Although they provide compound graphs but they dont provide that much flexibility (like adding marker view/toast) .</p> <p><strong>My Expectation</strong></p> <pre><code>1. i want both stacked bar chart and line chart in single graph 2. I need 2 y-axis(one at right and other at left) </code></pre> <p>is this possible?</p> |
20,393,637 | 0 | SQL - Display all empty rows with Count() Group By <p>These are my tables:</p> <pre><code>Categories table ================ id (fk) category_name Items table =========== id (pk) item_name category_id (pk) </code></pre> <p>One <strong>category</strong> has many <strong>Items</strong></p> <p>One <strong>item</strong> have one <strong>category</strong></p> <p>Let's say I have these data:</p> <pre><code>Categories ========== id category_name ----------------------- 1 Foods 2 Beverages 3 Computer 4 Cats Items ===== id item_name category_id(fk) 1 Rice 1 2 Chicken 1 3 Mouse 3 4 Keyboard 3 </code></pre> <p>Query that I used to count items grouped by category name:</p> <pre><code>SELECT categories.id, categories.category_name, COUNT(items.item_name) AS items FROM items INNER JOIN categories ON items.category_id = categories.id GROUP BY category_name </code></pre> <p>I've tried the above query to display the counting, but it doesn't show all rows from Categories table. Well, of course some item might not be in a category, but how do I show the empty Category as well?</p> |
38,134,865 | 0 | Copying specific struct members to another structure <p>so I have a file from which I have to load a number of tracks, find tracks longer than 3:30 and find the average bpm of those tracks. </p> <p>Here's the code I have.</p> <p>Main file:</p> <pre><code>#include <stdio.h> #include "functions.h" int main(void) { Playlist *all, *long_tracks; float avg_bpm; all = load_tracks("tracks.txt"); long_tracks = get_tracks_longer_than(3,30,all); print_playlist(long_tracks); avg_bpm = get_avg_bpm(long_tracks); printf("Average BPM of the playlist is: %.2f\n", avg_bpm); return 0; } </code></pre> <p>Header: </p> <pre><code>#ifndef FUNCTIONS_H #define FUNCTIONS_H typedef struct track { char track[250]; float bpm; int mm, ss; } Track; typedef struct playlist { int count; Track **tracks; } Playlist; void print_playlist(Playlist *list); Playlist* load_tracks(char *filename); Playlist* get_tracks_longer_than(int mm, int ss, Playlist* all); float get_avg_bpm(Playlist *list); #endif </code></pre> <p>Functions:</p> <pre><code>#include <stdio.h> #include <stdlib.h> #include <string.h> #include "functions.h" void print_playlist(Playlist *list) { int i; for (i = 0; i < list->count; i++) { printf("%s (%d:%d) [%f]\n", list->tracks[i]->track, list->tracks[i]->mm, list->tracks[i]->ss, list->tracks[i]->bpm); } } Playlist* load_tracks(char *filename) { int n,i; Playlist *list = (Playlist*) malloc(sizeof(Playlist)); Track *tracks; FILE *f = fopen(filename, "r"); fscanf(f, "%d", &n); printf("Tracks: %d\n", n); tracks = (Track*) malloc(n*sizeof(Track)); list->tracks = (Track**) malloc(n*sizeof(Track*)); for (i = 0; i < n; i++) { fscanf(f, "%d:%d", &tracks[i].mm, &tracks[i].ss); fscanf(f, "%f", &tracks[i].bpm); fgetc(f); fgets(tracks[i].track, 250, f); tracks[i].track[strlen(tracks[i].track)-1] = '\0'; list->tracks[i] = &tracks[i]; } list->count = n; return list; } Playlist* get_tracks_longer_than(int mm, int ss, Playlist* all) { Playlist *longSongs = (Playlist*) malloc(sizeof(Playlist)); Track *tracks; tracks = (Track*) malloc(all->count*sizeof(Track)); longSongs->tracks = (Track**) malloc(all->count*sizeof(Track*)); int i, n = 0; for(i=0;i<all->count;i++) { if(all->tracks[i]->mm>mm) { n++; memcpy ( &longSongs, &all, sizeof(all) ); //I also tried longSongs[i]=all[i]; } else if(all->tracks[i]->mm==mm) { if(all->tracks[i]->ss>ss) { n++; memcpy ( &longSongs, &all, sizeof(all) ); } } } longSongs->count=n; return longSongs; } float get_avg_bpm(Playlist *list) { float avg_bpm=0; int i; for(i=0;i<list->count;i++) { avg_bpm+=list->tracks[i]->bpm; } return avg_bpm/=list->count; } </code></pre> <p>Problem is in my get_tracks_longer_than function, in which I don't really know how to copy the struct member I want from source structure to the destination structure, I only managed to copy all members from one structure to the other. My n counter counts number of tracks correctly, and my function which calculates bpm seems to work, but I don't know how to get the exact data I want. I tried using memcpy function, tried assigning it like this: <code>longSongs[i]=all[i]</code>, and I tried manually assigning values, e.g:</p> <pre><code>longSongs->tracks[i]->mm = all->tracks[i]->mm; longSongs->tracks[i]->ss = all->tracks[i]->ss; longSongs->tracks[i]->bpm = all->tracks[i]->bpm; </code></pre> <p>but nothing works, it always copies all members of the source structure, ignoring my if statements.</p> |
10,516,027 | 0 | <p>Variable <code>FORMAT</code> expressions are non-standard and are <strong>not</strong> supported by gfortran (<a href="http://gcc.gnu.org/onlinedocs/gfortran/Variable-FORMAT-expressions.html" rel="nofollow">link</a> to the documentation).</p> <p>I know your pain - I've also struggled with this problem many times before until I migrated completely to another compilers collection...</p> |
7,258,295 | 0 | Blank Multipart email <p>I'm using PHP to send out a multipart/mixed message (plain text, html and attachments). However, whilst it works for most accounts, Yahoo, GMail and Sky seem to show blank emails. Where as everything else seems to display the email. ANY HELP WOULD BE GREATLY APPRECIATED!</p> <p>My headers are </p> <pre><code>$headers .= "Content-Type: multipart/mixed; boundary=\"mixed-" . $random_hash . "-mixed\"\n"; $headers .= "MIME-Version: 1.0\n"; </code></pre> <p>And the content is;</p> <pre><code>--mixed-7df05b31-mixed Content-Type: multipart/alternative; boundary="alt-7df05b31-alt" --alt-7df05b31-alt Content-Type: text/plain; charset=utf-8 Hello how are you? I am just checking the mailing function. Hopefully this will work! Cheers. --alt-7df05b31-alt Content-Type: text/html; charset=utf-8 <div style="font-family:Arial, Helvetica, sans-serif; font-size: 10pt;"> <div> Hello how are you? I am just <b>checking</b> the mailing function.<br><br> Hopefully this will work!<br><br> Cheers.</div></div> --alt-7df05b31-alt-- --mixed-7df05b31-mixed Content-Type: text/plain; name="abc.txt" Content-Disposition: attachment; filename="abc.txt" Content-Transfer-Encoding: base64 SEVMTE8gSlVTVCBURVNUSU5HIC4uLiA= --mixed-7df05b31-mixed-- </code></pre> |
3,920,941 | 0 | <p>When data became too big to fit memory, the only way is use extended memory (HDD). Here you can partition and store on disk, load small part each onto memory and search.</p> <p>Or you should use a algobrithm that use less memory and more processor. <br>1.Search the file, search all num, and create a relative 2-d matrix or something like below. </p> <pre><code> 1 2 3 4 ... 1 0 1 0 0 2 0 1 0 0 3 0 0 0 0 ... </code></pre> <p><br>2.You can sort on this matrix. <br>3.One by one pair, search the file to get line num contain both numbers in pair.<br> Sorry because my bad english.</p> |
11,759,993 | 0 | <p>A <code>List<Enum></code> is not a <code>List<Locations></code> nor a <code>List<Int32></code>. Use a generic method to handle the list:</p> <pre><code> public static void PackEnumList<T>(IEnumerable<T> list) where T : IConvertible { foreach (var value in list) int numeric = value.ToInt32(); // etc. } </code></pre> |
31,657,878 | 0 | <p>I think you basically have the right idea. You should listen for collaborator leave/join events and update what is being tracked appropriately. As you say, its OK for multiple people to make the changes for leave, as they will do the same thing.</p> <p>The <a href="https://github.com/googledrive/realtime-playground" rel="nofollow">Realtime Playground</a> has an example of this.</p> |
9,890,517 | 0 | How to dump sinatra rack test exceptions to console? <p>While I develop, I would like to see sinatra app exceptions when running tests, cosider example:</p> <pre><code>require 'sinatra/base' class ExceptionWeb < Sinatra::Base enable :raise_errors enable :dump_errors configure do enable :dump_errors end get "/" do raise "hell" "ok" end def self.bad_method raise "bad method" end end require 'rack/test' describe 'The Web interface' do include Rack::Test::Methods def app ExceptionWeb end it "should error out" do get "/" #puts last_response.errors #ExceptionWeb.bad_method #last_response.should be_ok end end </code></pre> <p>Following rspec code shows no exceptions at all, if I uncomment last_response, then I see something is wrong, but I don't see what was wrong.</p> <p>But calling <code>mad_method</code> shows me exception.</p> <p>And adding <code>puts last_response.errors</code> to every test doesn't look proper.</p> <p>I tried sinatra config options <code>raise_errors</code> and <code>dump_errors</code> but that doesn't help me much.</p> <p>Any ideas?</p> |
40,587,641 | 0 | How can I start/stop a stop watch with only the spacebar? <p>I want to start/stop a stop watch only using the spacebar. I already made the KeyListeners, and that they only get activated when you press/release the spacebar.</p> <p>What I tried so far:</p> <p>I tried creating a stopwatch class, which SHOULD calculate the time difference between me pressing space for the first time, and second time. I tried it as follows:</p> <pre><code> public class Stopwatch { public Stopwatch(int i) { long time = System.currentTimeMillis(); if(i%2==1){ System.out.println("Timer Started at: " + time); }else{ System.out.println("Timer stopped at: " + System.currentTimeMillis()); System.out.println("Time diff: " + (time - System.currentTimeMillis())); } }} </code></pre> <p><code>int i</code> increases with every second spacebar press.</p> <p>I know the problem here is that everytime I start this class, <code>time</code> is getting reset to System.currentTimeMillis() because I only press Spacebar. Thus the difference is always 0.</p> <p>How can I change this so that I can somehow save the time I first pressed space?</p> <p>Here is the class with the Keylisteners. Ignore the Scrambler class, it has nothing to do with my Problem.</p> <pre><code> import java.awt.Font; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import javax.swing.*; public class StoppuhrFrame extends JFrame { JLabel time, scramble; public StoppuhrFrame() { time = new JLabel("00:00:00"); time.setBounds(162, 45, 325, 80); time.setFont(new Font("Arial", 100, 80)); add(time); scramble = new JLabel("Scramble: "); scramble.setBounds(165, 15, 370, 16); add(scramble); //Scrambler scrambler = new Scrambler(scramble); addKeyListener(new timer()); setTitle("Cube Timer"); setLayout(null); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setResizable(false); setSize(650, 270); setVisible(true); } int i = 1; public class timer implements KeyListener { @Override public void keyPressed(KeyEvent keyEvent) { if(keyEvent.getKeyCode()==32){ new Stopwatch(i); i++; } @Override public void keyReleased(KeyEvent arg0) { if (arg0.getKeyCode() == 32) { if(i%2==0){ //new Scrambler(scramble); } } } @Override public void keyTyped(KeyEvent arg0) { // TODO Auto-generated method stub } }} </code></pre> <p>Thanks in advance.</p> |
35,794,073 | 0 | Regex to match Tags NOT surrounded by Tags <p>I have the following example:</p> <pre><code><p>skljklf askjas</p> <li>dsjd sjg</li> <li>skdkgds</li> <li>skask las</li> <p>skklgs aklgas</p> <ul><li>saks </li><li>isksa</li></ul> <li>asjkafsklj asjlkafs</li> </code></pre> <p>As you can see there are <code>li</code>-tags which are not surrounded by an <code>ul</code>. I am trying to find a regex which selects <strong>all</strong> occurences of <code><li>...</li><li>...</li></code> and surrounds them with <code><ul></ul></code>. So at the end I would have the following text:</p> <pre><code><p>skljklf askjas</p> <ul><li>dsjd sjg</li> <li>skdkgds</li> <li>skask las</li></ul> <p>skklgs aklgas</p> <ul><li>saks </li><li>isksa</li></ul> <ul><li>asjkafsklj asjlkafs</li></ul> </code></pre> <p>Trying it in php with <code>preg_replace</code> and <code>mb_ereg_replace</code>, but no real clue yet how I could start.</p> <p>I don't want to do DOM manipulation with <code>DOMDocument</code>.</p> |
12,001,562 | 0 | iPhone App; identify file type from url <p>for an iphone app i am downloading files using url....</p> <p>from this type of url:: <a href="http://xxxxxxxxxxxxxxxxxxx.com/xxxxxxx//xxx/ipad.html?operation=getFile&contentId=61768b16-6b44-4d0b-bdcf-d10107d1f328" rel="nofollow">http://xxxxxxxxxxxxxxxxxxx.com/xxxxxxx//xxx/ipad.html?operation=getFile&contentId=61768b16-6b44-4d0b-bdcf-d10107d1f328</a></p> <p>I am downloading files from server but it may be of type .pdf or .docx or .doc </p> <p>is there any way to identify file type from url ?</p> <p>Please help and suggest</p> <p>Thanks</p> |
39,821,404 | 0 | <p>Let's see what actually (i + 7) % 10 do:</p> <pre><code>0 = 7 1 = 8 2 = 9 3 = 0 4 = 1 5 = 2 6 = 3 7 = 4 8 = 5 9 = 6 </code></pre> <p>As you can see there's definitely quite obvious pattern. So in order to decode our original digit back we have to do</p> <pre><code>(i + 3) % 10 </code></pre> |
19,942,426 | 0 | <p>Use <code>RegExpTxt.test(Fname.value)</code> instead of <code>RegExpTxt(Fname.value)</code></p> <p>Javascript should end up being:</p> <pre><code>function form_onchange(){ var Fname = document.getElementById('Fname'); var RegExpTxt = /^([a-zA-Z ]){2,30}$/; if (!RegExpTxt.test(Fname.value)) { alert('Please provide a valid name'); Fname.focus(); Fname.select(); return false; } } </code></pre> |
19,502,896 | 0 | <p>I loaded this exact file onto my WAMP server locally and everything worked perfectly fine: You might want to change this at the bottom of the page: src="http://code.jquery.com/jquery.js" There is nothing wrong with your code and the HTML5 shiv and respond.js has nothing to do with your menu not working...</p> <p>You might however want to use Google Chrome and use the inspect element to make sure your reference points are correct.</p> <p>Hover doesn't work out of the box in BS3, you can use a custom javascript to get that working... I use it here: <a href="http://thisamericanjourney.com/" rel="nofollow">http://thisamericanjourney.com/</a> hover over the about menu item: //This allows the user to hover over the menu without clicking on it</p> <pre><code> $(function() { $('ul.nav li.dropdown').hover(function() { $('.dropdown-menu', this).fadeIn('fast'); }, function() { $('.dropdown-menu', this).fadeOut('fast'); }); }); </code></pre> |
37,233,302 | 0 | <p>You are misunderstanding <code>in</code> and <code>out</code> parameters.</p> <p>This:</p> <pre><code>CallableStatement cStmt = dbConnection.prepareCall(sql); cStmt.registerOutParameter(1, Types.DECIMAL); cStmt.execute(); </code></pre> <p>Is declaring that your ratio parameter is an output from the procedure, but it's not.</p> <p>You should be doing something like:</p> <pre><code>CallableStatement cStmt = dbConnection.prepareCall(sql); cStmt.setObject(1, theRatio, Types.DECIMAL); cStmt.execute(); </code></pre> |
33,874,881 | 0 | <p>I don't know why you want to keep the unidirectional relation here, because making it bidirectional would make your life much easier.</p> <p>First, <code>CascadeType.ALL</code> on the parent mapping in your example means that if you delete the subfolder, its parent will be deleted also. And this will propagate all the way up to the root folder which is probably not what you want.</p> <p>With bidirectonal mapping it would look like this</p> <pre><code>@ManyToOne @JoinColumn(name = "parent_folder_id") protected Folder parentFolder; @OneToMany(mappedBy = "parentFolder", cascade = {CascadeType.ALL}) protected Set<Folder> children; </code></pre> <p>Without this, you should implement the cascade yourself. This will get complicated for more complicated folder structures (when checking the children of a folder before deletion, you'll have to check grandchildren... and so on). It could be done with one recursive method, but definitely a lot more work than with bidirectional relation.</p> <pre><code>/* pseudo code */ public void deleteFolder(Folder f) { Set<Folder> children = session.createQuery("from Folder where parentFolder.id = :parentId").setParameter("parentId", f.getId()).list(); for each child { deleteFolder(child) } session.delete(f) } </code></pre> |
31,297,501 | 0 | Swift! Create a segue only if the button is pressed! Tab Bar Controller <p>Alright, so for about a few days now, I'm stuck on this problem. I have a Tab Bar Controller and I have a View Controller where users of the app either create of enter their passwords, lets call it the <strong>"Pass View"</strong>. </p> <p>The passwords are created using keychain method provided by Apple. Ideally I would want the app to first and always pop up the <strong>"Pass View"</strong> and then if users enter their password correctly then the app segues to the Tab Bar Controller. </p> <p>Now I can associate an action segue from my enter/create button to the Tab Bar Controller, but if I do that then even if the users enter their passwords incorrectly the segue will still happen.. </p> <p><strong>Link to Image 1 Showing StoryBoard: <a href="https://www.flickr.com/photos/124829893@N03/18903848374/in/dateposted-public/" rel="nofollow">StoryBoardImage</a></strong></p> <p><strong>Link to Image 2 Showing files: <a href="https://www.flickr.com/photos/124829893@N03/19338423370/in/dateposted-public/" rel="nofollow">files in my project</a></strong></p> <p>Here is my code: </p> <pre><code>import UIKit class LoginPassViewController: UIViewController { let MyKeychainWrapper = KeychainWrapper() let createLoginButtonTag = 0 let loginButtonTag = 1 @IBOutlet weak var passTextField: UITextField! @IBOutlet weak var loginButton: UIButton! override func viewDidLoad() { // 1. let hasLogin = NSUserDefaults.standardUserDefaults().boolForKey("hasLoginKey") // 2. if hasLogin { loginButton.setTitle("Login", forState: UIControlState.Normal) loginButton.tag = loginButtonTag loginButton.hidden = false } else { loginButton.setTitle("Create", forState: UIControlState.Normal) loginButton.tag = createLoginButtonTag loginButton.hidden = false } // Do any additional setup after loading the view. } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } @IBAction func enterApp(sender: AnyObject) { // 1. if passTextField.text == "" { var alert = UIAlertView() alert.title = "You must enter a password!" alert.addButtonWithTitle("Oops!") alert.show() return } // 2. passTextField.resignFirstResponder() // 3. if sender.tag == createLoginButtonTag { // 4. let hasLoginKey = NSUserDefaults.standardUserDefaults().boolForKey("hasLoginKey") // 5. MyKeychainWrapper.mySetObject(passTextField.text, forKey:kSecValueData) MyKeychainWrapper.writeToKeychain() NSUserDefaults.standardUserDefaults().setBool(true, forKey: "hasLoginKey") NSUserDefaults.standardUserDefaults().synchronize() loginButton.tag = loginButtonTag } else if sender.tag == loginButtonTag { // 6. if checkLogin(passTextField.text) { // THIS IS WHERE IF THE USER PASSWORD IS CORRECT THEN THE VIEW SHOULD SWITCH // TO THE TAB BAR CONTROLLER. } else { // 7. var alert = UIAlertView() alert.title = "Login Problem" alert.message = "Wrong username or password." alert.addButtonWithTitle("Foiled Again!") alert.show() } } } func checkLogin(password: String ) -> Bool { if password == MyKeychainWrapper.myObjectForKey("v_Data") as? String { return true } else { return false } } } </code></pre> |
17,561,216 | 0 | Strip everything in string before the second “-” character that occurs? <p>I found solution for oposite:"Strip everything in string after the second “-” character that occurs?"</p> <pre><code>$newstr = substr($str, 0, strpos($str, '-', strpos($str, '-')+2)); </code></pre> <p>Now, I need solution for "BEFORE" the second "-":</p> <pre><code>Today is - Friday and tomorrow is - Saturday </code></pre> <p>To be:</p> <pre><code>Saturday </code></pre> <p>I would like to do this with strstr(), if it is possible.</p> <p>I tried something like:</p> <pre><code>$newstr = substr($str, 0, strstr($str, '-', strstr($str, '-')+2)); </code></pre> <p>Didn't worked.</p> |
8,676,801 | 0 | <p>Try this...</p> <pre><code>String s3 = s1 + s2 if(s3.equals("onetwo")) { ... </code></pre> <p><code>==</code> compares if they refer to the same object, and the result of <code>s1+s2</code> isn't in this case, and the <code>.equals()</code> method on string compares that the values are the same. In general, you only use <code>==</code> for primitive value comparisons. Although you can do it for objects iff you intend to check to make sure that two references point to the same object.</p> |
13,493,713 | 0 | <p><strong>Use</strong>:</p> <pre><code>/*/Result/*/Flight [count(*/*)=count(/*/Request/*/FlightId) and not(*/*/FlightNumber[not(. = /*/Request/*/FlightId)]) ] </code></pre> <p><strong>Here is the complete transformation:</strong></p> <pre><code><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output omit-xml-declaration="yes" indent="yes"/> <xsl:strip-space elements="*"/> <xsl:template match="/"> <xsl:variable name="vHits" select= "/*/Result/*/Flight [count(*/*)=count(/*/Request/*/FlightId) and not(*/*/FlightNumber[not(. = /*/Request/*/FlightId)]) ]"/> <FilterResult> <ResultCount><xsl:value-of select="count($vHits)"/></ResultCount> <Response> <xsl:copy-of select="$vHits"/> </Response> </FilterResult> </xsl:template> </xsl:stylesheet> </code></pre> <p><strong>When this transformation is applied on the provided XML document:</strong></p> <pre><code><Response> <Request> <RequestedFlights> <FlightId>2121</FlightId> <FlightId>2584</FlightId> </RequestedFlights> </Request> <Result> <Flights> <Flight> <Segments> <Segment> <Id>1</Id> <FlightNumber>2121</FlightNumber> </Segment> <Segment> <Id>2</Id> <FlightNumber>1121</FlightNumber> </Segment> </Segments> </Flight> <Flight> <Segments> <Segment> <Id>3</Id> <FlightNumber>2121</FlightNumber> </Segment> <Segment> <Id>4</Id> <FlightNumber>2584</FlightNumber> </Segment> </Segments> </Flight> <Flight> <Segments> <Segment> <Id>5</Id> <FlightNumber>2121</FlightNumber> </Segment> <Segment> <Id>6</Id> <FlightNumber>2584</FlightNumber> </Segment> <Segment> <Id>7</Id> <FlightNumber>2023</FlightNumber> </Segment> </Segments> </Flight> </Flights> </Result> </Response> </code></pre> <p><strong>the wanted, correct result is produced:</strong></p> <pre><code><FilterResult> <ResultCount>1</ResultCount> <Response> <Flight> <Segments> <Segment> <Id>3</Id> <FlightNumber>2121</FlightNumber> </Segment> <Segment> <Id>4</Id> <FlightNumber>2584</FlightNumber> </Segment> </Segments> </Flight> </Response> </FilterResult> </code></pre> <p><strong>Explanation</strong>:</p> <p>Proper use of the <strong><a href="http://en.wikipedia.org/wiki/Double_negation" rel="nofollow">double negation</a></strong> law.</p> |
11,366,593 | 0 | How can I test the Visual C++ Redistributable? <p>Our company is preparing for a company-wide upgrade to Windows 7 64-bit. The people running the upgrade project have assembled a list of applications that need to be installed on every machine, and myself and my colleagues are being tasked with testing all these apps in the new OS.</p> <p>We have three different versions of the Visual C++ Redistributable on our master list of applications, but nobody seems to know exactly which applications uses these libraries, and they want us to test them. Merely verifying that they're installed is not enough.</p> <p>I doubt there is any good way to see if an application references the visual c++ redist, but if there is let me know. I was wondering if there was any kind of visual c++ "test app" available that would let me execute some code from the libraries. Or maybe I would have to develop something, but I'm a C# guy so I'm not too familiar. If this proves to be too difficult or if I can come up with a good explanation of why we don't need to do this, then perhaps I can convince the project managers this isn't necessary.</p> <p>So... can anybody suggest a good way I could <em>test</em> the Visual C++ Redistributable?</p> |
32,405,867 | 0 | <p>Here's the answer, a simple sub-select:</p> <p>declare @t1 table (Id int not null primary key) declare @t2 table (Id int not null primary key, Table1Id int not null, SomeValue int not null)</p> <p>INSERT @t1 VALUES (100), (101), (102), (103), (104), (105), (106), (107), (108), (109), (110), (111), (112), (113)</p> <p>INSERT @t2 VALUES (1,100,1),(5,100,2),(9,100,4),(10,100,5), (2,101,1),(6,101,2),(11,101,4),(13,101,7), (3,102,1),(7,102,2),(12,102,4),(14,102,6), (15,103,1),(17,103,2), (16,104,1),(18,104,2),(19,104,4), (20,105,1),(25,105,2),(27,105,4),(28,105,7), (21,106,1), (22,107,1),(29,107,2), (23,108,1),(30,108,2), (31,109,1), (32,110,1),(36,110,2),(40,110,3), (33,111,1),(37,111,2),(44,111,3), (34,112,1),(38,112,2),(43,112,4), (35,113,1),(41,113,2),(42,113,4)</p> <p>select * from ( select Table1Id, max (SomeValue) AS SomeValue from @t2 group by Table1Id ) t where SomeValue = 4</p> |
31,291,447 | 0 | <p>Use <code>addClass()</code> and <code>removeClass()</code> then store the styles in there:</p> <p>CSS</p> <pre><code>.my-checkbox-class { // styles } </code></pre> <p>JQuery</p> <pre><code>$('.single-checkbox:checked').addClass('my-checkbox-class'); $('.single-checkbox:checked').removeClass('my-checkbox-class'); </code></pre> <p>You can add any styles to any element like this and remove them too. It's a good, clean solution that makes your css re-usable and keeps the style and functionality separate.</p> <p>Note that the add and remove class methods don't need a <code>.</code> to denote a class, this can be a gotcha</p> |
28,298,844 | 0 | How to change bitmap height and width programmatically in android? <p>I want to resize the bitmap height & width into same as the user device width & height.So please help me if u know the code.Thank You !</p> <p>This is my code:</p> <pre><code> Bitmap bm = BitmapFactory.decodeResource(getResources(),R.drawable.nature); DisplayMetrics metrics = getApplicationContext().getResources().getDisplayMetrics(); width = metrics.widthPixels; height=metrics.heightPixels; </code></pre> <p>But it was not working</p> |
8,255,816 | 0 | <p><a href="http://www-01.ibm.com/software/awdtools/xlcpp/" rel="nofollow">IBM's xlC++</a> compiler has a basic <a href="https://www.ibm.com/developerworks/mydeveloperworks/blogs/5894415f-be62-4bc0-81c5-3956e82276f3/entry/xlc_compiler_s_c_11_support50?lang=en" rel="nofollow">C++11 feature support page</a>.</p> |
34,396,674 | 0 | <p>Unfortunately, this seems to be a task, where you cannot get away using separate queries. However, I would use <code>union</code> to combine the results of the queries, rather than joins, or subqueries in the select list, or separate queries.</p> <ol> <li>With union there is only 1 roundtrip between the client and the database</li> <li>If a query in the union does not return any rows, then it will not be in the resultset (see requirements in OP). Pls note, that the <code>type</code> field's value will tell you the type of the url returned.</li> </ol> <p>Sample code:</p> <pre><code>SELECT article_url, 'review' as type FROM articles WHERE articles_game_id = 233 AND artikel_sort = 'review' AND article_online = 1 ORDER BY article_datetime DESC LIMIT 1 UNION ALL SELECT article_url, 'preview' FROM articles WHERE articles_game_id = 233 AND artikel_sort = 'preview' AND article_online = 1 ORDER BY article_datetime DESC LIMIT 1 UNION ALL SELECT trailer_url, 'video review' FROM trailers WHERE trailer_game_id = 233 AND trailer_sort = 'video review' AND trailer_online = 1 ORDER BY trailer_datetime DESC LIMIT 1 UNION ALL SELECT trailer_url, 'video preview' FROM trailers WHERE trailer_game_id = 233 AND trailer_sort = 'video preview' AND trailer_online = 1 ORDER BY trailer_datetime DESC LIMIT 1 </code></pre> <p>An alternative solution could be to use a subquery to get the max date (or id, if the article / trailer ids are auto_increment fields). However, you would need 2 subqueries (1 or article, 1 trailers), then 2 queries in which the subqueries are joined back to article / trailer tables, and a 5th one top combine them into 1 query, so I will not describe this approach.</p> |
20,721,399 | 0 | Group by a Substring mysql not working <p>I want to use GROUP BY clause on a query in case IFF it's column TYPE contains [Sale], for that purpose I put the query below,</p> <pre><code>SELECT PAYABLE_TYPE AS TYPE, CASE WHEN (SUBSTRING(PAYABLE_TYPE, 1,6) = '[Sale]') THEN PAYABLE_TYPE END AS T, PAYABLE_PARTICULAR AS PARTICULAR, DEBIT, CREDIT, PAYABLE_DATE AS DATE FROM PAYABLES WHERE PAYABLE_DATE >= $P{DateStart} && PAYABLE_DATE <= $P{DateEnd} GROUP BY T </code></pre> <p>But it only returns me 2 lines at all, what I have is in the image below and the GREEN boxed line shows what I need to group. One more thing I need that grouped total to be sum up as well there. Thanks</p> <p><img src="https://i.stack.imgur.com/UnMOp.png" alt="enter image description here"></p> |
38,904,343 | 0 | <p>You need <code>@temp = 0</code> at the beginning of each block of code.</p> <p>After executing your code with the modification</p> <pre><code>list = [{"name"=>"Germany", "id"=>1}, {"name"=>"USA", "id"=>2}, {"name"=>"USA", "id"=>3}, {"name"=>"France", "id"=>4}, {"name"=>"France", "id"=>5}, {"name"=>"France", "id"=>6}] </code></pre> <p>We can then obtain your desired result as follows.</p> <pre><code>list.group_by { |h| h["name"] }.values.flat_map do |a| a.map.with_index(1) do |h,i| base = h["name"] h.merge("name"=>base +" #{i}") end end #=> [{"name"=>"Germany 1", "id"=>1}, # {"name"=>"USA 1", "id"=>2}, # {"name"=>"USA 2", "id"=>3}, # {"name"=>"France 1", "id"=>4}, # {"name"=>"France 2", "id"=>5}, # {"name"=>"France 3", "id"=>6}] </code></pre> <p>Note</p> <pre><code>arr = list.group_by { |h| h["name"] }.values #=> [[{"name"=>"Germany", "id"=>1}], # [{"name"=>"USA", "id"=>2}, {"name"=>"USA", "id"=>3}], # [{"name"=>"France", "id"=>4}, {"name"=>"France", "id"=>5}, # {"name"=>"France", "id"=>6}]] </code></pre> <p>Had I used <a href="http://ruby-doc.org/core-2.3.0/Enumerable.html#method-i-map" rel="nofollow">Enumerable#map</a> rather than <a href="http://ruby-doc.org/core-2.3.0/Enumerable.html#method-i-flat_map" rel="nofollow">Enumerable#flat_map</a>, the result would have been</p> <pre><code> [[{"name"=>"Germany 1", "id"=>1}], [{"name"=>"USA 1", "id"=>2}, {"name"=>"USA 2", "id"=>3}], [{"name"=>"France 1", "id"=>4}, {"name"=>"France 2", "id"=>5}, {"name"=>"France 3", "id"=>6}]] </code></pre> <p>Using <code>flat_map</code> is equivalent to inserting a splat in front of each of this array's elements.</p> <pre><code> [*[{"name"=>"Germany 1", "id"=>1}], *[{"name"=>"USA 1", "id"=>2}, {"name"=>"USA 2", "id"=>3}], *[{"name"=>"France 1", "id"=>4}, {"name"=>"France 2", "id"=>5}, {"name"=>"France 3", "id"=>6}]] </code></pre> |
2,297,810 | 0 | <p>You would expose it as an <code>IEnumerable<T></code>, but not just returning it directly:</p> <pre><code>public IEnumerable<object> Objects { get { return obs.Select(o => o); } } </code></pre> <p>Since you indicated you only wanted <em>traversal</em> of the list, this is all you need.</p> <p>One might be tempted to return the <code>List<object></code> directly as an <code>IEnumerable<T></code>, but that would be incorrect, because one could easily inspect the <code>IEnumerable<T></code> at runtime, determine it is a <code>List<T></code> and cast it to such and mutate the contents.</p> <p>However, by using <code>return obs.Select(o => o);</code> you end up returning an iterator over the <code>List<object></code>, not a direct reference to the <code>List<object></code> itself.</p> <p>Some might think that this qualifies as a "degenerate expression" according to section 7.15.2.5 of the C# Language Specification. However, <a href="http://blogs.msdn.com/ericlippert/archive/2008/05/12/trivial-projections-are-usually-optimized-away.aspx" rel="nofollow noreferrer">Eric Lippert goes into detail as to why this projection isn't optimized away</a>.</p> <p>Also, people are suggesting that one use the <a href="http://msdn.microsoft.com/en-us/library/bb335435.aspx" rel="nofollow noreferrer">AsEnumerable extension method</a>. This is incorrect, as the reference identity of the original list is maintained. From the Remarks section of the documentation:</p> <blockquote>The <code>AsEnumerable<TSource>(IEnumerable<TSource>)</code> method has no effect other than to change the compile-time type of source from a type that implements <code>IEnumerable<T></code> to <code>IEnumerable<T></code> itself.</blockquote> <p>In other words, all it does is cast the source parameter to <code>IEnumerable<T></code>, which doesn't help protect referencial integrity, the original reference is returned and can be cast back to <code>List<T></code> and be used to mutate the list.</p> |
29,263,645 | 0 | MS Access shared on SharePoint with multiple users and linked tables <p>I have an Access Database (2010) that uses a linked table from a SharePoint (2013) list of names. It does not edit the information on the SharePoint list, but rather pulls the names from SP to populate the name field in the new records in Access. The user then can add in the additional information stored in the Access DB (in this case, it is somewhat of a "report card" form that allows the teacher to input student's grades).</p> <p>This DB is stored on a SharePoint site. When teachers try to use it, they are prompted to save the DB locally and then "Save to SharePoint" when they are done. The problem is that if two teachers are using it at the same time and one saves to SP after the other, the latter teacher will overwrite all the changes that the former teacher made.</p> <p>I've done some research and it seems that "splitting" the Access DB might work to allow teachers to simultaneously edit (only a maximum of 6 users will be editing at the same time). But I have not tried this method before. Will splitting into front-end and back-end affect the linked table of names that is taken from a SharePoint list? What is the best way to allow simultaneous edits?</p> |
36,227,521 | 0 | <p>There is no <strong>Children</strong> property on Parent, there is a Child property. But the Binding attribute says Children. Change the attribute to...</p> <pre><code>public ActionResult Edit([Bind(Include="ParentId,ZmiennaParent1, Child")] Parent parent) </code></pre> |
24,717,590 | 0 | <p>This removes the list of services:</p> <pre><code>tasklist /v|find /v /i " services " </code></pre> |
6,430,142 | 0 | <p>UNIX timestamps are in seconds. Multiply by 1000.</p> |
29,805,037 | 0 | <p>There are couple of things you could do easily. First point is</p> <ul> <li><p>you could use <strong>Positive integer field</strong> in Django, if you want only positive integer in this model</p></li> <li><p>if you want to do the custom way, please raise an exception or use the assert statement for it. Then in the test case could check whether exception or assertion Error is raised </p></li> </ul> |
7,410,046 | 0 | <p>Check this link: <a href="http://eclipse.dzone.com/news/create-new-eclipse-workspace-w" rel="nofollow">Create New Eclipse Workspace - With All Your Old Settings</a> or this stackoverflow <a href="http://stackoverflow.com/questions/2988653/how-to-save-settings-of-eclipse">post</a></p> |
993,380 | 0 | <p>You only have to use this-> if you have a symbol with the same name in two potential namespaces. Take for example:</p> <pre><code>class A { public: void setMyVar(int); void doStuff(); private: int myVar; } void A::setMyVar(int myVar) { this->myVar = myVar; // <- Interesting point in the code } void A::doStuff() { int myVar = ::calculateSomething(); this->myVar = myVar; // <- Interesting point in the code } </code></pre> <p>At the interesting points in the code, referring to myVar will refer to the local (parameter or variable) myVar. In order to access the class member also called myVar, you need to explicitly use "this->".</p> |
2,261,911 | 0 | I'm trying to read data from my SQL Server Compact database, but I keep getting the same error <p>I'm querying a <a href="http://en.wikipedia.org/wiki/SQL_Server_Compact" rel="nofollow noreferrer">SQL Server Compact</a> database with "SELECT * FROM User", and I get an error parsing the query:</p> <blockquote> <p>Token line number = 1,Token line offset = 15,Token in error = User</p> </blockquote> <p>How do I fix this?</p> <p>The code I'm using is this:</p> <pre><code>public static List<User> GetUsers() { List<User> users = new List<User>(); using (SqlCeConnection con = new SqlCeConnection(Properties.Settings.Default.DatabaseConnection)) { con.Open(); using (SqlCeCommand command = new SqlCeCommand("SELECT * FROM " + TABLE, con)) { SqlCeDataReader reader = command.ExecuteReader(); while (reader.Read()) { int id = reader.GetInt32(0); string user = reader.GetString(1); User usr = null; using (MemoryStream s = new MemoryStream()) { NetDataContractSerializer serializer = new NetDataContractSerializer(); s.Write(ASCIIEncoding.ASCII.GetBytes(user.ToCharArray()), 0, user.Length); s.Position = 0; usr = (User)serializer.Deserialize(s); } } } } return users; } </code></pre> <p>Note: I also get this error trying to add information.</p> |
15,840,152 | 0 | <p>The corners.png file is definitely required. Here is the asset from that example site: <a href="http://search.missouristate.edu/map/mobile/examples/corners.png" rel="nofollow">http://search.missouristate.edu/map/mobile/examples/corners.png</a></p> |
29,672,440 | 0 | <pre><code>$string = "<strong>Blabla1</strong> Blaabla2<br /> Blaabla3 <strong>Blaabla4</strong> Blaabla5 Blaabla6<br /><br /> Blaabla7 <span style='color:#B22222;'>Blaabla8</span> Blaabla9"; $matches = preg_split('/(<br.*?>|<span.*>)+\K|\s/sim', $string, null, PREG_SPLIT_NO_EMPTY ); var_dump($matches); /* array(9) { [0]=> string(24) "<strong>Blabla1</strong>" [1]=> string(14) "Blaabla2<br />" [2]=> string(8) "Blaabla3" [3]=> string(25) "<strong>Blaabla4</strong>" [4]=> string(8) "Blaabla5" [5]=> string(20) "Blaabla6<br /><br />" [6]=> string(8) "Blaabla7" [7]=> string(44) "<span style='color:#B22222;'>Blaabla8</span>" [8]=> string(8) "Blaabla9" } */ </code></pre> <p><a href="http://ideone.com/q8xrvd" rel="nofollow">DEMO</a></p> |
22,347,894 | 0 | <p>XML is just a structure that represents Data. DTD is the definition of you xml structure. Non of these are generating ids for you. </p> <p>However XSLT's generate-id() will be suitable for you. You can learn more from w3c <a href="http://www.w3schools.com/xsl/func_generateid.asp" rel="nofollow">http://www.w3schools.com/xsl/func_generateid.asp</a></p> |
2,764,481 | 0 | <p>By calling both the _breadcrumb method with x.father and assigning x = x.father in the beginning of the while loop you jump over one father. Try exchanging </p> <pre><code>self.crumb = self._breadcrumb(father) </code></pre> <p>with</p> <pre><code>self.crumb = self._breadcrumb(self) </code></pre> <p>By defining _breadcrumb within the model class you can clean it up like this:</p> <pre><code>class GeoObject(models.Model): name = models.CharField('Name',max_length=30) father = models.ForeignKey('self', related_name = 'geo_objects') crumb = PickledObjectField() # more attributes... def _breadcrumb(self): ... return breadcrumb def save(self,*args, **kwargs): self.crumb = self._breadcrumb() super(GeoObject, self).save(*args,**kwargs) </code></pre> <p>For more complex hierachies I recomend <a href="https://tabo.pe/projects/django-treebeard/docs/tip/" rel="nofollow noreferrer">django-treebeard</a> </p> |
32,924,740 | 0 | Found this strange behaviour of Handlers in android <p>I just wrote a code which adds several views, each using a handler. These are added using a for-loop. These add just correctly. Then I tried to add a button AFTER the for loop without using handler. This time the button was shown on the top of the layout i.e BEFORE the items added in for loop. This does not happen if I add the button using handler.</p> <p>So, if I use the following code with a handler after the loop then the button is added on the bottom of the layout:</p> <pre><code> private void fillFeedWithData(final List<ParseObject> feedObjectList) { LayoutInflater inflaterOfFeedItem = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE); for (int i = 0; i < feedObjectList.size(); i++) { final String jokeTitle = feedObjectList.get(i).getString("content"); final View cvFeedItem = inflaterOfFeedItem.inflate(R.layout.feed_item_theme_card, null); final TextView tvJoke = (TextView) cvFeedItem.findViewById(R.id.tvFeedJoke); Handler h2 = new Handler(); Runnable update2 = new Runnable() { public void run() { tvJoke.setText(jokeTitle); llFragmentFeedParent.addView(cvFeedItem); // llFragmentFeedParent is acquired in OnCreate() method } }; h2.post(update2); } final Button bNext = new Button(this); bNext.setText("Next >"); bNext.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)); Handler h3 = new Handler(); Runnable update3 = new Runnable() { public void run() { llFragmentFeedParent.addView(bNext); } }; h3.post(update3); } </code></pre> <p>If I used the following code after the loop then the button is added on the top of the layout:</p> <pre><code> Button bNext = new Button(this); bNext.setText("Next >"); bNext.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)); llFragmentFeedParent.addView(bNext); </code></pre> <p>So now my app is working as intended with the handler but I am concerned as to why this was happening. I think the handlers are mixing up the timings/sequence of execution? If I keep using the logic, is it possible that the button might, in a slow mobile phone, appear on top or even in between the items added in the loop?</p> |
23,424,215 | 0 | <p>No need for kooking further. <strong>indexOf</strong> does the trick. For one element:</p> <pre><code>"test" indexOf "es" res4: Int = 1 </code></pre> <p>For more elements:</p> <pre><code>scala> List("beer" , "root beer", "bavarian beer" , "a beer bong" ) map (_ indexOf "beer") res6: List[Int] = List(0, 5, 9, 2) </code></pre> <p>If you want to use something else it would be best to stick to some standard implementations widely used. For example <em>Apache Commons</em> <a href="http://commons.apache.org/proper/commons-lang/" rel="nofollow">http://commons.apache.org/proper/commons-lang/</a> has a good StringUtils package which contains string matching algorithms.</p> <p>For Boyer-Moore there are myriads of implementations. On Wikipedia you even find a Java implementation: <a href="http://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string_search_algorithm" rel="nofollow">http://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string_search_algorithm</a></p> |
38,234,610 | 0 | How to inject ngRoute into Jasmine / Karma AngularJS unit test? <p>I'm trying to get a basic unit test example working. It all works fine with this app.js</p> <pre><code>var whapp = angular.module('whapp', []) .filter('reverse',[function(){ return function(string){ return string.split('').reverse().join(''); } }]); </code></pre> <p>and this spec.js</p> <pre><code>describe('Filters', function(){ //describe your object type beforeEach(module('whapp')); //load module describe('reverse',function(){ //describe your app name var reverse, rootScope; beforeEach(inject(function($filter){ //initialize your filter reverse = $filter('reverse',{}); })); it('Should reverse a string', function(){ //write tests expect(reverse('rahil')).toBe('lihar'); //pass }); }); }); </code></pre> <p>with this karma files config</p> <pre><code>files: [ 'node_modules/angular/angular.js', 'node_modules/angular-mocks/angular-mocks.js', 'node_modules/angular-mocks/angular-route/angular-route.js', 'node_modules/angular-mocks/angular-ui-router/release/angular-ui-router.js', 'app/js/*.js', 'tests/*.js' ] </code></pre> <p>The problem occurs when I try to inject ngRoute into my module in app.js like so</p> <pre><code>var whapp = angular.module('whapp', ['ngRoute']) .filter('reverse',[function(){ return function(string){ return string.split('').reverse().join(''); } }]); </code></pre> <p>In which case I get the following error in karma [UPDATE: this error occurs even if I don't load the angular-mock.js library into karma as shown above]</p> <pre><code>TypeError: undefined is not a constructor (evaluating 'reverse('rahil')') in tests/spec.js (line 9) </code></pre> <p>So... how do I inject ngRoute into spec.js correctly? I've tried a variety of things, none of which worked.</p> |
28,458,746 | 0 | How to get all records from a nested activerecord collection <p>I have an ActiveRecord query that i need help with.</p> <p>Lets say we have a user and he has multiple libraries. In each library, there are many collections. In each collection, he has many books.</p> <p>How do I get a list of all his books?</p> <p>I know I can do libraries.each |library| library.collections.each do |collections| collection.books.each do |book| books << book.title</p> <p>but I'm hoping for a simpler methodology then this.</p> |
9,307,528 | 0 | <p>This is very normal, since each time you are closing the form and opening it again you are having a new instance from the form MyPropsX, so the best way would be to save your properties in any kind of a database (sql, access, textfiles,...)</p> |
32,939,058 | 0 | <p>Are you using the SQL Server Management Studio? You can have many databases on one connection. To create a new database, simply right click on the "Databases" object and select "New Database" The new database will not interfere with the existing one.</p> |
11,267,639 | 0 | <p>There's no official or centralized django-html5-boilerplate package, but based on your problem, I'm guessing you're using <a href="https://github.com/mike360/django-html5-boilerplate" rel="nofollow">the one created by mike360 on github</a></p> <p>If that's the case, in <a href="https://github.com/mike360/django-html5-boilerplate/blob/master/projectname/templates/base.html" rel="nofollow">base.html</a>, you'll find there the following bit of code:</p> <pre><code>{% if debug %}{% include 'includes/debug.html' %}{% endif %} </code></pre> <p>Setting <code>DEBUG=False</code> will make it go away (which you'll <em>have</em> to do in production, so you'll still need to solve that staticfiles problem), but if you simply don't want to see it during development, remove it from the template.</p> |
40,861,684 | 0 | <p>Assuming the strings are all in column A:</p> <p>As you will only want to split where there are 2 or more characters, just to start you off. In <strong>Column C</strong> is the formula (this is only in column C):</p> <pre><code>=IF(LEN(A1)>1,CONCATENATE(LEFT($A1,1),"_",MID($A1,2,1),"_"),"") </code></pre> <p>In <strong>Column D</strong> and dragged across is the formula:</p> <pre><code>=IF(LEN($A1)>COLUMN(C:C),CONCATENATE(C1,MID($A1,COLUMN(C:C),1),"_"),IF(LEN($A1)=COLUMN(C:C),CONCATENATE(C1,RIGHT($A1,1)),"")) </code></pre> <p>That will build the string for you but the results will be all over the place so in <strong>Column B</strong> I have the formula:</p> <pre><code>=INDEX(1:1,1,LEN(A1)+1) </code></pre> <p>To gather all the results in to one column for you. Feel free to ask how any of this works, I hope this helps.</p> <p><a href="https://i.stack.imgur.com/HEMFS.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/HEMFS.png" alt="Example"></a></p> |
1,812,405 | 0 | <p>A VM is a big task to consider. Have you considered basing your VM on something like <a href="http://llvm.org/" rel="nofollow noreferrer">LLVM</a>? </p> <p>LLVM will provide a good base to start from and there are plenty of <a href="http://llvm.org/ProjectsWithLLVM/" rel="nofollow noreferrer">example projects</a> which you can use for understanding.</p> |
25,045,902 | 0 | <p>You can't set the <code>window.screen</code> values in the <code>LoadStarted</code> event, but you can in the <code>Intialized</code> event. So, instead, the code would look like this:</p> <pre><code>tab.onInitialized = function () { tab.evaluate(function () { window.screen = { width: 1920, height: 1080 }; }); }; </code></pre> |
16,637,340 | 0 | javascript: create range from cursor position at time a to cursor position at time b <p>I get the cursor position at time a. Then I get the cursor position at time b. I want to make a range from the cursor position at time a to the cursor position at time b. Time a and b are start and end of ctr-v (paste).</p> <p>I get the cursor position like so - or rather a range at the cursor position.</p> <pre><code>sel = window.getSelection(); range_time_a = sel.getRangeAt(0).collapse(true); </code></pre> <p>But, how do I use range_time_a and range_time_b to create a new range that starts at range_time_a and ends at range_time_b? </p> <p>I have seen code to get the element with the cursor and to get the offset within that element. I could use that for setStart() and setEnd, but it seems like there should be an easier way since I've already got two ranges.</p> |
23,845,436 | 0 | <p>On Button Click You can use one of the following :</p> <ul> <li><pre><code>editText.setTextColor(Color.RED); </code></pre></li> <li><pre><code>editText.setTextColor(Color.parseColor("#FFFFFF")); </code></pre></li> <li><pre><code>editText.setTextColor(Color.rgb(200,0,0)); </code></pre></li> <li><pre><code>editText.setTextColor(Color.argb(0,200,0,0)); </code></pre></li> <li><pre><code>editText.setTextColor(getResources().getColor(R.color.editTextColor)); </code></pre></li> <li><pre><code>editText.setTextColor(0xAARRGGBB); </code></pre></li> </ul> |
36,592,670 | 0 | <p>You can also try this pure CSS method:</p> <pre><code>font-size: calc(100% - 0.3em); </code></pre> |
18,552,693 | 0 | <p>No, it checks everything in database. Cookies would be too dangerous (users can modify their rights) </p> <p>You can cache data with Cache class in Laravel 4 to compensate too many queries to your database. </p> |
37,481,603 | 0 | <p>I solve it running as administrator cmd. Cleaning the cache <code> npm cache clean -f </code> And then try to install the package again</p> |
36,593,715 | 0 | <p>From <a href="https://bitbucket.org/anthony_tuininga/cx_freeze/issues/32/cant-compile-cx_freeze-in-ubuntu-1304">cx_freeze/issues</a></p> <h1>Download</h1> <p>You need to <a href="https://pypi.python.org/pypi?:action=display&name=cx_Freeze&version=4.3.4">download the source code</a></p> <h1>For python 3.3 and 3.4:</h1> <ol> <li><p><code>sudo apt-get install python3-dev</code></p></li> <li><p><code>sudo apt-get install libssl-dev</code></p></li> <li><p>Open setup.py and change the line</p> <p><code>if not vars.get("Py_ENABLE_SHARED", 0):</code></p> <p>to</p> <p><code>if True:</code></p></li> <li><p><code>python3 setup.py build</code></p></li> <li><code>sudo python3 setup.py install</code></li> </ol> <h1>For python 2.7:</h1> <ol> <li><p><code>sudo apt-get install python-dev</code></p></li> <li><p><code>sudo apt-get install libssl-dev</code></p></li> <li><p>Open setup.py and change the line</p> <p><code>if not vars.get("Py_ENABLE_SHARED", 0):</code></p> <p>to</p> <p><code>if True:</code></p></li> <li><p><code>python setup.py build</code></p></li> <li><code>sudo python setup.py install</code></li> </ol> |
11,209,093 | 0 | <p>This is a typical reason why accessors/properties are good to avoid if possible. Try to get rid of exposing the entity's "raw" data and put the logic inside the entity itself - then you have your null check in one place.</p> <pre><code>txtRequiredDate.setText(todoEntity.formattedRequiredDate()) </code></pre> <p>...where you do your null check in the entity method instead (and returning empty string or whatever if null).</p> <p>Whether getters and setters really are evil or not, <a href="http://www.javaworld.com/javaworld/jw-09-2003/jw-0905-toolbox.html" rel="nofollow">old classic article in this subject</a>, is up for debate, but at least having encapsulation in mind when designing entities is a good thing IMO.</p> |
13,888,288 | 0 | <p>The lifetime of an automatic object ends at the end of the block where it is declared.</p> <p>Accessing an object outside of its lifetime is undefined behavior in C.</p> <blockquote> <p>(C99, 6.2.4p2) "If an object is referred to outside of its lifetime, the behavior is undefined. The value of a pointer becomes indeterminate when the object it points to reaches the end of its lifetime."</p> </blockquote> |
32,653,879 | 0 | <p>From: <a href="http://stackoverflow.com/questions/13581473/why-does-the-objectstatemanager-property-not-exist-in-my-db-context">Why does the ObjectStateManager property not exist in my db context?</a> </p> <pre><code>var manager = ((IObjectContextAdapter)db).ObjectContext.ObjectStateManager; </code></pre> |
8,829,690 | 0 | Rendering Issues with DirectShow and USB Video Sources <p>We are trying to get DirectShow work with USB video capture devices like <a href="http://www.mygica.com/pa/igrabber.asp" rel="nofollow">this</a>. The code simply adds the capture source's filter (capFilter) in the capture graph and then connects it to VMR9 renderer already added to the graph.</p> <pre><code>captureGraph.RenderStream(null, MediaType.Video, capFilter, null, vmr9); </code></pre> <p>At present, everything runs without throwing any exception, but the output is just black. I checked the capture source's output in GraphStudio, but it also resulted in the same black output.</p> <p>I'm able to get the same code to work with all of the USB and HDMI based video capture devices and webcames.</p> |
31,407,689 | 0 | <p>How are you calling this void function? The return paths include setting a <code>ViewBag</code> property with an error message along with modifying the response. It smells of bad design. </p> <p>I'd create a hyperlink that links to a <code>@Url.Action</code> for something like this. Note that you'd need to return a <code>FileContentResult</code> with the data UTF8-encoded rather than modifying the <code>Response</code> directly:</p> <pre><code> public async Task<ActionResult> Test() { WebGrid wd = new WebGrid(source: ViewBag.DynamicResult, canPage: false, canSort: false ); string griddata = wd.GetHtml().ToString(); string attachment = "attachment; filename=NativeQuery" + vartimedate + ".xls"; Response.ClearContent(); Response.AddHeader("content-disposition", attachment); Response.ContentType = "application/excel"; byte[] buffer = System.Text.UTF8Encoding.UTF8.GetBytes(griddata); return File(buffer, "application/octet-stream"); } </code></pre> |
21,494,582 | 0 | <pre><code><select> <option selected="selected" class="Country">Country Name</option> <option value="1">India</option> <option value="2">us</option> </select> </code></pre> <p> </p> <pre><code>.country { display:none; } </style> </code></pre> |
36,579,174 | 0 | Is not reusing created SOAP client object <p>Can anyone tell me why the SOAP client is not being re-used? It keeps getting initialized where it should have been reused from the last call.</p> <p>When I print out the SOAP client object after it was initialized it is there but it is forgotten at the next call.</p> <p>So the php script keeps initializing the connection.</p> <p>My code:</p> <pre><code>class EcoAPI { private $client; public function getClient() { if (empty($this->client)) { echo "<br>initializing..."; $this->initClient(); } return $this->client; } private function initClient() { $settingsOld = Settings::GetOld(); $this->client = new SoapClient("https://api.e-conomic.com/secure/api1/EconomicWebservice.asmx?WSDL", array("trace" => 1, "exceptions" => 1)); $this->client->ConnectWithToken(array('token' => $settingsOld->economic_token_secret, 'appToken' => $settingsOld->economic_token_app)); } } </code></pre> <p>I connect by:</p> <pre><code>$ecoApi = new EcoAPI(); $result = $ecoApi->getClient()->Account_GetVatAccount(array('accountHandle' => (object) array('Number' => (string) $VatAccount))); </code></pre> |
39,680,169 | 0 | Error on VS 2013 for WP Silverlight 8.1 applications <p>I explain my error in this video: <a href="https://www.youtube.com/watch?v=kOXZxmIrYDQ" rel="nofollow">error</a></p> <p>I'm doing this because I tried to ask a question for my error in past and I didn't get any answers. (<a href="http://stackoverflow.com/questions/39592487/error-deployment-of-application-to-device-failed-error-0x80070005-access-is-d">first question</a>)</p> <p>If anyone can help me with this problem please leave a comment because I can't get rid of it. Thanks!</p> |
2,667,345 | 0 | <p>This looks correct.</p> <p>Note that <code>MailMessage</code> does not override <code>ToString</code>, so your logs will simply say <code>[MailMessage] Send cancelled</code>.<br> You might want to use the <code>Subject</code> proeprty (or some other property) instead.</p> |
5,470,994 | 0 | <p>That could be a div the styled during events and as other suggested make it contentEditable. With regards to textarea I have read similar question <a href="http://stackoverflow.com/questions/142527/highlight-text-inside-of-a-textarea">here</a>. Check it if it's what your looking for.</p> |
692,853 | 0 | Which collection for storing unique strings? <p>I'm looking for a collection just like <code>Dictionary(OF Key, Value)</code> but I don't actually need a key and value. Key itself is enough. So something like <code>Collection(Key)</code>. It shouldn't accept duplicate keys.</p> <p>I've looked up couple of collections in .NET Framework but couldn't find what I want. Currently I'm abusing <code>Dictionary(OF String, String)</code> and setting Value as <code>Nothing</code> all the time.</p> <p>Shall I just continue abusing Dictionary(OF T,T)?</p> |
22,166,654 | 0 | Interactive drawing with Fabric.js <p>I am trying to do an interactive drawing using Fabric.js. Now I can draw a rectangle by using mouse. But after I finish drawing the rectangle, I can not select it unless I resize it once by using the left top controller after drawing. I wonder what break the event system.</p> <p>Here is my code: <a href="http://jsfiddle.net/rmFgX/1/" rel="nofollow">http://jsfiddle.net/rmFgX/1/</a></p> <pre><code>var canvas = new fabric.Canvas('canvas'); var rect = new fabric.Rect({ top : 100, left : 100, width : 60, height : 70, fill : 'red' }); canvas.add(rect); canvas.on('mouse:down', function (option) { console.log(option); if (typeof option.target != "undefined") { return; } else { var startY = option.e.offsetY, startX = option.e.offsetX; console.log(startX, startY); var rect2 = new fabric.Rect({ top : startY, left : startX, width : 0, height : 0, fill : 'transparent', stroke: 'red', strokewidth: 4 }); canvas.add(rect2); console.log("added"); canvas.on('mouse:move', function (option) { var e = option.e; rect2.set('width', e.offsetX - startX); rect2.set('height', e.offsetY - startY); rect2.saveState(); }); } }); canvas.on('mouse:up', function () { canvas.off('mouse:move'); }); </code></pre> |
8,425,436 | 0 | <p>This is a bit of a long shot, but you could investigate <a href="http://hg.codeflow.org/genshi2js/summary" rel="nofollow">genshi2js</a>. It claims to compile a subset of genshi templates into javascript functions (similar to Google's soy templates). Unfortunately it seems to be an abandoned project. The main link for it is 404, but I was able to find the mercurial repository at the link above, and it's last activity was in 2008.</p> <p>The best solution to this problem in general is to use the same template system and have both a JS and server-side implementation. (That's also the idea behind Google soy templates--java and js implementations.)</p> |
36,735,588 | 0 | <p>You can achieve this solution very easy by Jquery. the following code very useful to you.</p> <pre><code>$().ready(function() { $('#right_arrow_id').click(function() { return !$('#firstboxid_here option:selected').clone(true).appendTo('#second_box_id_here'); }); </code></pre> <p>for removing options from second box.</p> <pre><code> $('#left_arrow_id_here').click(function() { $('#second_box_id_here option:selected').remove(); }); }); </code></pre> |
18,442,406 | 0 | Android GCM doesnt register device <p>Code:</p> <pre><code>String msg = ""; try { if (gcm == null) { gcm = GoogleCloudMessaging .getInstance(OrfografApplication.this); } String senderId = Constants.GCM_SENDER_ID; GCM_REGISTRATION_ID = gcm.register(Constants.GCM_SENDER_ID); msg = "Device registered, registration id=" + GCM_REGISTRATION_ID; setRegistrationId(OrfografApplication.this, GCM_REGISTRATION_ID); } catch (IOException ex) { Log.w(TAG, ex.getMessage()); msg = "Error :" + ex.getMessage(); } return msg; </code></pre> <p>Exception message <code>SERVICE_NOT_AVAILABLE</code></p> <p>In logcat <code>: W/GCM(749): DIR: /data/data/com.google.android.gms/app_APP /data/data/com.google.android.gsf</code></p> <p>It worked fine, but stoped at 23 of august.</p> |
25,646,249 | 0 | <p>If you are getting special character in <code>kati</code> array then you can use tab library and use</p> <p><code>c:out</code> as</p> <pre><code><c:out value=${yourArrayvalue} escapeXml='true'/> </code></pre> <p>so you will get desired output</p> |
19,765,500 | 0 | <p>Try this:</p> <pre><code>var element = root.GetElementsByTagName("Intelejen")[0]; if (element != null) txt10.Text = element.InnerText </code></pre> <p>Explanation: <code>root.GetElementsByTagName("Intelejen")[0]</code> returns null if no element is found. That is why <code>InnerText</code> throws a null exception</p> |
35,202,071 | 0 | <p>I prefer this approach, which is a bit short and sweet:</p> <pre><code>result <- rasters[!sapply(rasters, is.null)] </code></pre> |
1,595,014 | 0 | How to return a verbatim string from ConfigurationManager.AppSetting["settingname"].ToString() <p>I am using the <code>ConfigurationManager.AppSetting["blah"].ToString()</code> method to get the path to the folder that contains the files I'm needing. But I'm throwing an <code>UnsupportedFormatException</code> on the path when it tries to use <code>Directory.GetFiles(path)</code>.</p> <p>The returning value has the escape characters included and I'm not sure how to keep it from returning the extra characters. This is what the path looks like after it is returned:</p> <p><code>\\\\\\\\C:\\\\folder1\\\\folder2</code></p> |
5,407,453 | 0 | JSF 2 Lifecycle <p>I have this code for BookModel.java:</p> <pre><code>@Entity @Table(name = "BOOK") @NamedNativeQuery(name = "BookModel.findBookTitle", query = "SELECT @rownum:=@rownum+1 'no', m.title, m.author, REPLACE(SUBSTRING_INDEX(m.content, ' ', 30), '<br>', ' '), m.viewed, m.hashid FROM book m, (SELECT @rownum:=0) r WHERE m.title like 'a%'") public class BookModel implements Serializable { @Id @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "MY_SEQ_GEN") @Column(name = "id", unique = true, nullable = false) private Long id; @NotNull @Size(min = 1, max = 255) @Column(name = "title") private String title; @NotNull @Size(min = 1, max = 255) @Column(name = "author") private String author; } </code></pre> <p>And BookService.java for the business layer:</p> <pre><code>@Stateless public class BookService { @SuppressWarnings("unchecked") public List<BookModel> getBook() { Query query = entityManager.createNamedQuery("BookModel.findBookTitle"); List<BookModel> result = query.getResultList(); return result; } } </code></pre> <p>And BookBean.java for the presentation layer:</p> <pre><code>@ManagedBean(name = "BookBean") @RequestScoped public class BookBean implements Serializable { @EJB private BookService bookService; private DataModel<BookModel> book; public DataModel<BookModel> getBook() { return book; } } </code></pre> <p>And the page book.xhtml:</p> <pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:p="http://primefaces.prime.com.tr/ui"> <p:dataTable id="bookList" value="#{BookBean.book}" var="book"> ... </p:dataTable> </html> </code></pre> <p>My question is: How can I restrict the method <strong>getBook()</strong> in <strong>BookBean</strong> to be executed only once instead of six times - presumably for each phase of JSF lifecycle. Has anyone else come across this before? Please help. Have been stuck on this for the last day without any success.</p> |
18,405,597 | 0 | <p><code>int</code> does not round -- it finds the floor (truncates the fractional part).</p> <pre><code>>>> n = 8.92138 >>> '%.42f' % n # what n really is '8.921379999999999199644662439823150634765625' >>> 100000 * n # result is slightly lower than 892138 892137.9999999999 >>> int(100000 * n) # int takes the floor 892137 </code></pre> |
31,027,115 | 0 | <p>When dealing with optionals you should be conditionally unwrapping them with an if statement.</p> <pre><code>var yourOptional: String? if let unwrapped = yourOptional { // Do something with the variable } else { // It was nil } </code></pre> |
11,805,251 | 0 | Add HTML elements dynamically with JavaScript inside DIV with specific ID <p>Ok, poeple, I need your help. I've found some code here on Stackoverflow (can't find that link) which generate HTML code dynamically via JS. Here is code:</p> <pre><code>function create(htmlStr) { var frag = document.createDocumentFragment(), temp = document.createElement('div'); temp.innerHTML = htmlStr; while (temp.firstChild) { frag.appendChild(temp.firstChild); } return frag; } var fragment = create('<div class="someclass"><a href="www.example.com"><p>some text</p></a></div>'); document.body.insertBefore(fragment, document.body.childNodes[0]); </code></pre> <p>This code work's just fine! But generated code apears on top of page, right below <code>body</code> tag. My wish is to generate that code inside empty <code>div</code> with specific <code>id="generate-here"</code>.</p> <p>So output will be:</p> <pre><code><div id="generate-here"> <!-- Here is generated content --> </div> </code></pre> <p>I know that I can't see generated content with "view source". I only need to generate that content just in this particular place with <code>#generate-here</code>. I'm Javascript noob, so if anyone can just rearrange this code that will be perfect. Thanks a lot!</p> <p>P.S. I know how to do this with Jquery, but I need native and pure JavaScript in this case.</p> |
37,041,146 | 0 | <p>You need to use a (derived) table of values. Here is a solution using <code>left join</code> instead of <code>not in</code>:</p> <pre><code>select n.n from (select 1 as n union all select 2 union all select 4 union all select 5 union all select 6 union all select 7 ) n left join tablename t on t.id = n.n where t.id is null; </code></pre> |
21,799,138 | 0 | Django/HTML - what "value", "id" and "name" fields stand for? <p>I've gone through all the official Django tutorial, but I can't seem to figure out a template section of it. I have the following form</p> <pre><code><form action="{% url 'polls:vote' poll.id %}" method="post"> {% csrf_token %} {% for choice in poll.choice_set.all %} <input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}" /> <label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br /> {% endfor %} <input type="submit" value="Vote" /> </form> </code></pre> <p>I understand that this code accepts an input, and returns request.POST dictionary to the polls:vote view. However, in the 4th line of code, I don't understand what's the roll of name, id and value in this whole operation?</p> <p>Could anyone give me a clue on this?</p> |
21,423,604 | 0 | <p>Without reading all to much of your stuff,</p> <pre><code>def check_dict(first, second): for key in first: for keyTwo in second: if type(first[key]) == dict and type(second[keyTwo]) == dict: return check_dict(first[key], second[keyTwo]) if not first[key] == second[keyTwo]: return false </code></pre> <p>Don't have access for a python interpreter at the moment but something along the lines of this should work. It's just a start for an idea but hopefully this is enough information to spark something.</p> |
2,272,689 | 0 | <p>Generally there are several different ways to start service:</p> <ol> <li><a href="http://developer.android.com/reference/android/content/Context.html#startService(android.content.Intent)" rel="nofollow noreferrer">startService()</a> - after that you need to explicitly stop service with stopService()</li> <li>[bindService()][2] - this method allow you to manage the lifecycle of service automaticaly. So you can make service to stop after the last client said unbind();</li> </ol> <p>For details check <a href="http://developer.android.com/guide/topics/fundamentals.html#servlife" rel="nofollow noreferrer">docs</a></p> <p>[2]: <a href="http://developer.android.com/reference/android/content/Context.html#bindService(android.content.Intent" rel="nofollow noreferrer">http://developer.android.com/reference/android/content/Context.html#bindService(android.content.Intent</a>, android.content.ServiceConnection, int)</p> |
8,088,091 | 0 | <p>According to the spec the <code><p></code> element cannot contain <code>"block-level elements (including P itself)"</code>. My guess is Chrome is just trying to be helpful here.</p> <p>Source: <a href="http://www.w3.org/TR/html401/struct/text.html#h-9.3.1" rel="nofollow">http://www.w3.org/TR/html401/struct/text.html#h-9.3.1</a></p> |
1,326,575 | 0 | <p>A module contains IL and many of them are linked together to create an assembly, which is usually housed in a PE like a .exe or a .dll.</p> <p>A PE can contain native (non managed) code as well.</p> <p><a href="http://en.wikipedia.org/wiki/Portable_Executable" rel="nofollow noreferrer">This is a good intro to the concepts.</a></p> |
6,731,527 | 0 | <p>Just <code>return false</code> from the cancel handler.</p> <p>Otherwise the click event bubbles, and since the button is nested inside the <code>li</code> element that opens the form, both elements receive the click.</p> <p>The <em>cancel</em> button tries to <code>hide</code> it and then the <code>li</code> re-opens it..</p> <pre><code> $("#h-nav li#hn-contact #cancel").click(function() { $("#h-nav li#hn-contact").find("div.dd").hide(); return false; }); </code></pre> <p>demo at <a href="http://jsfiddle.net/gaby/5CpeW/2/" rel="nofollow">http://jsfiddle.net/gaby/5CpeW/2/</a></p> <hr> <p>Notice, since <code>id</code> are unique, you do not have to describe the hierarchy in your jquery selectors. Just use a selector from the last <code>id</code> and forward..</p> |
Subsets and Splits