-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathLOVE.csv
We can't make this file beautiful and searchable because it's too large.
4801 lines (4801 loc) · 909 KB
/
LOVE.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
id;label;text
"ASecond1";"YES";"SVG transform on text attribute works excellent! This snippet, for example, will increase your text by 2x at Y-axis."
"ASecond2";"YES";"Excellent! This is exactly what I needed. Thanks!"
"ASecond3";"NO";"Have added a modern solution as of May 2014 in answers below."
"ASecond4";"NO";"Have you tried removing 'preload' attribute? (Afraid I can't be much help otherwise!)"
"ASecond5";"NO";"A smarter, entirely C++-way of doing what you want is using . Especially helps you to accomplish what you want. Please see the excellent about how to use it!"
"ASecond6";"NO";"Ok, I find the reason: device won't answer to simple user (and doesn't matter what permissions did you ask in program manifest). You can directly speak to device only if you are root (or from kernel mode). That means you cannot use devices directly from general applications. Very sad :("
"ASecond7";"YES";"Customise toolbar above iPad keyboard adding a single line textfield aka SMS style I have ipad app with landscape locked view with multiple textfields that I dont want to scroll up but like to enter single line text via a textfield in the toolbar, next to the Done, Next and Previous buttons. I am new to coding and built the app except for this customisation of the toolbar any help would be excellent :)"
"ASecond8";"NO";"What about Signed zero. -0.0 vs Unsigned zero 0.0"
"ASecond9";"NO";"The TIFF file can store various image types: Bilevel (B/W) Grayscale Palette-color RGB full-color The storing of actual image data is done differently for each image type. The is not the scariest I have seen, but it is definitely not trivial!"
"ASecond10";"NO";"I don't understand why (Apple in this moment I'm hating you!), but ALAssetsLibrary in iOS 4.3.4 does not allow fetching in a background thread (I was running a series of in a ). I solved by creating a little wrapper using . EDIT: After a code refactoring and the upgrade to iOS 5, I finally realized that the problem is actually related to how ALAssetsLibrary works, there is no need to use . ."
"ASecond11";"YES";"Excellent tips, thanks! Additionally you can try Clarity"
"ASecond12";"NO";"Try altering the request to include ."
"ASecond13";"NO";"I am unable keep selection after locking model of grid. My code is as below."
"ASecond14";"YES";"Excellent! Works exactly like I wanted. Thanks."
"ASecond15";"NO";"Hi I'm using the chrome inspector (F12) to try and analyze the z-index of a twitter bootstrap popover, and finding it extremely frustrating... Is there a way to freeze the popover (while shown) so that I can assess and modify the associated CSS? Placing a fixed 'hover' on the associated link does not cause the popover to appear."
"ASecond16";"NO";"This is an absolutely horrid wart in the API, but it's never going away."
"ASecond17";"YES";"@VitoshKa Excellent! Wish I could give you another up vote for th update"
"ASecond18";"YES";"I have a long scrolling page, and want to test if an element is 100px from the top, then apply a class elsewhere (until the next element in line is 100px from the top) If I could just get the basic statement I would be ecstatic, anything extra would be a bonus!"
"ASecond19";"NO";"I am working with Eclipse (Indigo) to develop C projects. When I create a new C project in a new workspace, by default the ""Autosave before build"" option is not set. This is extremely frustrating, as autosave is usually the default behavior in other IDE's I worked on. I change some code, build and nothing seems to go as expected - until I remember that the option is not set... Is there a way to make Eclipse open a new workspace with this option set?"
"ASecond20";"YES";"Great time saver and hidden gem. Excellent!"
"ASecond21";"NO";"I have hit this too. No solution as yet. This is very worrying though!"
"ASecond22";"NO";"TRUNCATE_ONLY option on log backup is discontinued in SQL 2008."
"ASecond23";"NO";"Guy's I am at my wit's end. I've got a VPS that I'm mucking around on, so nothing is important, but nginx is being a complete pain. I've deleted all of the content inside and restarted. Visting the ip of the server simply results in a page with one word on it: I just don't get it. Is this normal nginx behaviour? I've deleted the entire conf file and restarted, so why is this happening?"
"ASecond24";"NO";"100m (milli) means a loadavg of 0.1: your server is pretty fine!"
"ASecond25";"NO";"You can register any serializable type with the clipboard provider:"
"ASecond26";"NO";"Shoulld be:"
"ASecond27";"NO";"Firstly, that's not how works. You have to specify constants for each , and those constants will be compared to the expression in parentheses (in your case, ). That is how works, period. Secondly, switch is not faster than several s And thirdly, you shouldn't really worry about miniscule performance optimizations when you're dealing with javascript."
"ASecond28";"NO";"Compare these two methods: Aside from the method signatures (bar can declare instead of ), is there any practical difference between the two methods? To be clear: I'm aware that this is a horrible approach to exception handling, and should not be done!"
"ASecond29";"YES";"Excellent! That makes life considerably easier. I really didn't want to add another layer to the application if I could avoid it. As far as StackOverflow etiquette goes, if I set this question as answered, Nikos won't get the rep for it as the answer is in the comments. What's the protocol?"
"ASecond30";"YES";"Excellent article! Very useful :)"
"ASecond31";"NO";"You are just too quick...you scooped my answer"
"ASecond32";"NO";"This is one of the shortcomings of DGV that I absolutely hate and why I almost always bind to an IEnumerable of an anonymous type."
"ASecond33";"NO";"Your are really violating the idea of TDD if your code if doing something different for the Test. Why do you only need to change it inside the test?"
"ASecond34";"NO";"FEAR!!!!!!!!!!!"
"ASecond35";"NO";"How to get button Clicked for single time or Long press on it clicked event?"
"ASecond36";"NO";"I've re-read my comment, and it says what I meant it to say."
"ASecond37";"YES";"@Oded thank you this tool is very great!"
"ASecond38";"NO";"A simple Google search would suffice for this question. All are excellent resources (and the top three Google links!). Essentially, there's a new API which allows JS to request fullscreen access. That's about it."
"ASecond39";"NO";"put your path and your shadow in a set. apply your animation to the set and it'll affect both. a really terrible example where I move both at once."
"ASecond40";"YES";"Yep I've been testing some stuff recently under Safari 5.1.5 (WinXP) recently and when you have elements with tabindex=""0"", all the elements EXCEPT links ( with ""href"" defined) are focusable. By all elements, I mean s, s etc. It's absolutely amazing for me from the accessibility point of view!"
"ASecond41";"NO";"Still printed but had that dreaded extra page! -_-"
"ASecond42";"NO";"I started to be thrilled only to find out that the example is ascii art!"
"ASecond43";"YES";"Here is the good example of getting twitter-like UI for ipad app. , its really awesome!!!!! It provides : cascade views orientation support bouncing effect"
"ASecond44";"YES";"Excellent answer, thanks! Wish I could give you more points."
"ASecond45";"NO";"I have developed a cumulative sum function as defined below in the Haskell library Repa. However, I have run into an issue when combining this function with the transpose operation. All 3 of the following operations take well under a second: However, if I write: performance degrades horrendously. While each individual operation in isolation takes well under a second on a 1920x1080 image, when combined they now take 30+ seconds... Any ideas on what could be causing this? My gut tells me it has something to do with delayed arrays, not forcing at the right time, etc... But I do not have enough experience to track this down quite yet."
"ASecond46";"NO";"@Mario I disagree, while the answer is outrageously awful, it's still an answer."
"ASecond47";"NO";"Don't do that. Use instead. is a FIFO queue that lets you pass data around threads without worrying (much!) about locking semantics."
"ASecond48";"YES";"No worries Stephen!"
"ASecond49";"NO";"The following program prints 0, not std::string::npos as I expected. Why?"
"ASecond50";"NO";"If I have a setup project in a VS 2010 solution and I add/remove another project, or unload/reload another project any setup projects in the solution are expanded in the solution explorer. It only does this for setup projects and it is extremely annoying. Is there any way to disable this behaviour?"
"ASecond51";"NO";"sounds like desirable behaviour to me! How do you make it do that again?!?"
"ASecond52";"YES";"I am learning ML. Can some one please help me out with basic input/output functions in ML?? I just want to read input from console and store it in a variable and use it in my ML program. Please help. If you can point me towards some example for this also it would be super great!!! Thank you."
"ASecond53";"YES";"I appreciate your warm welcome, I never seen such a warm regard here for trying to be helpful, it was a really pleasant introduction and I want to thank you for taking your time to write - at last the end of the questions reads ""If anyone has any ideas I would be extremely grateful!"""
"ASecond54";"YES";"Excellent point! Thanks!! I did mean just the left side though.. (I should have specified that). Was glad to learn your insight though.."
"ASecond55";"YES";"This is really great question - well organised and explained, nicely done!"
"ASecond56";"YES";"Thanks. That was a really great pointer!"
"ASecond57";"YES";"Excellent, this works perfectly! Thank you :)"
"ASecond58";"YES";"Excellent, Thanks!"
"ASecond59";"NO";"@MikeChristensen that's horrible :| and weird!!"
"ASecond60";"NO";"I would not go the gdi route... Have you considered using wpf?"
"ASecond61";"NO";"Can you give us some more code?"
"ASecond62";"NO";"Is it possible to pass 3 parameters into a selenium command via IDE? e.g."
"ASecond63";"NO";"Can't find any manual about changing width of taglist element size. Taglist element is wider than icons I had set. It looks really awful =( Screenshot:"
"ASecond64";"YES";"Unless you use JetBrains's excellent tools!"
"ASecond65";"NO";"My guess is that you would have to extend the classes for DataTip, to check for NULL hitData objects, to kill/stop the drawing of the display. I do not think there is a way to do that normally in FLEX. You would have to customize and override the hitData class unfortunately. What a pain!!"
"ASecond66";"YES";"excellent solution is in subclass UITextView add lines It's work!"
"ASecond67";"NO";"Use to insert data from another table"
"ASecond68";"YES";"Ahhh! I just made num_rows work (even though I don't need it, as you pointed out) because of your indirect help! Thanks you sweetheart!"
"ASecond69";"NO";"+1 fast and furious, or should I say, you are fast and I am furious! `:P`"
"ASecond70";"NO";"Including an external jsp page as an innerHtml from a javascript function"
"ASecond71";"NO";"By the way, I agree with Henrik P. Hessel. This is a very horrible piece of code."
"ASecond72";"NO";"Maybe you can post the relevant code snippet? Regards, tamberg"
"ASecond73";"YES";"I have a javascript document.write function that returns a textarea value to a field like so: Now, I need the output of what is returned from the document.write part to be in BBCode output, so if the value fetched from the document.write function is [b]hello[/b], it returns ""hello"" not [b]hello[/b]. Any help would be extremely appreciated!"
"ASecond74";"NO";"I'm getting a 404 when I try to check that link... do you need to edit the html?"
"ASecond75";"NO";"I had a memory crash on UIGraphicsGetImageFromCurrentImageContext() ... if you're creating and releasing a lot of them, you should wrap them in a fresh AutoReleasePool for each iteration. Even allowing the NSRunLoop to tick WAS NOT ENOUGH for Apple/iOS to do housekeeping on garbage lying around from this. e.g."
"ASecond76";"YES";"Stu Nicholls's site has a lot of examples of how to do this without javascript. It's a really excellent resource."
"ASecond77";"NO";"i am currently having some difficulties trying converting a Unicode character string (DT_WSTR) into an INT this is what i have (Note most writings are in German, but i think someone who has worked with SSIS will unterstand anyways) Data Type selected: A four-byte, unsigned integer.but all it does is fail terribly"
"ASecond78";"NO";"yes it does it in IE8 as well. Very annoying !"
"ASecond79";"NO";"I m really excited to know that html 5 has in build support for audio and video playback( I know its old news but I just woke up ! :P) . What is even more exciting is that it can play local audio/video files in matters of some click. I had a look at this , could not find any offline video player. my question is why is that people are not developing an offline media player which could just be loaded form a website ? are there some issues ? Thanks"
"ASecond80";"YES";"There's an excellent series of posts on execution plans and how to read and interpret them - and a totally free e-book on the topic as well! - on the excellent Simple-Talk site. Check them out - well worth the time!"
"ASecond81";"NO";"Yes, you need two view controllers. Check out lesson 7 from Stanfords CS193P iPhone Application Programming course. It is available online. Both slides and the lecture through iTunes U. I really enjoyed watching the course!"
"ASecond82";"NO";"Out of all that pseudocode, the only thing that really worries me is ""extracts code samples from file"". Reading files from a directory is trivial, saving a file is trivial. Regardless of the test framework I'd spend most of my time focusing on the parsing bit. For direct testing, I'd embed the snippets directly into the test case: Ah, I see another change I subtly made while writing the test: my ExamplesToCode.parse() returns an Array (or other iterable container), so that it can be tested apart from the iteration itself."
"ASecond83";"YES";"no worries! it happens all the time."
"ASecond84";"YES";"Excellent, thank you!"
"ASecond85";"NO";"as you can see folks hate spending time giving details on bad advice!"
"ASecond86";"NO";"We can do this quite neatly using numpy, without having to worry about the channels at all! output: input:"
"ASecond87";"NO";"Answer coming late. But anyway ... here goes: If it's indeed PIC S9(9) COMP and not COMP-3 then it's not a 'sinister' COBOL packed field but a simple 4 byte integer!"
"ASecond88";"NO";"A simple width would do: And the css:"
"ASecond89";"NO";"sounds scary !!"
"ASecond90";"YES";"I ended up using , which met all my needs and is (IMO) very excellent."
"ASecond91";"NO";"Back in the day I had to solve this with a panel where the text box is a component inside and had DockPadding set to 3 or 4 pixels. I'd then style that panel to a single pixel. I always found this really annoying!"
"ASecond92";"NO";"the two are not mutually exclusive, archmage."
"ASecond93";"NO";"That was ""I totally agree... """
"ASecond94";"NO";"+1 for code sample"
"ASecond95";"YES";"Wow great answer and very quick!. Explained everything."
"ASecond96";"YES";"Excellent, injekt!!! Loved the way you answered."
"ASecond97";"YES";"Absolutely. Don't be afraid to just try stuff out!"
"ASecond98";"NO";"@sll: Not True... See my Edit"
"ASecond99";"NO";"That's what I thought...but I'm terrible with C. Absolutely terrible."
"ASecond100";"NO";"That's really sad..."
"ASecond101";"NO";"There is a particularly efficient algorithm using de Bruijn sequences described on Sean Eron Anderson's excellent page: It works in 13 operations without branching!"
"ASecond102";"NO";"If I delete this question will it increase my reputation? 5 down votes it really sad."
"ASecond103";"NO";"Pragmatic approach: See other answers for excellent backgrounders!"
"ASecond104";"YES";"Hey there i've been trying to make an image full screen in the browser without any whitespace and also have a random image everytime you refresh the browser, I know there has to be a way to do that maybe with an image array? Can anyone help i have no idea how to even start. So far this is what i came up with: Please help me! i would really love it!"
"ASecond105";"YES";"Loving Susy, so far! Now I'd like this initial layout... ... to turn into this layout on a smaller screen: Is this possible using Susy? Furthermore, I'd want the AC-column to function as a single entity when they're in the same column, since I'd like to give them sticky behavior."
"ASecond106";"NO";"hi, it needs to be server side, no javascript"
"ASecond107";"NO";"Take a look at DateTime.ParseExact to turn the string into a date and then use them as regular DateTime ranges. The regex will be awful if possible!!"
"ASecond108";"NO";"this is a bisection root method"
"ASecond109";"NO";"Are there any reference guides or tutorials for writing a MIPS assembler?"
"ASecond110";"NO";"Too many `""`. You need: ``"
"ASecond111";"NO";"The question is tagged winforms"
"ASecond112";"NO";"I was too pithy. I should have said, ""The Loudness Wars Killed Music."""
"ASecond113";"NO";"How can I increase Java heap size for Carrot2 Document Clustering Workbench?"
"ASecond114";"YES";"OK this is really odd. I have a list of about 20 pairs of TV's that look like: etc, all the way up to 20 They all work fine but one. It although the names and order of the TVs are correct in both the template and the resource its displays in the location. I have tried clearing both ModX's cache and my browser cache but here is the result I get: The Template: The Resource's TV's: The result on the browser: If anyone can give me a hint as to what's going on I would be really greatful! Thanks"
"ASecond115";"NO";"Shameeeee on me!!!"
"ASecond116";"NO";"I need from document object or from a DOM element (i.e. a DIV) to know which is its window object. In Firefox I can do: but obviously in that AWFUL browser that statement not work!!!"
"ASecond117";"NO";"Don't rely on Lucene to strip them, do it yourself."
"ASecond118";"NO";"Why the following code (1) does not give me the following output (2) (1) (2)"
"ASecond119";"NO";"How can i extract data from a 2d array.. e and b are indexes of the array"
"ASecond120";"YES";"I agree it's very ugly, but it does work! Well spotted."
"ASecond121";"NO";"@Hamish: yeah, because of our worries about dependencies are totally irrelevant then!"
"ASecond122";"NO";"I have a fairly large codebase with several directories and files and I would like to check out a view or have a view as of a given date (Septermber 12th). I am manually checking file histories and doing and this is extremely painful. I wonder if there is a way to do a checkout and load everything as of a particular day at once?"
"ASecond123";"YES";"You might want to look into JAXB. If you have a defined XML schema it will automatically create java classes that will easily allow you to 'marshal' (move data from java -> XML) and much much more. It's incredibly useful!"
"ASecond124";"NO";"Using a Inside the delegate for the TextField.TextChanged put this:"
"ASecond125";"YES";"No worries! IE11 does a poor job of emulating other browser versions."
"ASecond126";"YES";"Well I'm kind of new with magento, and at work they ask me to do a group of products that they will be put in discount, so I created a category sales where I can link the products and put them in sale, so this is working perfectly, but the ask me to put dates in the products so the web master can put dates where the products will be shown between dates, so now I have no idea how to do this. I really hope you guys can help me thanks so much!"
"ASecond127";"NO";"I've discovered that my Python code is a lot flatter than my C++ code. Don't know why."
"ASecond128";"NO";"After I changed my windows regional setting from my native language to USA, the problem has gone. Do not forget to restart Visual Studio. really annoying problem !"
"ASecond129";"NO";"Are the schemas identical other than datatype?"
"ASecond130";"NO";"my pleasure :) :)"
"ASecond131";"YES";"Related: Doug Lea put this up last week, pretty awesome!"
"ASecond132";"NO";"Just do it:"
"ASecond133";"NO";"Felix Geisendörfer from Debuggable has some really excellent examples of how to utilize Set::extract to get multiple values from various nested data structures"
"ASecond134";"NO";"Do need this for existing documents or generated on fly ones?"
"ASecond135";"NO";"You can try the (very) comprehensive jeff's OR go with this simple workaround: And then declare the attribute as an integer: This worked very fine for me! =D"
"ASecond136";"NO";"You can use with an existing profile:"
"ASecond137";"NO";"I've been having a spam problem on my site, where people sign up and act extremely abusive to other users of my site. I can easy IP ban them, except they always come back under a different IP address through a proxy or TOR. So I was curious if there are any php classes or functions that can look up the IP and determine if its a genuine user, or someone behind a proxy, in which case it would muzzle their accounts upon registration."
"ASecond138";"YES";"I am attempting to get just the smiling array under tags then attributes. I have tried both to search and simply select. Every attempt results in an undefined variable. If you could explain how to select the smiling array that would be excellent!"
"ASecond139";"NO";"I'm afraid Joomla! doesn't have core solution for that. You need to extend DBO or write your own external queries with plain PHP."
"ASecond140";"NO";"Totally bizarre. Looks identical to my code. So not sure i am afraid!"
"ASecond141";"NO";"could you show the part of code where the order gets changed?"
"ASecond142";"NO";"In my graph each node has a name and graph is actually a tree, so there exists a . Here's the query I currently use to get the path: An actual query is somewhat heavier, but the behavior is the same. So, having a path I will get . I don't mind trimming the last , but I'm really worried about the order of the nodes iterator returned by . So, my question is mainly targeting neo4j team - are there any guarantees as to the order? Would it be better is I just returned and then manually extracted each property? I'm using Cypher with an embedded neo4j distribution, so that won't be a problem."
"ASecond143";"NO";"This would introduce scaling artifacts and might look extremely ugly."
"ASecond144";"NO";"It's impossible to receive unicast UDP packets in Silverlight (rage!!!)."
"ASecond145";"NO";"Not that I recommend this, but totally abusing LINQ the following would work:"
"ASecond146";"NO";"yeah, compiled, but output is so horrible !!!"
"ASecond147";"NO";"Does anyone know how to enable locking on a TreePanel column in ExtJS 4.1.1?"
"ASecond148";"NO";"Phew. The idea of not having a menu button scared me for a second!"
"ASecond149";"NO";"Is there any simple way to test that an installation of report viewer redistributable 2008 is working properly? I've been tasked with making sure this piece of software is functioning correctly, but given no further instructions. How would I go about testing this? .NET tools aren't what I've normally used, so I'm at a complete loss here!"
"ASecond150";"NO";"Working on providing source code now, and no. Infact Chrome seems to suffer the least!"
"ASecond151";"NO";"And sometimes, if the system is hanging, keyboard might be the only way.."
"ASecond152";"NO";"Is it possible to get a visitor flow associated with a given ga:transactionId through the Google Analytics API? There's limited availability in ga:landingPagePath, ga:secondPagePath, ga:exitPagePath and ga:pageDepth but a more complete path would be desirable Thanks!"
"ASecond153";"NO";"I agree with this. For *non-essential services* increasing timeouts is incredibly frustrating."
"ASecond154";"NO";"There's an error here: $r3 only has one result column (which you haven't given a name). Are you sure you are using the correct variable because there's no way that your code should work as you have posted it. Also your variable naming is really awful. Use meaningful names instead of , , etc..."
"ASecond155";"YES";"I am trying to get the second dropdown box to change and populate when the first box has a car Make chosen. It connects to the database just fine, and if I type 'Honda' instead of 'carmake3' in the second dropdown, then it gives me a list of all the honda cars. I just need to work based on what the user selects. Any help would be extremely appreciated!"
"ASecond156";"NO";"Can you point to the part of the HTTP caching spec that says this?"
"ASecond157";"NO";"Is there any reason you can't give the list a specified width?"
"ASecond158";"NO";"OK, then, no solution that going DB mysql... so sad ! :-( i will close the question !"
"ASecond159";"NO";"@Aggieboy that's really sad, and I have to hand-code stuff ."
"ASecond160";"NO";"The 0x1A byte is a terrible, painful [source of agony](http://stackoverflow.com/questions/12483711/serialdata-eof-circumstances)."
"ASecond161";"NO";"This does seem to be the answer. Absolutely terrible API design."
"ASecond162";"NO";"What's a 'LinkControl'? I'm aware of LinkButton and HyperLink."
"ASecond163";"NO";"""in the second instance run the designer, and the breakpoint will fire""...does not fire..."
"ASecond164";"NO";"That is awful advice! I don't mean to be overtly mean but I lolled."
"ASecond165";"YES";"I'm pretty familiar with PGP, and the way it works. I'd like to include some functionality in a project, but so far my research has left my head spinning. What I'd like to do is create a public key with a defined private pass phrase. From there, I'd share the public key with someone where they can then encrypt a message using the key and return it to me where I can decrypt. I envision the code looking something like this. To generate my private pgp key: To encrypt I'd give my shared key to a friend: To decrypt the encrypted string after being sent back to me: Obviously I know I'm skipping out on a ton of details. Through my research I've seen references to libraries like Bouncy Castle and Spongy Castle. Any help would be hugely appreciated!"
"ASecond166";"NO";"So, which solution did you go for in the end?"
"ASecond167";"NO";"Oh, absolutely horrible practice. But still the answer he was looking for."
"ASecond168";"YES";"The link works for me. That is a pretty awesome testing class! Thanks Andrew. I think I am going to convert and use that in my Silverlight project. Thanks for the tip about Caliburn, Josh G. I'll have a look at that too! :)"
"ASecond169";"NO";"Effective, but what a pain! You'd think there'd be an easier way."
"ASecond170";"NO";"C++ isn't dying, but most of its strengths only shine in niche markets."
"ASecond171";"NO";"Putting data in the ID is a terrible, terrible idea."
"ASecond172";"NO";"Absolutely: Jersey is The Thing to use for JSON-based/aware web services."
"ASecond173";"NO";"This only works if the compiler switch AssignableConsts is turned on"
"ASecond174";"YES";"AutoHyperlinks (https://bitbucket.org/sholt/autohyperlinks2/overview) is a pretty excellent library for this purpose."
"ASecond175";"YES";"Excellent! Exactly what I needed :)"
"ASecond176";"NO";"@david-b why do you said not to let the db concat the strings?"
"ASecond177";"YES";"I solved this need by using . I am able to route calls from Edge to my local machine. Absolutely love ngork! :-)"
"ASecond178";"NO";"do you have access to Visual Studio Team Edition for Testers?"
"ASecond179";"YES";"I am trying to toggle article length for a smartphone size site to save space. I thought that this would work - but I don't understand .closest() I guess. is a jsfiddle. Any direction would be GRRRRREAT!"
"ASecond180";"YES";"@Andremoniy this is an excellent idea! But what if this is legacy code?"
"ASecond181";"NO";"Horray for Android!"
"ASecond182";"NO";"avoid the auto method, to apply by hand is such painful :("
"ASecond183";"NO";"This is should be the selected answer"
"ASecond184";"NO";"Comments should be not since we don't want this code to be shown to the user"
"ASecond185";"NO";"You must be a sad sad person..."
"ASecond186";"YES";"Excellent tool! Thanks for making it available."
"ASecond187";"NO";"worked for me too.."
"ASecond188";"NO";"Somewhat new to OOP (i.e. C programmer converting to C++) and cannot figure out why my data members in my backpack class are empty. I make pass an array of potions to my backpack, yet the data members are saying mType = """" (i.e. nothing). I have never felt this lost in a program before. Starting to hate OOP (i.e. kidding...but this extremely frustrating). main.cpp potion.cpp backpack.cpp"
"ASecond189";"YES";"Excellent ! You just gave me a lesson :)"
"ASecond190";"NO";"Have you tried logging the uninstall to see what is happening?"
"ASecond191";"NO";"I am not sure if it does, I will check into that. That may be the solution I need."
"ASecond192";"NO";"If string object allocations worry you, then you should precompile the regular expression!"
"ASecond193";"NO";"Tools -> Options -> Projects & Solutions -> Build and Run ""On Run, when projects are out of date:"" Select ""Always Build"" That's it, had it myself, extremely annoying."
"ASecond194";"NO";"I got to this question via the Almighty Google. To complement on what Andrew said above, for those of you on OSX you might want to take a peek at /Applications/MacVim.app/Contents/Resources/vim/runtime/indent/html.vim and the modifications necessary should become evident. I can't believe I spent so much time suffering from poorly indented <li>s!"
"ASecond195";"YES";"excellent, thanks to both of you!"
"ASecond196";"NO";"No, n % 7 + 1 actually returns n + 1 unless n == 7 in which case it returns 1."
"ASecond197";"NO";"You're missing a . on your class selectors: should be and should be"
"ASecond198";"YES";"Excellent hint! I was using scrollTo(0,0) and it was doing nothing"
"ASecond199";"YES";"Excellent answer to a very general question ! :-)"
"ASecond200";"NO";"To stop it:"
"ASecond201";"NO";"From my experiences so far, I've concluded that the HTML5 Manifest scheme was really terribly designed. My site serves a manifest file when a user is logged in. Unfortunately, when they log out, they can still access the cached protected materials. Can anyone think of a way to fix this?"
"ASecond202";"NO";"how to add SelectedIndexChanged event for DropDownList in SharePoint2010?"
"ASecond203";"NO";"Tried it again - it worked. God I hate reporting services!"
"ASecond204";"NO";"Someone is scared to tell the reason of -1 !"
"ASecond205";"NO";"Ah, 400 million is a much less scary number!"
"ASecond206";"YES";"Well, you are really brave! Implementing a Linq provider all be yourself..."
"ASecond207";"NO";"The answer was devastatingly simple in this case. For some reason windows uses localhost as opposed to 0.0.0.0. So although it says standing watch at 0.0.0.0:4567 it is actually standing watch at localhost:4567 . You should be able to navigate to this page and see your middleman build."
"ASecond208";"NO";"Although, using this outside testing is a horrible, horrible idea..."
"ASecond209";"NO";"I would checkout . It has great reviews on Amazon and the Head First book series are really terrific and engaging."
"ASecond210";"NO";"http://msdn.microsoft.com/en-us/library/ms678505(VS.85).aspx"
"ASecond211";"YES";"i have a botton which is for changing the background image with jquery, as the following code shows it works very fine! but i want to fade in the newbg-image... is it possible to add a jquery fade method to it. Any help would be very appreciated. Thanks Ted"
"ASecond212";"NO";"You mean I can use LINQ as the data provider for my whole app?"
"ASecond213";"NO";"I see the outcome: A's do work whats the things you are expecting ?"
"ASecond214";"NO";"Can I fix the width and the height of jQueryMobile dialog? Currently, the size of width is 100% which is really awful in iPad."
"ASecond215";"NO";"Why does serialization require a serial version UID in implemented class?"
"ASecond216";"YES";"I have this regex And i really need it in a vba version for words .find method (don't need the matching-groups), here is what i have so far But i cant get the last part to work, here I'm talking about I really hope someone can help me, as regex in this case is not an option (Although i know i can use regex in VBA!) Cheers"
"ASecond217";"NO";"Url points to a tesco advert"
"ASecond218";"YES";"If you want to search give Red Gate's excellent tool a try (its free!) but it's only for SQL Server though."
"ASecond219";"NO";"Maybe someone knows how to disable content assist only on 'else' keyword when working with PHP source editor in Aptana? As I really, really hate it with this keyword, because after newest release it's really messing with my workflow as after entering 'else' and pressing enter it replaces it with: and sometimes it decides to get rid of indents completely. Mind you I don't want to disable content assist completely, I just want to disable it for 'else' keyword."
"ASecond220";"NO";"If you really worry about the performance, divide the page content into separate section and run the search process parallel !!!"
"ASecond221";"YES";"Check out Bruce Dunwiddie's excellent class. It provides really excellent information in the exception messages when you have this kind of mapping issue."
"ASecond222";"NO";"I have just started using Vim in a terminal (PuTTY or MinTTY), after always using gVim. However, when using syntax highlighting, rather than the actual text colour changing appropriately, its background is changed to whatever colour -- and it looks horrible! I've set my terminal to use 256 colours and downloaded a 256 colour colour scheme. I checked that the and settings are as I expect, but I still get this problem... Is this a Vim or a terminal configuration issue?"
"ASecond223";"YES";"You should really check out this plugin: I have been using it for about 10 sites and it's really great! Since the latest update it's posible to export your custom fields to a PHP file which you can include your functions.php"
"ASecond224";"NO";"oh ok...I forgot php considered empty strings as FALSe, though it was just 0 and null"
"ASecond225";"NO";"it really does crash my vm"
"ASecond226";"NO";"Does Python not support protected members? Oo"
"ASecond227";"NO";"Use . Example shown in this question:"
"ASecond228";"NO";"have edited my answer to include the bitdepth"
"ASecond229";"NO";"Excellent, I'm glad that worked for you!"
"ASecond230";"NO";"+1. I do this in several querying libs, especially the ones that flow through to web services."
"ASecond231";"YES";"I've been experimenting with Linq to see what it can do - and I'm really loving it so far :) I wrote some queries for an algorithm, but I didn't get the results I expected... the Enumeration always returned empty: case #1 I changed the query declaration to be inline like this, and it worked fine: case #2 Does anybody know why it doesn't work in case #1 ? The way I understood it, the query wasn't evaluated when you declared it, so I don't see how there is a difference."
"ASecond232";"NO";"What is your current function?"
"ASecond233";"NO";"Which language and/or regex engine is it for?"
"ASecond234";"NO";"Yup because I am doing a search, unless you know another way."
"ASecond235";"NO";"Well, I was using the setControlValueToUpperCase() method too soon it seems. So changing my keydown first if statement to fixed my issue. Horray Me!!"
"ASecond236";"NO";"For example: How would I go about summing the cost of items? (so I'd get 60)"
"ASecond237";"NO";"I am developing a web page which embedded a ""Google maps"" view. In this web page, the user must specify several positions on the maps At this time, I am able to spread the balloons on the map displayed when the user click on a button to be dragged, but according to the zoom it can be very painful to zoom in and out to drag the balloon to a place. I would like to know if it could be possible to have a panel with all balloons to drag/drop on the map? My current development : My target :"
"ASecond238";"NO";"Talking about feelings.. I really hate the asp.net CalendarExtender.."
"ASecond239";"NO";"+1 excellent!.."
"ASecond240";"YES";"Excellent! Exactly what I was looking for. Thanks."
"ASecond241";"NO";"Is there a convenient way to check if a directory is empty using MSBuild?"
"ASecond242";"YES";"There is a free ebook that microsoft released about windows phone developement. Its extremely useful and It could probably answer this and many other questions you might have! you can download the book from this website:"
"ASecond243";"YES";"you actually can use HTML5 tech to apply on that beside, you can use a gem 'client-side validation' the github is here I suggest you use the gem...pretty awesome :D"
"ASecond244";"NO";"What's the expected vs resulting behaviour? More info needed."
"ASecond245";"NO";"You can define an External. and a little more on the how-to side..."
"ASecond246";"NO";"DELETE command doesn't work with JOIN"
"ASecond247";"NO";"Horribly inefficient! It re-encodes the image each time. Try this instead."
"ASecond248";"NO";"You have to be excruciatingly careful when there are spaces in the path names. In the context, you probably need: You don't need quotes around the variable this time."
"ASecond249";"YES";"I am using 'simpLESS' program to compile my .less files into .css files on the fly. It is really great! However, after using it only for couple of days, 'simpLESS' stopped copiling the .less into .css files. I have tried to reinstall, redownload and then reinstall, tried other directories, other .less files, tried recompiling manuall - but nothing works. Has anyone experienced this? Thanks!"
"ASecond250";"NO";"Oh, this was was a pain! I probably lost 2 hours on this. Here is the solution: CMake uses short 'C' applications to test/try things. If the CMakeLists.txt states that C++ is used for the project, without also listing C, then some of those shorts tests incorrectly fail, and cmake then thinks those things aren't found. The solution was to change the first line of CMakeLists from this: ...to include C as a language: Then delete , recreate it, and everything then works:"
"ASecond251";"NO";"In your code, strip out the stop words. You'll have to maintain your own list."
"ASecond252";"NO";"Im afraid you cant do that!!!"
"ASecond253";"NO";"I would've answered StackOverflow, but it's not open-source :)"
"ASecond254";"YES";"We are now 2 years after migrating to TFS. Just upgraded to 2013. The team absolutely love it and can't even think about the old svn days!"
"ASecond255";"YES";"Welcome :) :) :)"
"ASecond256";"NO";"I am building the Android OS on Mac OSX (Lion), and Eclipse as an IDE. I am trying to understand certain parts of the OS however this requires performing many searches throughout the project. These searches take 5 or 10 minutes on Eclipse, and the way they are presented is also extremely annoying. Also, I need a separate editor to open up the native files found in the OS, since if they are opened in Eclipse there is no color coding of the C++ syntax. I feel that Eclipse is really slowing me down - can anyone suggest a better IDE for browsing the Android OS (preferably free)?"
"ASecond257";"NO";"I recently worked on a product that was targeted to .NET 3.5. Out of hundreds of beta testers, I can probably count on one hand the number that already had .NET 3.5. The rest had to sit through the absolutely painful .NET 3.5 install from microsoft (~30 minutes, and most of the time the progress bar stays near 0 so people think it is broken)."
"ASecond258";"NO";"What are you trying to generate specifically?"
"ASecond259";"YES";"#ERROR!"
"ASecond260";"NO";"Test code: How do I remove the whitespaces before storing it into the array?"
"ASecond261";"NO";"I wish I'd have found this question yesterday, as it has been causing me grief for hours! Surely this is a bug with the emulator?"
"ASecond262";"YES";"Thank you @Ward! We're loving how easy it is to create the GUI with Breeze! If can just work out this part, we will have a great solution!"
"ASecond263";"NO";"Yeah I agree, I use igoogle to read all the news at one place, check my gmail, gcalender, etc."
"ASecond264";"YES";"Thanks so much for the excellent answers! All answers worked beautifully."
"ASecond265";"YES";"Wow! It is really great answer! So helpful! Thank you very much!"
"ASecond266";"NO";"+1, @this is better than the accepted answer"
"ASecond267";"NO";"FYI: I happen to be on Tomcat 5.5.17"
"ASecond268";"NO";"It seems they are two names for the same idea– is there any difference?"
"ASecond269";"NO";"Don't rely too much on cplusplus.com"
"ASecond270";"NO";"The search bots don't care about hash tags. And if you are using them for some kind of flash or AJAX calls, you have more serious problems than your 301 redirects don't work. Because unless you have the content in an alternate form, the search engines are not indexing your site and you are definitely suffering as far as SEO goes."
"ASecond271";"NO";"I'm doing one app which requires AJAX call on almost every user interaction possible, I started writing JS functions, webservices etc. to handle all of that(still long way to go from here). Now I am wondering If I made a mistake maybe I should put whole page in update panel because I really hate writting JS. Is there some drawback to use it instead of custom written ajax calls to web service and js functions, and is it better to use more update panels or one big?"
"ASecond272";"YES";"That answer was extremely helpful Scott, thanks for the pointer on that!"
"ASecond273";"NO";"An object created by a user is really no different from one you create yourself (except you have to be suspicious of potentially malicious input!). The simplest way to be able to edit objects outside the admin interface is to use the built-in . Similarly you can delete them with a . If you want to restrict you can edit objects you can user the from ."
"ASecond274";"NO";"Why dont you simply wrap the absolutely excellent XOM with implicit conversions and such? Yes, it won't give you scala's XML-native-syntax style out of the box..."
"ASecond275";"NO";"The problem was due to a malfunctioning . Very painful and a lot of time wasted."
"ASecond276";"NO";"There's no need to spawn new processes, simply re-use them between requests."
"ASecond277";"NO";"I'm trying to do this in a makefile and it fails horribly: do you know why? I guess it has to do with escaping, but what and where?"
"ASecond278";"NO";"the problem that I am having is while designing an email to be sent to users the border of the HTML table is not disappearing even though it is set to 0 and so leaves horrible white lines through areas which are menu to be solid blue colors, below is my HTML code! Untitled Document"
"ASecond279";"NO";"The memory for t isn't allocated, so why I don't get segfault when I run it?"
"ASecond280";"YES";"Wow that was exactly what I wanted! So the second solution I showed is somewhat similar to what he's describing but he describes also extremely elegant triggers that would keep all the data fully sane without any external code sanitization! I think I will go with that design!"
"ASecond281";"YES";"Check out the WordPress repository. There is a plugin called WP GCM Its a very great one and has some great extras!"
"ASecond282";"NO";"**As of May 2010, Silverlight is at 57%.**"
"ASecond283";"YES";"That's really an excellent post, thanks for pointing that out!"
"ASecond284";"NO";"ps really hate the response limits on comments."
"ASecond285";"NO";"clicking the zoom (or pan) button again, restores it. terribly silly - yes!"
"ASecond286";"YES";"No worries! Joe"
"ASecond287";"NO";"I have used very successfully ( with a tweakette here or there! )"
"ASecond288";"NO";"done... stackoverflow makes you wait several minutes. I really hate that"
"ASecond289";"YES";"Seth's answer was totally awesome! Please be sure to green checkmark it!"
"ASecond290";"NO";"Which enviroment and frameworks are you using actualy to dev for Android?"
"ASecond291";"YES";"+100 for this :-) you made my day!! When writing the question I was not sure if it was related to ""Brook's mythicalman month"" and skipped it. Here I go ... and it's persisted for eternity on stackoverflow :-) I am really ""rofl"" that stackoverflow can answer questions like this!"
"ASecond292";"NO";"@Rob same problem, nothing. very disgusting"
"ASecond293";"NO";"Why do you need the class explicitly? Couldn't you use the interface? Note that casting is not encouraged, which is why it looks so awful in Scala!"
"ASecond294";"NO";"This didn't seem to bring the existing window to the foreground when I tried it."
"ASecond295";"YES";"excellent adding! for debugging, go to wp-content\plugins\syntax-highlighter-compress\syntax-highlighter-compress.php and add the following line to wp_shc_head() :"
"ASecond296";"NO";"I have a page running on my local django dev server with the Django Debug Toolbar that seems to be running quite slowly but I'm unsure why: Django Debug Toolbar says SQL - 46 queries in 39.80ms And then running a profiler I get 7926 function calls (7774 primitive calls) in 0.024 seconds So I'm left wondering why is the profile time so much lower than the Total CPU Time? And then how can I find out what's causing the difference? And secondary to that - should i be worried about the 16842 involuntary context switches!?"
"ASecond297";"NO";"What is the equivalent of ObjectContext.ApplyCurrentValues for DbContext?"
"ASecond298";"NO";"It sounds very scary to me to use a floating point number for a key in a `map`."
"ASecond299";"YES";"Excellent thanks!"
"ASecond300";"YES";"The WPF SDK Team posted a EXCELLENT article about chromeless windows available here: This is a MUST read!!! UPDATED Also found article by Lester Lebo on how to use the WPF Shell Integration Library for a custom window chrome"
"ASecond301";"NO";"Ahw... that's plain sad :("
"ASecond302";"YES";"Got it - I should have tried harder before replying. I had to keep track of the current row number and only switch the value on new rows. Revised code: Called like this: Thank you again for your excellent response & answer!"
"ASecond303";"NO";"I have a menu of links that need to have additional parameters added using data from cookies. I need to be able to do this client-side and not server-side. Basically I have a menu like this: And a cookie with a number like this: I am trying to get the 'users_number' to be included as a POST parameter to all of the links on that menu (ie. /link/to/page1?users_number=thecookievalue) What I don't want is users to be able to see this in their URL bar. Right now I am using: This functions as I wanted but I am trying to figure out how to do this in a way where the user does not see the ?parameters at the end of their URL. Is there a way to do this same thing but without them being able to see it? Any help would be hugely appreciated -- thanks!"
"ASecond304";"NO";"Extending the class to handle new tags or syntax is not a bad idea, but eval'ing inline ruby code from a possibly untrusted source is an absolutely horrible idea!"
"ASecond305";"NO";"could some one help me how to add new css using views theme in drupal 6.0"
"ASecond306";"YES";"No worries man!"
"ASecond307";"YES";"@Stilly.stack wooow I didn't know that that was important!! thanks a lot :)"
"ASecond308";"NO";"Yup. Get used to it or you will be very sad. I was in the beginning..."
"ASecond309";"NO";"in about 4 months from now I should be able to show you one =P"
"ASecond310";"NO";"Have you run this on SQL Server?"
"ASecond311";"YES";"I'm trying to make a link inside the fancybox single image title. I want it to redirect me to another fancybox window (witch is inline)... I have a script that makes the whole single image a link, but this targets my document title instead of the anchor title... I really hope someone will have a solution or a better idea on how to do it!! :) Thank you thank you thank yooou! :) btw: I have almost never worked with scripts.. In depth anyways..."
"ASecond312";"NO";"I can only help if I can see the full (ie. non-compressed) source code. The code included on the website has been modified (from jqDock v1.6 source) and re-compressed, which makes it extremely difficult (understatement!) to tell what has been changed. (I have also responded - with the same answer - to a direct email from the poster)"
"ASecond313";"NO";"Are you using WinForms or WPF?"
"ASecond314";"NO";"I voted up your question because I want to do the same thing."
"ASecond315";"YES";"Excellent! Thanks for the additional detail Sean!"
"ASecond316";"YES";"There's 2 parts to this question, both about RestKit: How can we post up 2 values email and password, and deal with the response using the object mapper How can we map 2 objects in a response We are expecting the following JSON response: What's the correct way to map this out, we've got a class setup for User and Token, but all the examples i've seen seem to not show something like this where there is two segments to the response, here's the code we have at the moment: Appreciate any help you can give on this, loving RestKit so far!"
"ASecond317";"YES";"Excellent tutorial!"
"ASecond318";"YES";"No worries, I know how annoying this stuff can be!"
"ASecond319";"NO";"Im trying to work with this awful language and I have to change an item of list by accessing to it with index I dont understand the awful syntax of TCL! How can I realise it?"
"ASecond320";"YES";"It would be super great! if you can help me with iframe and cookies stuff..."
"ASecond321";"NO";"This is extremely ugly C-style code, easy to get wrong. While the bugs in your code have been fixed by earlier birds, here is the C++ way to do this:"
"ASecond322";"NO";"You don't know if threads are killed unless you catch a signal that tells you so!"
"ASecond323";"NO";"Return some JSON with the state... Then some jQuery should do it..."
"ASecond324";"NO";"Are you using Hibernate or similar to interface the database?"
"ASecond325";"YES";"eXcellent, superb, charm :) Thank you!"
"ASecond326";"NO";"I am working on an app that uses some basic view types, but I find the default attributes extremely ugly in Android (for example, a bright yellow ). I can get the basic seekbar if I create it from code, using only the parameter, but I would like to know if there is a way to do this inside an XML Layout file. Is there an attribute I can set that will remove all default attributes - such as ?"
"ASecond327";"NO";"Need to do it without using any swing or other GUI as background process."
"ASecond328";"NO";"@BoristheSpider :( :( That is really sad. :("
"ASecond329";"YES";"Excellent answer!"
"ASecond330";"NO";"here's my hack that assumes arguments are all imaginary: ...horrible! but what you ask for isn't really possible without for instance hacking to dispatch to a new subtype of java.lang.Number. Really it would make more sense to use a Java or Clojure complex number library."
"ASecond331";"NO";"Haha great :) Happens to the best of us!"
"ASecond332";"YES";"So I'm trying to write a RR Rotation and LL Rotation with Java for an AVL tree. I have most of it figured out, however I don't know where I should modify the height within the method. I've been trying to understand it for a few days here but I cannot figure out where exactly it would go in the method I currently have. If someone could help explain exactly where I should put the modifications for the height of the node (it uses getLeft/setLeft for it's left height and getRight/setRight for it's right height) it would be extremely helpful!"
"ASecond333";"YES";"I am working on where i have two tables like and Country : City : cidCountryidId Means Many-to-One mapped with Now i need to access the details from I created already 'Country.hbm.xml' I created already 'City.hbm.xml' Query: Query Result I don't know why it is showing this exception..., if anyone knows, it will a great pleasure for me..!! Note: I am retrieving child details from parent"
"ASecond334";"NO";"I drew a circle using this code: how can i write a or event for this circle?"
"ASecond335";"NO";"If this is true that's excellent news! I'll give it a try next app update..."
"ASecond336";"NO";"There are some really great answers here that I wholeheartedly agree with!"
"ASecond337";"NO";"Is there any way we could implement vertical lines in a jquery file tree?"
"ASecond338";"YES";"@DaveBish, What an excellent tool! I will be using this ALOT in future! :-)"
"ASecond339";"NO";"What makes you think it can't?"
"ASecond340";"NO";"Yes, you should implement pagination before that, at the SQL query stage. Otherwise there's nothing better than iterating and discarding (which is really horrible)."
"ASecond341";"NO";"yeah: hopeless!"
"ASecond342";"NO";"I am experiencing exactly this problem (and am in exactly the same world of pain): Whereby I am offering an update to SQL using LinqToSQL and it is failing with a because is set to . Due to legacy databases also on the server I am targeting, I am not able to re-configure the default connection settings as is quite rightly stated in the accepted answer in . My question is: How do you convince LinqToSQL to run a SQL before executing an update?"
"ASecond343";"NO";"I'm currently having exactly the same issue with Monotouch and that's why I found your question. I get the very same exception as you do. This makes me assume that I'm not facing a Monotouch issue but a basic (mis)behavior of XIBs/Cocoatouch. So the answer is: no, it is not possible. Very sad though. René"
"ASecond344";"NO";"Here is another one to consider http://tableview.codeplex.com"
"ASecond345";"YES";"EXCELLENT! works like magic, just what i needed"
"ASecond346";"YES";"Here are my tables. And here are my object classes I'm brand new to dapper and orm in general, so please bare with me. Would a many-to-many relationship be possible to map out with dapper? If so, could someone provide a coding sample, that would be extremely helpful! I am also open to switching to a heavier orm if that would make these advanced mapping scenarios a lot simpler."
"ASecond347";"NO";"You can't use multiple colors on an icon font, so what you ask isn't possible. You could use a partial background fill, but that doesn't seem very desirable. If you switch to you would at least have access to symbols."
"ASecond348";"NO";"Wow, wow, wow! I actually found a better way to do that... if I keep the same abbreviation and change template text into: it does want I wanted, but in the way cooler way! So you can use your own variables in a template as long as you don't call them or Awesome!"
"ASecond349";"NO";"Chris, this regex matches *1* character from [^\w\W] character class. *Single* character."
"ASecond350";"NO";"That's horrible!!"
"ASecond351";"YES";"I've been using yui3 grids lately for my column layouts, and I'm loving them! Here's a link to a great overview/tutorial: This is a very easy and flexible solution, which scales well to even very complex layouts."
"ASecond352";"NO";"I just tried installing those missing plugins ... what a pain!"
"ASecond353";"NO";"If the answer was a snake, I could have been killed by it, its already in front of me!"
"ASecond354";"NO";"Have you considered named parameters?"
"ASecond355";"NO";"Replaced http://www.vim.org/tips/tip.php?tip_id=305 with archive.org link..."
"ASecond356";"NO";"Is this possible? I have looked online and cannot seem to find an answer."
"ASecond357";"NO";"Excellent! Can you post it as an answer?"
"ASecond358";"NO";"Say I have a string How could I check if exists in str, case insensitive?"
"ASecond359";"NO";"can I replace my entire windows vista with ubuntu and is it free? I really hate vista"
"ASecond360";"YES";"@PhilipOakley excellent suggestion! I hadn't used `cherry-pick` before but that worked quite well. If you post as an answer I'll accept."
"ASecond361";"NO";"Right, since you recognize EAV, I'm supposing you'll do fine :3 Good luck!"
"ASecond362";"NO";"I've been tackling the same issue. It's a pain!"
"ASecond363";"NO";"Why would you do that? You're begging for horrible debugging sessions!"
"ASecond364";"NO";"This is a common problem, and it's not a matter of ""PHP is lying to me!"" You have to understand how PHP sends the emails, and how servers interpret and process them. Your email host is likely interpreting these emails as spam, and sending them to a quarantine folder. None of this has anything to do with how PHP is handling your email."
"ASecond365";"NO";"OR you can use a regualr expression :"
"ASecond366";"NO";"I found this great node mysql boilerplate: it works terrific! However, now I need to hook it in to my existing user table, and my key field is named userID, not simply id, and changing the key fieldname in mysql breaks the example. So my question is, where in the project do I need to specify a different id field name? I see user.id in /util/auth.js passport.serializeUser and id in passport.deserializeUser functions, but it seems it must be specified elsewhere too. I'm hoping this is a simple question for users of passportjs!"
"ASecond367";"NO";"OR do whatever you need to to make the bottom, left and right borders look right and then just hide the top border with this hacky code: . Then feel really guilty about using it."
"ASecond368";"YES";"Excellent answer!"
"ASecond369";"NO";"Except he says WCF right in the title. -1."
"ASecond370";"YES";"@Dimitre: +1 Excellent and complete answer!"
"ASecond371";"NO";"It's possible to change color of UINavigationController view and buttons?"
"ASecond372";"NO";"I'm trying to create some ads in Admob, but on last step I always get error: but it didn't specify WHERE. I swear god, there are no errors on whole page, all fields are correctly filled, I see no red shapes around fields, everything match criterias written under fields, but I stil get this error - without any explanation. Has anybody same experiences? It's totally frustrating :("
"ASecond373";"NO";"What Ant version you are using?"
"ASecond374";"NO";"Scary question!"
"ASecond375";"NO";"I'm not sure that the given approach will work with hosts using NPT/EPT."
"ASecond376";"NO";"I had on top of one of my rake files."
"ASecond377";"NO";"Ah, excellent :)"
"ASecond378";"YES";"I placed all the receiver tags in : And implemented my subclass: This works very fine!!! But... The method is called AFTER uninstall was completed but BEFORE users press OK at confirmation activity showed by native system. I wanna, if exists, receive a broadcast AFTER user press OK. Thanks!"
"ASecond379";"NO";"you can use"
"ASecond380";"NO";"The only way I've found to do this is using the plugin hoverIntent:"
"ASecond381";"NO";"Come on, you are worrying about efficiency while your first line of code is incorrect!"
"ASecond382";"NO";"@NWest You can use a `@table` variable, which is immune from transaction rollbacks, to not need all kinds of heinous workarounds."
"ASecond383";"NO";"I don't see how this is possible, but I really, really hate to run my query an extra time just to get the record count so I can build a pager. When I say a ""pager"" I simply mean the common gizmo with a link for each 10 records for example."
"ASecond384";"NO";"S.Keller's solution worked for me and may fix your issue too."
"ASecond385";"NO";"I had to iterate over the json object"
"ASecond386";"NO";"I can't believe that answer from a company. Horrible!"
"ASecond387";"YES";"It sounds like you might want to use . It is extremely awesome. If you use Datejs, here's how you could do it: ex. for me: returns an array with 3 Date objects:"
"ASecond388";"NO";"What's memory profiling (as opposed to performance profiling)?"
"ASecond389";"NO";"Well, this is a bit of an awful hack but quite frankly any C++ application which needs a way to define an unconstructable object is probably already an awful hack! And under GCC, I get the following: test.cpp: In function ‘int main()’: test.cpp:9: error: cannot declare variable ‘an_instance’ to be of abstract type ‘la’ test.cpp:2: note: because the following virtual functions are pure within ‘la’: test.cpp:4: note: virtual void la::oh_no_you_dont()"
"ASecond390";"NO";"I mean when the form is posted."
"ASecond391";"NO";"I had left out PIPE, the new version works..."
"ASecond392";"NO";"For Python 3 the following will work."
"ASecond393";"NO";"The issue at hand, is that your parent thread finishes, but doesn't check if there are child threads left which are still running, which are silently killed in this manner! I would recommend the following approach: Instead of use change your thread code around: to Similar answered ."
"ASecond394";"NO";"Are the elements also initialized to '\0' when allocating memory to a string through malloc?"
"ASecond395";"NO";"there is no chance to add blank lines between html code in slim. closest solution to your case are adding comment such and but this is really painful"
"ASecond396";"NO";"sp_detach_db and sp_attach_db. It need not be point and click."
"ASecond397";"NO";"Very scary! O_O"
"ASecond398";"NO";"I read following codes in Why reverse the latin-1 to utf8 using above logic?"
"ASecond399";"NO";"Where exactly do you hook your events inside your UserControl?"
"ASecond400";"NO";"Busted, hat tip to BalusC"
"ASecond401";"NO";"Can you show us your html and css? Fyi... styling select boxes is terribly difficult!"
"ASecond402";"NO";"I've created a div how would I make this div a child of using Javascript?"
"ASecond403";"NO";"no, it is not possible -- we tried hard and ended up reverting to the 10.7 way of using a custom class.. check MAAttachedWindow well with enough swizzling and posing it'd be possible of course... but that is very evil and at least as much work as your own class!"
"ASecond404";"NO";"EDIT: Also you should avoid using it can make debugging extremely frustrating."
"ASecond405";"NO";"You must redraw your background with each change in your line (that’s the canvas way) Don’t worry, canvas is very fast at redrawing! Here is code and a Fiddle:"
"ASecond406";"NO";"Have you declared the Bundle-ClassPath in your bundle's MANIFEST.MF"
"ASecond407";"NO";"So ""options"" always has one item, and ""option"" can have multiple? What a horrid API!"
"ASecond408";"YES";"I would really love if someone could tell me how to tell whether 2 objects have touched (An image or a button) I know how to make them draggable but not how to tell if they have touched and to do something when they touch! Thanks!"
"ASecond409";"NO";":~) Very embarrassing!!! When I debugged and printed the receiving addresses, I realized that I was checking the wrong email account! Sorry to have taken your time."
"ASecond410";"NO";"Here is a solution that works for lower case strings only. Horrible horrible code, but I was trying to see how few lines I could write a solution in."
"ASecond411";"YES";"I have 2 files I need to merge based on 2 columns. I have tried using awk as well as tried combining the 2 columns using _ and then using the join command. When using join, some records were not matched, even after sorting, and multiple records were created. Using awk I can match the files correctly, but cannot get the output to print with zeroes when no match exists. File 1: File 2: Desired output: Any help would be hugely appreciated, I am new to large data files and unix!"
"ASecond412";"NO";"urllib.quote ought to help with this."
"ASecond413";"NO";"Excellent ! It works !"
"ASecond414";"YES";"Its an excellent place to start!"
"ASecond415";"YES";"@Marc-André Lafortune Your answer there was incredibly helpful! Thank you!"
"ASecond416";"NO";"Which version of Visual Studio are you using?"
"ASecond417";"NO";"Excellent! You, sir, need a Flattr button. Or join Gittip."
"ASecond418";"YES";"+1 Thats a very sexy way of getting days within a range!"
"ASecond419";"NO";"@AliceChen sad but sometimes the dropbox servers go down, this may also cause this!"
"ASecond420";"NO";"Your variables are pointing at the same object. I'd be worried if they weren't equal!"
"ASecond421";"NO";"Ew, the `com` prefix is horrible!"
"ASecond422";"YES";"I wanna make popover for add new event when user will click to day (""select"" callback in jsEvent.pageX and jsEvent.pageY parameter but Idea where is this popup still sticked on clicked element looks better. So my working code for stick popup to some element : html I already tried something like this: But isn't working. Any help will very greatful!"
"ASecond423";"NO";"Why can't setting the view's xml attribute make LinearLayout scrollable.?"
"ASecond424";"YES";"So I'm using activerecord to get the count of items for a certain day: But this doesn't give me if there are no records for a given day, how can I fix this? Or is there are more ""Rails"" way do to something like this? Any help is hugely appreciated, thanks again!"
"ASecond425";"YES";"@Leon Tayson: Excellent answer!!! Thanks loads..."
"ASecond426";"NO";"You have a data race because of the conflicting read/write access to . This implies that the behavior of your program is not defined. The race condition on is the least of your worries: the program could do anything!"
"ASecond427";"YES";"Does iTextSharp support Windows Metro Apps? I am trying to create PDFs from a C# Metro App, but PdfWriter.GetInstance requires some arguments which is not available in WinRT. Any help would be EXTREMELY appreciated!"
"ASecond428";"YES";"Sky, it sounds like you can maintain *complete* test coverage for an exception. Excellent work! Maybe someday I'll learn how to do that."
"ASecond429";"YES";"very nice beautiful :-)"
"ASecond430";"NO";"I wrote something that does work, but it's extremely ugly, but thought it could either help someone else or we could get something better. Here's what I came up with:"
"ASecond431";"YES";"I am trying to create a plot of several data series that are contained in a pandas DataFrame. Let's use as an example: This code produces a simple line chart with two different data series: However, if I try and create this same plot in a PyQt widget using , I only get a single line. My code for the second example is a little more involved: When I run this code, the output looks like this: If anyone can shed any light on this, it would be hugely appreciated! Thanks."
"ASecond432";"YES";"I need to transform this : into this : I tried to use wrapAll with jquery, something like that : Any suggestions would be really appreciated :) Thank you very much !"
"ASecond433";"YES";"I need someone to point me in the right direction on this.... In my Android application I have a ListView with custom views for each row containing various textviews each. I retrieve weather information for multiple locations and then want to write the results for each location to its own listview item. The question is, how do I refer to each textview on each listview item? I can't do it by name using , can I? If there are three items in the list, will the temperature textview for each item be names the same, just differ by an array index? If so, how do I specify TextViewName(0), TextViewName(1) and TextViewName (2) for the three list items? Yes, I'm still very new to Android....but loving it!"
"ASecond434";"NO";"Something along these lines, perhaps?"
"ASecond435";"YES";"How to get keyboard and mouse input (what buttons are currently pressed) && also how to send output (make the mouse click at a specific position in another program). If you could also add comments on what different things do and why you use them would be terrific :D Cheers! //Daniel"
"ASecond436";"NO";"Diodeus: You ought to post that as an answer."
"ASecond437";"NO";"Awesome :) !!!!!"
"ASecond438";"YES";"this worked excellently, great job! :)"
"ASecond439";"YES";"Gosh ! you're right !!! Excellent !!!! Is there a way to expand it programatically ? I added .setOngoing(true) (to the top) but it's not expanded... (not really the top because the first one is a notification when I'm plugged to USB for tools developpement ). Thank you again my friend !"
"ASecond440";"YES";"@Jon no worries!"
"ASecond441";"NO";"It can't be closed, but you can remove the OK button by specifying a function as the 3rd parameter: But seriously think about this, because spawning unclosable dialog boxes won't exactly make people overjoyed about your site."
"ASecond442";"NO";"You should accept @Andreas Petersson's answer."
"ASecond443";"NO";"Since ChangeSets are becoming too many to handle because of many checkins, I'm thinking of selecting multiple changesets then create a single work item link for code review purposes. It's really painful to create work item per changeset and assign to a code-reviewer. Is this possible?"
"ASecond444";"YES";"I have never use this but looks really great and pretty easy to use !"
"ASecond445";"NO";"I need to add some controls to context menu. Is it possible? If yes, how?"
"ASecond446";"YES";"I stumbled upon this site and really loved the way they have done the navigation on the left hand site. I noticed that site is using jquery but didnt see any plugins. Any ideas on how to go about doing this?"
"ASecond447";"NO";"Is it possible to initialize objects of the type: via boost::assign::list_of"
"ASecond448";"YES";"That works! Very awesome :) How do I select your answer as the solution?"
"ASecond449";"NO";"Or the dreaded AVL trees!"
"ASecond450";"YES";"excellent! exactly what I was looking for. Thanks Anna."
"ASecond451";"NO";"Ah IE7...I feel your pain Gary! I had a similar issue on a project recently. There seems to been a problem with embedded content that starts of hidden with or similar. The way I got round it was to remove and re-add the video content for IE only when the lightbox was activated. For example: EDIT: You could try using this technique with the legacy embed code, instead of the iframe. FURTHER EDIT: On doing some testing in Browserstack it looks to be working in IE7 for me. It may be something specific to your test environment. !"
"ASecond452";"NO";"In that case, try: ls -f | head -10"
"ASecond453";"NO";"I just installed AndroidStudio in my System I am trying to create my Very First Project . I set up JAVA_HOME and Android SDK path that has been used previuosly by eclipse in Android Studio Android SDK has the below versions for Tools and Platform Android SDK Tools - 22.6.2 SDK Platform - 19 As soon as started Android studio downloaded the Gradle-1.12 in the below path C:\Users\DELL.gradle\wrapper\dists\gradle-1.12-all after that it shows the build screen as below. This screen is shown for ever . It is not moving further. can anyone help me in this. I am sad!"
"ASecond454";"NO";"If you're really worried about this, Java is not the language for you"
"ASecond455";"NO";"Right, I've got this horrible mess of html and erb (that does work!), but I want to do things properly and render the whole thing with the method. But I'm not sure how to do this, I can only render text with the link_to at the moment."
"ASecond456";"YES";"@KevinB what an excellent resource! That just made my life waaaaay easier!"
"ASecond457";"YES";"In ASP.NET MVC, I have a form. In this form the user selects a country, and then the ID is posted back to the server, using a normal . However, for some UX reasons, I use Knockout. Therefore I need to get my observable value to have the value of a dropdownlist. I want my label in the markup, to show the countryId, depending on the selected value on the dropdownlist. Markup: ViewModel: Then my question is: How do I modify my DropDownListFor, so the countryId is being set automatically? :-) Thanks a lot! I really enjoy learning Knockout, but this one has taken me a long time!"
"ASecond458";"NO";"i have: how can i get the innerHTML of the child of ""td1"" ? dosen't work."
"ASecond459";"NO";"The project was moved to https://github.com/leblancmeneses/NPEG"
"ASecond460";"NO";"You shoud use login.done() , not login.success() :) Success is used inside the ajax() funciton only! The success object function is deprecated, you can set success only as Ajax() param! And there is no need to Parse the data because its in Json format already!"
"ASecond461";"NO";"this long: |-----------------|"
"ASecond462";"NO";"I want to parse XML formatted string. How to use XML parser on MonoTouch?"
"ASecond463";"NO";"Sometimes in a long commit log, it's really painful to navigate the all-expanded diffs. (You get expanded-diffs when hitting enter from the magit-blame-mode for example) Is there a way to collapse these diffs?"
"ASecond464";"NO";"I am working on a test application based on ASP.NET MVC. I am new to CSS stuff so I am learning that as well. I have created a master page called ""new.master"" and created a new css ""new.css"". I am calling the view from controller as: What I am doing is that I am frequently updating the css and master page. So I run the application in debug mode frequently. After sometime I stop seeing the effect of changes in css. When I ""view source"" in chrome and check the css, it shows an old version. When I change the name of both master page and css, I start to receive updated views but that works for sometime and then again I stop getting the CSS updates. Have you faced this problem? How can I fix it? (Its terribly annoying!)"
"ASecond465";"NO";"I need urgent help with a CSS tumblr theme header found here grandneue.tumblr.com (1) Stretch: I want it to be able to stretch but only up to a maximum size as the header gets too pixelated otherwise), probably around 800px. (2) Shrink: The second issue I have is, while the header does shrink down to a certain size (it does when I change the desktop browser window and to a certain extent on the iphone5), it doesn't shrink down fully so it fits 100% on a vertical iphone5 browser display. Can anyone please help me solve these two queries? The content is totally fine so I don't understand why the header won't follow suit! Thanks very much!"
"ASecond466";"NO";"We have a file named wordlist, which contains 1,876 KB worth of alphabetized words, all of which are longer than 4 letters and contain one carriage return between each new two-letter construction (ab, ac, ad, etc., words all contain returns between them): I want to create a new file that contains only words that are not derivatives of other, smaller words. For example, the wordlist contains the following words [""abuser, abused, abusers, abuse, abuses, etc.] The new file that is created should retain only the word ""abuse"" because it is the ""lowest common denominator"" (if you will) between all those words. Similarly, the word ""rodeo"" would be removed because it contains the word rode. I tried this implementation: But it always froze my computer. Any solutions?"
"ASecond467";"NO";"You could use a : Of course this code looks extremely ugly in C#. Depending on what manipulations you are performing on those strings you could take advantage of the features built into C# to convert it into a one-liner and avoid writing all those imperative loops. This is to say that when converting source code from one language to another it's not a matter of simply searching for the equivalent data type, etc... You could also take advantage of what the target language has to offer."
"ASecond468";"NO";"See similar http://stackoverflow.com/q/308703"
"ASecond469";"NO";"It might be questionable, but not a cause for rejection as long as you have a fallback behavior when/if the method can not be found. There are worse abuses that have passed."
"ASecond470";"YES";"What options are there to pull a GApps user creation date? I saw that the Admin SDK is capable of it, is it the only API capable of doing this? does any of the previous one also capable of? If possible using GAS, it will be most excellent, Thank you!"
"ASecond471";"NO";"I am very jealous of your name!"
"ASecond472";"YES";"Excellent! Thanks for the link."
"ASecond473";"NO";"Overall bytes includes those that have been released and is a running total of what has been allocated to your app during the lifetime of the app. The Live Bytes is the one to really worry about as that is the one that shows bytes that are currently allocated. Overall bytes could keep going on forever as long as you release stuff and the Live Bytes doesn't go too high then you will have no problems. From that screenshot live bytes looks ok. There are more details here"
"ASecond474";"YES";"I want to know what is good start point to work on creating own GUI on iphone/objective-c. I've never done this part before, and I know I'm kinda attracted to make my own slick GUI, something like convertbot, which I really love :) Any suggestion would be appreciated! Thanks"
"ASecond475";"NO";"Finally found something, here: No reference to it from the Oracle pages, but found a direct link to a page on some forum post. Really sad how hard it was to find."
"ASecond476";"YES";"just wondering if anyone could help me. I have a file containing a line: xxxxx are 5 digit numbers and the numbers are different for everytime. I want to be able to search for xxxxx and put it in a variable, so I can use this varibale. Do I use grep and sed? If anyone can guide me through it, that'd be terrific :) xxx"
"ASecond477";"YES";"No worries! Keep at it...it's overwhelming at first, but it gets easier"
"ASecond478";"NO";"@hrbrmstr I already have a rApache implementation. I have simply no time to switch to a different technology. I chose this because it makes R behave like PHP and others, which means people can start to see R as a general purpose language... something I'd really love to happen!"
"ASecond479";"NO";"I impleme and But I only the second one works. Can I have them both work?"
"ASecond480";"NO";"What is the difference between the events vs ? When does each event get hit?"
"ASecond481";"YES";"This code seemed to do it: The accepted answer goes to dystroy as he was the first to point me in the right direction, excellent answer by Bart Kiers though, +1!"
"ASecond482";"NO";"Wouldn't it be easier to store a shared copy of it in the application class?"
"ASecond483";"YES";"This is excellent, thank you!"
"ASecond484";"NO";"Afraid not, no!"
"ASecond485";"NO";"i have an assignment at my company to build a custom cms, for the foundation i ve chosen latest laravel(version 4, i believe). Now, the requirements in laravel docs() say minimal version of php on server required is 5.3.7, our servers have php 5.3.23. I am right now on a weekend, so i cant check my code on the server( been developing the basics on localhost with xampp which has latest php). Has anyone tried laravel 4 on pre-5.3.7 php?? i m very worried all of last week's work is going to the bin... :("
"ASecond486";"NO";"Partition it first, to divide the zeros from the non-zeros. Then sort the rest. Oh, and before worrying about that, profile first!"
"ASecond487";"NO";"How do you convert the *.docx file to an indexable (text) format? We use Apache POI to get our *.docx (and other office formats) indexed and this works pretty fine! You can have a look at the Implementation here:"
"ASecond488";"YES";"@sheidaei great :) keep it up! you even get 2 point bonus for accepting."
"ASecond489";"YES";"Tim, great-great sample, does exactly what I was looking for!"
"ASecond490";"NO";"If you don't want to modify the file:"
"ASecond491";"NO";"No betas involved, the lack of repro is really annoying me!"
"ASecond492";"NO";"Ok after a LOT of searching I found the answer, which is relating to accessing request in django custom template tags.... You can see the answer here: I used the following: and then changed the following line: I really hope this helps someone else! :-)"
"ASecond493";"NO";"No, there is no performance difference if the view is essentially a"
"ASecond494";"YES";"Excellent!!! This is exactly what I am looking for!"
"ASecond495";"NO";"When I click on Memcache Viewer the whole dashboard crashes and I have to login again. This is really worrying me as we are serving data to many users. A server error has occurred. Is there a way to see the internal logs? I can't see anything in nor . Is there any other way to reset the Memcache?"
"ASecond496";"YES";"Excellent work on that site by the way!"
"ASecond497";"YES";"This is answered . The concept was implementing with the tags such as and within the and div. Excellent answer!"
"ASecond498";"NO";"Edited my answer. It now references *Unicode and permalinks*."
"ASecond499";"YES";"I'm using the ImageMapster jQuery plugin, and I want to limit the number of selections that can be made on a (image-) map to a certain number. Let's say I have 30 areas, but only want 3 to be selected at the same time. After 3 selections have been made, the 4th selection should overwrite the 3rd. Is there a way I can do this? Any help would be hugely appreciated!"
"ASecond500";"NO";"I try make authentication using But I get . How I should correct my code?"
"ASecond501";"YES";"is probably not what you want, but is still really excellent."
"ASecond502";"NO";"It's HORRIBLE! No, seriously, I don't like it."
"ASecond503";"NO";"Found the culprit! At first I tried the solution suggested by @billinkc in the comment, it worked (I managed to create a folder) but the folder wasn't usable as I couldn't upload packages. I have db_owner permission on the MSDB database and so I can see and access the SSIS MSDB folder. What I really needed was the db_ssisadmin permission. Not to worry as db_owner permissions allow me to give myself the db_ssisadmin permission! After this was done, all the problems (the one in the original Q and more) disappeared."
"ASecond504";"YES";"I'm trying to create a grid (matrix) of squares in a given area with n columns and m rows, and an option to set a spacing between the squares if desired. The grid should fill squares with random coloring. I'd also like to add a zoom function, so the colored squares will appear much bigger in a region that is double-clicked. Can anyone suggest a good method to generate the grid and assign random colors to the squares? If you can suggest how to create the zoom effect too that would be SUPER :) I'm new to canvas, so any method help would be great! Thanks"
"ASecond505";"YES";"+1 Excellent explanation!"
"ASecond506";"YES";"Apple's MapCallouts code sample demonstrates how do do this with the callout and their Weather Map sample shows how to do custom annotation views. There documentation is really excellent and these samples are both helpful."
"ASecond507";"NO";"No, unless there's a relevant IE zero day. Obviously, this would be a huge abuse of user privacy (if you want their name, ask them!)."
"ASecond508";"NO";"i use with () I want to have the option to choose the months and years. I define this: But I really hate the dropdowns of . I want to have the option to choose the months and years as in It is possible??"
"ASecond509";"NO";"I have a function name called setValue, used in many classes. Also, i have a global function by the same name. When i press C-], it goes to arbitrary setValue function. How do i directly jump to the global setValue function? It is really pain to use tnext every time to find if the function global."
"ASecond510";"YES";"I need to echo only selected lines from a .txt file using PHP. The txt file content looks like this: The previous working code was echoing every lines. I'm trying to get the same formating but only with the selected lines. For instance let say only lines: 3, 5, 8, 10. The second step would then be if the lines could be echoed in a different order than the initial one. If someone knows a simple way to do it, that would be excellent! Thanx in advance."
"ASecond511";"NO";"be very afraid?"
"ASecond512";"YES";"Thanks. First method is really great!"
"ASecond513";"NO";"This works as of Moq 3.1.416.3"
"ASecond514";"NO";"Tap the escape key. It's that simple."
"ASecond515";"NO";"Why don't the bytes intersect??"
"ASecond516";"YES";"This sounds like an excellent project! You might want to start with the module. You might also be interested in the module. Perhaps to get you started, here's a function that takes a path to a file and backs the file up by copying it and giving it a .bak extension."
"ASecond517";"NO";"EF CTP5 is still having this bug! Anyway there is a simple work around for now See more here: Be aware that Count() is total rubbish performance wise!"
"ASecond518";"NO";"+1 I never knew about this"
"ASecond519";"YES";"Can anyone help me add children to a plist? I think I want to record an index of rows from the plist and then state which index row to write the key too. I'm not sure how to say if the key will be a string, dictionary or array. The following is code from another question on adding a key to root. Any help would be extremely appreciated :)"
"ASecond520";"YES";"wow the reaction time on this by you guys was amazing xD I'll give everyone +1 once I get to the 15 rep ^_^ Thank you so much everyone!"
"ASecond521";"YES";"Excellent! Glad that sorted it"
"ASecond522";"NO";"That doesn't seem to create a table... any reasons why? I tried dbdelta too."
"ASecond523";"NO";"Here is a code in , I would like to run it with , optimizing if possible."
"ASecond524";"NO";"Which GUI are we talking about: SWT, Swing, or (classic) AWT?"
"ASecond525";"NO";"@vascowhite I tried deleting all the products from the cms then added a new one and the same message appears. Really frustrating!"
"ASecond526";"NO";"Oh, I am scared!"
"ASecond527";"NO";"@EdwardRuchevits Hey passing in cat and page worked! It now remembers it each time I navigate pages! Excellent! Question though, is 'cat' a predefined PHP variable for URLs? Also, while this works for me locally... how will this function when different users specify their own category?"
"ASecond528";"NO";"I had the same exception, I just installed the latest VM release and now the compilation complete successfully :)"
"ASecond529";"NO";"You could also try Continuation Passing Style: This gets very painful when you have to chain multiple functions, so you can break standard formatting:"
"ASecond530";"NO";"So, it is as simple as purchasing a domain name, and then adding that identifying information to the hosts file? If so, that is excellent!!"
"ASecond531";"YES";"Excellent! This should be marked as an answer. Very good solution."
"ASecond532";"NO";"can anyone give me simple code to create a line in iphone using drawrect?"
"ASecond533";"NO";"Check out ."
"ASecond534";"NO";"I am completely hopeless with regular expressions... I have a Velocimacro named , and I have a JS function named . Now I want to find all the places the JS function is called. So I need to search for ""addButton"", where ""addButton"" doesn't start with the hash key. Any ideas?"
"ASecond535";"NO";"I use festAssertions in my tests and I noticed that using yields different results than in tests where hibernate objects are tested. I had to do workaround and now test looks really ugly but I cannot use because that just does not work! Here is partial code(look at last line): seasonRate, seasonRate1 are created and persisted. Then retrieved from db and checked against originals. Nothing fancy, but does not work with festAssertions. Do you have any idea how to fix that and if it is some error on my side or not?"
"ASecond536";"YES";"Not sure if it's on my end or zombie.js's, but I cannot seem to get this very simple zombie.js script to work on my Backbone app. Is it something entirely on my end, or is it a known issue that zombie.js doesn't play well with Backbone apps? I'm also using Pow (http://pow.cx/) to connect to the app through myapp.dev in case that is related. Any advice or zombie.js examples with backbone would be extremely helpful!"
"ASecond537";"YES";"This was a very quick and excellent way to show me everything I needed!"
"ASecond538";"NO";"I really despise SWFObject for this very reason. Maybe you could give a try"
"ASecond539";"NO";"as was already established, this is a miserable, horrible, awful, and terrible idea from a concurrency perspective. Anyway, since your question is really about Go's type system, here's how you would define a type with a recursive method."
"ASecond540";"YES";"I am using some PHP script to add some data from a complex form to MySQL db and then showing it all in some HTML table. Everything works just fine, but I would like to 'upgrade' my script with jQuery and (I suppose) AJAX. What I would like to do is when user submits data, the row (or ) shows up in the HTML table without refreshing a page. Form and table are on same page, of course... Some guidelines would be really helpful because I'm not sure should I even use AJAX or something else for my needs. Links for some tutorials will be also great :) Thanks a lot for any help!"
"ASecond541";"NO";"I am using NHibernate mapping-by-code to map the classes. Sometimes, in order to debug my NHibernate configuration, I would require to check exactly what were the settings passed over to NHibernate, and it is quite difficult do debug the mapping-by-code. Is there any way where you could convert the generated HbmMapping, back into the Xml file, just as if typed by hand? This would help a lot in diagnosing if the problem is lying from my mappings!"
"ASecond542";"NO";"I cannot seem to figure out why the phpunit target does not output any test results even though I have tests in position. The problem I am finding is there is no indication as to what the problem is! Incredibly frustrating. The output is as follows: My build.xml is as follows: My system: Vista, PHP 5.2.9, PHPUnit 3.4, PHPUnderControl, CruiseControl"
"ASecond543";"YES";"([0-1 ]?[0-9]|2[0-3]):([0-5][0-9]) I think that's the regex you're looking for (not specifically for javascript though). This site has an excellent amount of info for language-specific regular expressions! Cheers!"
"ASecond544";"YES";"<3 <3 <3 ! ! ! :)"
"ASecond545";"NO";"I am new to Delphi (been programming in it for about 6 months now). So far, it's been an extremely frustrating experience, most of it coming from how bad Delphi is at handling dates and times. Maybe I think it's bad because I don't know how to use TDate and TTime properly, I don't know. Here is what is happening on me right now : That's not the exact code I use, everything is in variables and used in another context, but I think you can see the problem. Why is that calculation wrong? How am I suppose to work around this problem?"
"ASecond546";"NO";"Any idea why this is called **reservoir** sampling?"
"ASecond547";"NO";"Okay so say we have a graph with a ball on it at (200,200) and we swipe our finger from (0,0) to (100,100) how do I go about moving the ball to (300,300)? This should be simple but it is really hurting my head! This is the code I have so far (using andengine)"
"ASecond548";"NO";"Release candidate 1 is now available may be worth trying that."
"ASecond549";"NO";"Either you want to group or you don't. Now which is it? (This is why I really hate how MySQL allows non-aggregates in `GROUP BY`)"
"ASecond550";"NO";"I can't get to work a many-to-many relationship using bookshelf.js. Models: Database table ""events"": Database table ""tags"": Database table ""events_tags"": Query that isn't returning what it should: The log outputs: That is: empty array of tags, which is wrong. Question: Is there an issue with my code? the desired output should be: This doesn't help in the question, but I'll throw it anyway: I'm currently hating all ORMs in Node JS! Maybe I should just use a query builder."
"ASecond551";"NO";"Here is an incredibly disgusting way to do it: Here is a better way (I think): If you convert either output string with: you get your original number."
"ASecond552";"NO";"I think that's absolutely terrible practice. First of all you do not need to make the trip to the server to hide and show controls, unless you need new data. Second, any decent javascript framework will allow you to hide show controls based on the control's id, class name, or whatever css selector. Moreover using a javascript post/get to a generic handler will give you the data that you need without the postback. I'd suggest using JQuery, or some other alternative."
"ASecond553";"NO";"Read [The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)](http://www.joelonsoftware.com/articles/Unicode.html). Python files should be written in ASCII (although you can enter Unicode characters if you set the encoding)."
"ASecond554";"NO";"+1 The project has moved: https://github.com/nmosafi/aspcomet"
"ASecond555";"YES";"what I am trying to do it show what terminal port im useing when I am currently logged in to my linux server. If anyone could offer some help I would be very greatfull!! thanks"
"ASecond556";"NO";"Voted up because I would like to know as well"
"ASecond557";"NO";"Are you using a PHP framework?"
"ASecond558";"NO";"Pixel Bender files don't run under iOS. See other limitations here:"
"ASecond559";"NO";"After reading I was horrified! Isn't there a tool out there that can inspect a .h/.cpp file and deduce what dependencies could be waivered?"
"ASecond560";"YES";"WOW, EXCELLENT, AMAZING. Thanks, Roddy, the link helped me sort this out. My software had ""Setup Software"" as part of its description as it is used to set up a piece of hardware we manufacture. I've changed that (in Project/Options/Version Info) to User Software and now it compiles and runs ok !"
"ASecond561";"YES";"Really great article, thanks!"
"ASecond562";"NO";"I want to be able to start External Application in C# WPF How do I do it?"
"ASecond563";"NO";"Are you saying Segoe UI is your windows font?"
"ASecond564";"NO";"Nobody? To do this with a Button is really disgusting."
"ASecond565";"NO";"I've heard rumours that Angry Birds can make you throw little birds on green pigs, and that you cannot do that in Visual Studio!"
"ASecond566";"NO";"I want to call a method after each 2 minutes, how can I apply such logic?"
"ASecond567";"NO";"Is that all the details you get in your C# code, when you catch and log the `SqlException` ?? Anything more could be extremely helpful!"
"ASecond568";"YES";"I have a button that, when hovered over, I would like the background image to display also. (It is an arrow an explanation of the button). There are quite a few questions similar, but I couldn't quite tweak the answers to work for me. The HTML looks like the CSS then is Any ideas hugely welcome!"
"ASecond569";"NO";"given a youtube url, how can i embed the video into a page using .net c#?"
"ASecond570";"NO";"Isn't and the same thing here??"
"ASecond571";"NO";"These will not jump: They are, however, soul destroying and extremely ugly."
"ASecond572";"YES";"You DO need to modify web.xml whenever it's needed. Especially with JAX-RS, you will have to define your servlet in web.xml. I recommand you to use Maven. There are plenty of exemple in the web to do so. Good luck, JAX-RS is really great ! Maven is also nice."
"ASecond573";"NO";"Yes, yes it is. It is really horrible though. There is also this atrocity:"
"ASecond574";"NO";"was excellent :) However instead of creating a button object, I am only calling an OnTouchlistener to change the state of every view. Gives the same results though"
"ASecond575";"NO";"It crashes only one time and then it works normally. Here is the project:"
"ASecond576";"NO";"No, I'm afraid not! You can call yourself in a js-function from . codebehind:"
"ASecond577";"NO";"I am afraid not, never tried before!"
"ASecond578";"NO";"Using the window object, only gives you access to globals, not to local variables."
"ASecond579";"NO";"I have a xml similar to this one: The thing is, Im able to get all the info tags, but I get the results from all dates. I dont know what the dates will be, since the are dynamic generated. What I know is that I may have a data tag with one or two date tags I wish I could show the first date´s info on a list box and the second date´s info on another listbox. How can I do that? Desirable Output: If there´s a second date then print it too: Thx!"
"ASecond580";"NO";"A simpler approach (rather than using a binding group) is to use the default button's click event to set the focus to itself. As this happens before the command is executed it means the ViewModel is updated in time. And if you really hate code behind, you could always write an attached property..."
"ASecond581";"NO";"@Colin Pickard: That's really sad :'( :'( :'("
"ASecond582";"NO";"What matters is that your code is readable. If you're worried, add a comment -- that's what they're for! Having said that, maybe you should StopIteration when there are no more players."
"ASecond583";"NO";"Work-around (horrible horrible invasive work-around) I got around this by subclassing UIApplication to track all screen touches. By holding on to the last touch location, I can, in the delegate, map the location to the link to determine whether or not it should be considered valid: MyCustomApplication.m (use it in main.m) And map it..."
"ASecond584";"NO";"@MartinBa I'm not sure it always works, but it sometimes does."
"ASecond585";"NO";"I'm trying to test if a character in a string is a space, and I'm getting extremely frustrated: I'm not getting any errors and I've looked online, but people on different forums say this is how to test for a space. Uh."
"ASecond586";"NO";"http://stackoverflow.com/a/4105631/1104483. Sad :("
"ASecond587";"NO";"What about an equivalent to ""tail -f -n500 ""?"
"ASecond588";"NO";"I want to fetch data from webservice and want to display it in to databse"
"ASecond589";"NO";"So, 21 months later, here's what I did to get this to work (with Gradle 1.2) My Groovy-fu is not strong, so I'm sure that horrible bit in the middle could be simplified, but it work for now!"
"ASecond590";"NO";"Typically you would handle that as a POST (not a GET), and read the xml from the request-stream (or there are helpers to let you do this). Otherwise URL encoding and length restrictions are going to make this extremely painful."
"ASecond591";"YES";"Excellent, now that I know the name I can easily google tutorials! ty! :)"
"ASecond592";"NO";"Is it possible to restore infolog from InfologData? Consider the code what should I write instead of to restore ""something awful"",""something terrible"", ""scary\tmouse"" into infolog from infologData? My goal is to perform some operation, store infolog in database, and then show it to user, when they want it."
"ASecond593";"NO";"I really hate regex in principle. can it be done in a plane script or something?"
"ASecond594";"NO";"Is there any method to refresh state to begin and i can read png image using"
"ASecond595";"NO";"Excellent! No one just coped and pasted the output from perldoc -f split!"
"ASecond596";"YES";"I absolutely *love* your title! But your question will need some more details if you need some help. Do you have any code you've tried?"
"ASecond597";"NO";"@Java1 I had totally forgotten about the moderators _hating_ the _link-only-answers_.!! :-("
"ASecond598";"NO";"I'm trying to insert the following array ( from a html form ) but i believe i'm working with this array in a very awful way The array: Actual code: ?> current output: What would be a decent way to do it? EDIT : No need to show how to connect to a database, i just need to deal with the array data."
"ASecond599";"NO";"Right, and that code calls which one: phone.dial(phoneNumber) or phoneNumber.dialOn(phone)?"
"ASecond600";"NO";"Anyone??? I'm starting to hate VS for that reason!"
"AThird1";"NO";"Great question, I have been trying to figure out why my child class function doesn;t get called since an hour now!"
"AThird2";"NO";"My company is just starting to look at using WPF for migrating all of our 10 year old business applications. These applications will most of the time be running on computers that have limited/old hardware. We are now a little worried that the hardware might be too limited for using WPF. We have installed Family.Show () on an basic older computer and that seems to run ok. But we would like know what your experiences with WPF on older hardware is? Anyone out there willing to share some experiences with us?"
"AThird3";"YES";"That would be awesome. I could report 100% success rates on all e-mails! :)"
"AThird4";"YES";"Dr. Klaus Schulten gave an excellent talk at GTC2010: http://livesmooth.istreamplanet.com/nvidia100922/. GPGPU computing is definitely the way to go for bioinformatics!"
"AThird5";"NO";"you have your terminology horribly confused."
"AThird6";"NO";"Any Updates to this annoying topic?!"
"AThird7";"YES";"Gotta love stackoverflow!"
"AThird8";"NO";"Is there a fast algorithm for finding the Largest Common Substring in two strings or is it an NPComplete problem? In PHP, I can find a needle in a haystack: I guess I could do this in a loop over one of the strings but that would be very expensive! Especially since my application of this is to search a database of email and look for spam (i.e. similar emails sent by the same person). Does anyone have any PHP code they can throw out there?"
"AThird9";"NO";"I usually don't post meta comments, but 29k views and 7 upvotes? That is sad"
"AThird10";"NO";"In this case, I'd keep the DoStuff() method but subscribe to it with: Admittedly that won't please those who do all their event wiring in the designer... but I find it simpler to inspect, personally. (I also hate the autogenerated event handler names...)"
"AThird11";"NO";"I'm not good at programming and my trying to open one of my spreadsheet documents. Below in the basic login im using, I then request a list all my spreadsheet, which is returned in $feed. And now I'm worried I'm not on the right track with opening a document so I can read and write cells."
"AThird12";"YES";"Jeff's article is excellent reading on this topic."
"AThird13";"YES";"+1. Great question! Now, I have no clue about the answer, but I'll stay tuned."
"AThird14";"NO";"You forgot regression tests - it is a real pain for a manual tester to run through hundreds of forms just to check for some basic stuff which could be easier done automatic. Better spare the tester this tedious stuff, so he can concentrate on the nasty testing."
"AThird15";"NO";"Make sure the designer doesn't put anything that he thinks is fancy and well animated. Many a times, it becomes a big pain to simulate such effects in ASP.net unless you are a pro with CSS or Javascript. Coordination between designer and developer is a must according to me, so I would prefer to sit close to a designer till the base design of the page is finalized."
"AThird16";"NO";"It's free in both meanings of the term."
"AThird17";"NO";"Strangely enough, by slightly changing the 'canonical' rules and starting from a random configuration, Conway's Game of Life (I don't know why my Wikipedia link is not working!) seems to generate pretty nice mazes! (I don't remember the exact rule, but it's a very simple modification that tends to 'densify' the population of cells...)"
"AThird18";"NO";"Your question assumes that mail clients follow the RFC standards for MIME encoding, which they don't. I'd advise you collect a bunch of mail from sources and try and process it as-it-exists. The problem you are facing is extremely difficult (perhaps impossible) to solve 100%."
"AThird19";"NO";"When all of the bugs from previous patches get merged into the main tree, we lose the ""who did what"" information. I think it is a shortcoming of TFS for sure. Too many bug fix comments hurt in the long term - people are then afraid to touch stuff."
"AThird20";"NO";"I maintain an application which, during the course of two years, has constantly required new hardware to be even usable, due to the amount of new users / new data inserted. However, justifying the investiment is sometimes very hard to do. I started to wonder - how can I establish the maximum number of users a web application currently suports? I thought of using JMeter scripts but they can get really nasty to implement when having to simulate file transfers and decison trees. What do you guys use?"
"AThird21";"NO";"I need to send and receive data over serial connections (RS-232 and RS-422). How do I set up and communicate with such a connection? How do I figure out what the configuration settings (e.g. baud rate) should be and how do I set them? In particular I am looking to do this in Java, C/C++, or one of the major Unix shells but I also have some interest in serial programming using Windows/Hyperterminal."
"AThird22";"NO";"It's scary that there is no way, but I must agree because it's fact."
"AThird23";"NO";"This is how you find the arc length given the parameter, but finding equidistant points requires the inverse of this function. Getting from one to the other is not trivial. @Christian Romo: how did you do it? I mean, you can just use binary search, but that would be horribly slow (for what I'm trying to do, anyway)."
"AThird24";"YES";"+1 - what a great article!"
"AThird25";"YES";"I'll second Zend_Form; it has an excellent ini style implementation that allows you to define a form extremely quickly:"
"AThird26";"YES";"+1 Saves a lot of time when unit testing Data Access layers. Just note that TS will often need MSDTC which might not be desirable (depending on whether your app will need MSDTC)"
"AThird27";"NO";"Is there a way that I can get a list of the models that a particular model belongs to in Rails? For example: Hope this makes some kind of sense!"
"AThird28";"YES";"Well, not free. But we have had very good results with Nevron. Their support is excellent as well. Another good option is TeeCharts."
"AThird29";"NO";"I was intending on use the Title attribute in the @Page directive to customise each pages title, but it simply doesn't appear to do anything. The site uses master pages - I don't know if that is a consideration. Master Page snippet: Page snippet (from ): What is more, if I run the page through the , it complains about... end tag for ""head"" which is not finished ..whereas the the tag is present in the source code. I've already got a workaround in place, but it's annoying the hell out of me, so I'm determined to find a resolution!"
"AThird30";"YES";"I have never parsed ini files, so I can't be too specific on this issue. But i have one advice: Don't reinvent the wheel as long as an existing one meets your requirements Good luck :)"
"AThird31";"NO";"Anybody found yet a good web site architecture using linq to sql? Any help will be very helpful!"
"AThird32";"NO";"I've heard that unit testing is ""totally awesome"", ""really cool"" and ""all manner of good things"" but 70% or more of my files involve database access (some read and some write) and I'm not sure how to write a unit test for these files. I'm using PHP and Python but I think it's a question that applies to most/all languages that use database access."
"AThird33";"NO";"As you may know, tonight, at exactly 23:31:30 UTC, Epoch Time will reach 1234567890! Hurray! One way of watching epoch time is by using Perl: Can you do the same in another programming language?"
"AThird34";"NO";"Horrible answer because it is just wrong."
"AThird35";"NO";"Great! I learn a new very useful information about DirectShow :-)"
"AThird36";"NO";"Well, this may not be very graceful... but you can retrieve the current focused control pretty easily. So you might consider setting up a timer that asks every 1/2 second or so ""Where is the current focus?""... Then you can observe changes. Example Delphi code is below; it should be pretty easy to adapt, since the real work is in the Windows API calls."
"AThird37";"NO";"I'm getting notifications to back up my encryption key for EFS in Vista, however i haven't enabled bit locker or drive encryption. Anyone know how to find out what files may be encrypted or have an explanation for why it would notify me?"
"AThird38";"YES";"I am pretty sure this can help! Cheers!"
"AThird39";"NO";"I have VS2005 installed. But I was afraid about installing VS2008 and lose everything. I think I have to install 3.5 framework first. Is that correct?"
"AThird40";"NO";"I want an simple IDE/editor for C in Linux to which I can add features easily. For example: I want to add a right click menu item and a related action for the editor. It should be easy to extent and add any desirable functionality. I tried eclipse CDT but its to much of learning(I mean knowing the eclipse plug-in architecture and the CDT extension points and stuff) to do for the small modification/s I want to do. Thanks, Sachin"
"AThird41";"NO";"The length of a Python Unicode string in a narrow-Unicode build is the number of UTF-16 *code units*, not actual Unicode code points. Truncating and other slicing options that go by arbitrary index can indeed split a surrogate pair in half, with the result of some missing/replaced characters. On a narrow build, `unichr(0x10345)` simply fails; `len(u'\U00010345')` is `2`. This is the price you pay for easy interaction with Win32 UTF-16LE APIs. Most other environments use UCS-4 which doesn't suffer from any such problem."
"AThird42";"NO";"We make heavy use of Velocity in our web application. While it is easy to debug the Java side of things and ensure the Velocity Context is populated correctly, it would be extremely valuable to be able to step through the parsing of the VTL on the merge step, set breakpoints, etc. Are there any tools or IDEs/IDE plugins that would make this kind of thing possible with VTL (Velocity Template Language)?"
"AThird43";"NO";"Wow, exactly what i was looking for!"
"AThird44";"NO";"If that isn't the longest qualification ever... `Throw.In.Todays.News.While.Youre.At.It(...);`"
"AThird45";"YES";"For Java see this excellent article"
"AThird46";"NO";"While you've already accepted an answer, I'll just add that there is the (somewhat little-known) css property, although it does require that the element being clipped is (which is a shame): There is a , I link to them only to link to the . I would not, however, recommend W3Schools for anything other than casual reference."
"AThird47";"NO";"If it's of any use to anyone, I made a . It removes the oldest item (bottom of stack) when it gets too big. (This question was the top Google result for ""C# limit stack size"")"
"AThird48";"NO";"I'm afraid I don't know any answer other than to start looking around in your area for old hardware. The CPU isn't the only variable that can (usually) affect things. L1/L2 cache size, memory bus speed, memory speed/latency, hard drive speed, etc. are all significant factors in many applications."
"AThird49";"NO";"Realted: http://stackoverflow.com/questions/386652/techniques-for-database-inheritance"
"AThird50";"NO";"The following article will help you: [Auto-bind byte[] to asp:Image](http://www.codeproject.com/Tips/445876/Auto-bind-byte-to-asp-Image)"
"AThird51";"YES";"See also this excellent answer: http://unix.stackexchange.com/a/90869/92102"
"AThird52";"NO";"If by 'slickest' you mean fastest, I'm afraid that Enumerable.Repeat may be 20x slower than a for loop. See : So use Dotnetguy's SetAllValues() method."
"AThird53";"YES";"Thank you very much, this is really interesting stuff!"
"AThird54";"NO";"If your worried about other people access your web service directly, you could check the calling IP address and host header and make sure it matches expected IP's addresses. If your worried about people stealing information during it's journey from the server to the client, SSL is the only way to go."
"AThird55";"NO";"I was wondering if there was somewhere I could get some starter kit / theme sample for ASP.NET. I am not a designer, but I need to build a prototype for a project, and if I do it myself it'll certainly be awful Do you know where I could find that (ASP.NET specific)?"
"AThird56";"NO";"Why is Silverlight included in the question title? SQLLite is not yet ported to Silverlight 2, and what you do on the server side doesn't really matter for the Silverlight client application."
"AThird57";"YES";"Ahh, I didn't know that the wsdl command line utility could generate one file for many asmx.... thats awesome! I'll try that out now. I can integrate that into our build process too. Great, thank!"
"AThird58";"NO";"It could also be a problem if you worried about running out of ID too fast (if you expect LOTS of records), since you're only using 1/10 of the range you have storage for."
"AThird59";"NO";"I always try to avoid to return string literals, because I fear they aren't defined outside of the function. But I'm not sure if this is the case. Let's take, for example, this function: Is this correct code? It does work for me, but maybe it only works for my compiler (gcc). So the question is, do (string) literals have a scope or are they present/defined all the time."
"AThird60";"NO";"I have created a VB.Net lending application for a cooperative that caters to widows. The application tracks the members' loans and payments, and is also used as an accounting system. In my first release, the users felt that showing a messagebox every time an error occurs is very annoying. My solution is to output errors in a label control. The users accepted the modification, but i feel i am doing it wrong."
"AThird61";"NO";"Im using the AutoPersistenceModel in Fluent NHIbernate to map all my entities and that all works fine :D However, several of my objects have In the database there is a single comments table, and each entity with the above code, has its own link table to comments. At the moment what im doing is: for every entity. Is there some way i can set a convention where by all mappings to IList<Comment> are wired up automatically as manytomany with the above table name convention? Thanks Andrew"
"AThird62";"NO";"Would use double.TryParse, it has performance benefits."
"AThird63";"NO";"""You should never use a named mutex"" - never say never. If malicious code is running on my machine, I'm probably already hosed."
"AThird64";"NO";"What are you worried about/trying to prevent ?"
"AThird65";"YES";"You made an excellent point in a comment below, @RailsSon: you want to print £s to display a specific currency, but employ that display using a Japanese expression for financial numbers. I find it strange that your request hasn't been implemented in the language by decoupling the `locale` module's use of currency value and that currency's display properties."
"AThird66";"NO";"Jonathan's comment sums up my feeling. In EF4, char(1) fields come across as string, so MS obviously recognized the pain."
"AThird67";"NO";"Wow! Yeah, I did'nt know that! Great new feature."
"AThird68";"NO";"I'm writing an Eclipse plugin for the JDT. I need a functionality that tracks certain strings or regular expressions and possibly creates markers. I know that Eclipse already does that for //TODO comments, for example (creating task markers for them) but I'm not sure if I can use the same mechanism. I can write my own but worried it would be too inefficient and not sensitive enough to code chnanges."
"AThird69";"NO";"This is a terrible idea, as a compact on a database already in a suspect state can lose data that would otherwise be recoverable before the compact. Compact On Close should under all circumstances be turned OFF."
"AThird70";"NO";"Update way later: there's actually a built in function to get the current user. I think it's in nativeApplication."
"AThird71";"NO";"FlexeLint is a commercial product which has no development history in common with Johnson's original Unix Lint, AFAIK. A non-commercial alternative is Splint."
"AThird72";"NO";"what's their max baudrate for communicating with USB converters? I looked on their website, it says 230400 but I may have misread something. (230Kbaud's not enough for my application)"
"AThird73";"NO";"Got some code here that isn't working: Basically I have 3 lists and want to add a class (last) to each item appearing last in each unordered list. Hope that makes sense, Cheers!"
"AThird74";"YES";"Nice work !! Loved it."
"AThird75";"NO";"This is similar to the accepted answer (because it is using Java to represent the newline rather than EL) but here the <c:set/> element is used to set the attribute: The following snippet also works, but the second line of the <c:set/> element cannot be indented (and may look uglier):"
"AThird76";"NO";"hI, I'm trying to get this code from Larry Nyhoff's book to compile in Bloodshed. It's actually been taken word for word from the author's website, though I declared it on .cpp instead of .h (the .h file ain't working with the tester application). The search(const DataType & item) function is what's giving me grief. The compiler error says: What I'm I missing here?"
"AThird77";"YES";"Excellent answer. This should be the selected answer."
"AThird78";"NO";"Restoring splitter distances has given me a lot of grief too. I have found that restoring them from my user settings in the form (or user control) Load event gave much better results than using the constructor. Trying to do it in the constructor gave me all sorts of weird behaviour."
"AThird79";"NO";"Any, but Solaris especially loves threads."
"AThird80";"NO";"While your basic point is correct, the code you've shown is much slower than the two versions given in the question: Afaik, you get four `int` in one cache line, that means on average you get a latency of less than 30 cycles to load the data (not considering prefetching), you have conditional jumps in your loop (modern architectures hate mispredicting those), so you get much, much more than a cycle for each loop iteration. I'd wager, your swap will take at least 100 to 200 cycles, probably more, but that heavily depends on the numbers you are swapping (how many mispredictions are made)."
"AThird81";"NO";"I guess that works, but I'd never do that. It's screaming bad practice. Think about code readability etc.. Come back to your code in six months and figure out all the function calls inside your HTML markup."
"AThird82";"NO";"[Building Tcl/Tk with Mingw](http://wiki.tcl.tk/14828)"
"AThird83";"NO";"My form receives asynchronous callbacks from another object on random worker threads. I have been passing the data to the main thread (where it can be used to update onscreen controls) using delegates as shown below. Performance is dreadful -- once I reach 500 updates per second, the program completely locks up. My GUI processing itself is not the problem, as I can simulate this level of updating within the form and have no problems. Is there a more efficient mechanism I should be using to hand off the data from thread to thread?"
"AThird84";"NO";"if the 2 structures variable are initialied with calloc or they are set with 0 by memset so you can compare your 2 structures with memcmp and there is no worry about structure garbage and this will allow you to earn time"
"AThird85";"YES";"An excellent resource I've found for CI recently is by Martin Fowler, author of the famous ""Enterprise Application Architecture"" book. URL:"
"AThird86";"NO";"I am looking at moving my company's internal business app from VB.NET to PHP. Some of the people were worried about losing GUI features that can be found in .NET. I am under the impression that with the right javascript framework, anything in .NET GUI can be replicated. While I am still researching this point, I would like to ask if form features in .NET GUI can in fact be replicated with javascript and slightly more importantly, will it take much longer to develop to get the same results?"
"AThird87";"NO";"I have wrist pain when I type and I would like to start writing SQL statements, stored procedure, and views using speech recognition."
"AThird88";"YES";"Very direct question, i need to know if its possible and maybe where to start reading about that. Im a programmer with zero experience in windows servers and a client is asking if we can deliver in their windows boxes(and no they wont let us use any kind of virtualization in them). Thanks guys, i know its not 100% programming related but... hope you can help =) EDIT: Wow, fast reply! Thanks guys!!!"
"AThird89";"NO";"The skeleton-pair mechanism mentioned in the post preamble is quite general and is built-in to emacs -- no need to fetch wrap-region for new emacs installs or worry about wrap-region's compatibility."
"AThird90";"NO";"See here: I tried retrotranslator from 1.6 to 1.4.2 and it works pretty well!"
"AThird91";"NO";"I would suggest FlexUnit for automated testing of libraries you're building but it is a serious pain to use for a full application."
"AThird92";"YES";"awesome explanation!! this is seriously awesome.."
"AThird93";"YES";"Does anyone know of a link to a reference on the web that contains a sample English dictionary word script, that can be used to populate a dictionary table in SQL Server? I can handle a .txt or .csv file, or something similar. Alternatively, I'm adding custom spellchecking functionality to my web apps...but I don't want to integrate the standard components. If there are good references (with samples) on building a dictionary word checker, I'd love that too!"
"AThird94";"NO";"To further explain: Apple once had a section in their agreement that specifically listed the allowable programming languages C, C++, Objective-C and Javascript. This was cause for a lot of confusion, doubts and fear. Eventually Apple stopped naming the languages. I know for a fact that even while this was in place, a variety of apps were on the store, being published, or in development that used Lua scripting in some way or another."
"AThird95";"NO";"reload() does not work. ""Reloading"" is usually implemented by forking. Implementing ""real"" reload() is extremely difficult and even the most serious attempt, isn't perfect."
"AThird96";"NO";"I need to get the current user too, but can't find that function... can you share the solution?"
"AThird97";"NO";"What can I do to increase the performance/speed of my PHP scripts without installing software on my servers?"
"AThird98";"NO";"7 seconds between asking and answering it yourself? Isn't that abusing the system a little?"
"AThird99";"NO";"Why do you need to have the encryption of the passphrase reversible? That's not generally desirable."
"AThird100";"NO";"For C/C++ on Windows you have (at least) two choices: Use the SerialPort class provided by .NET. Use the Win32 API. There is an dating back to 1995, and many free libraries and examples on the web to get you started. The .NET option will be much easier."
"AThird101";"NO";"Ooh, I feel your pain. I've added some more to my answer. The operator precedence is in the VB6 help"
"AThird102";"YES";"I did a lot of VRML+Java work in college and loved it, but I feel like it's not really a marketable skill. Has anyone worked with a high level graphics API like open inventor, coin..etc that is actually in use to a degree that makes investing a lot of time in the API worthwhile for something more than a hobby?"
"AThird103";"NO";"With perl you could do this:"
"AThird104";"YES";"There's for a sort that should work, but just wasn't included in the core. Referenced from , I think you just pass in a function that is used to sort, like so Hope it helps!"
"AThird105";"NO";"@grieve--from what I've read, unit tests should not hit the file system, db, or go accross the network. I'm trying to stick to those rules."
"AThird106";"YES";"You didn't mention the language, but for Java we've loved . For C/C++, getopt."
"AThird107";"NO";"I have a binary file that I have to parse and I'm using Python. Is there a way to take 4 bytes and convert it to a single precision floating point number?"
"AThird108";"NO";"This doesn't do title case, where small words (articles and prepositions) should not be capitalized."
"AThird109";"NO";"At work we use teraterm and realterm for checking serial data is correctly formatted. Also we have a hardware splitter with a switch so we can monitor traffic to our application via a cable back to another port. Windows allows you access to the serial port via CreateFile. That gives you a handle and from there you can configure access."
"AThird110";"NO";"It will create a new enumerable, which may not be desirable in some scenarios. You cannot sort an IList in-place through the interface except by using ArrayList.Adapter method in my knowledge."
"AThird111";"NO";"Another thing I hate to see is the : I've seen this in real code."
"AThird112";"YES";"This is an excellent question. I look forward to hearing an answer."
"AThird113";"NO";"You can probably instruct your web server to compress the data for you at the HTTP level, and then you won't have to worry about it on either end. For Apache, have a look at ."
"AThird114";"NO";"I have a process in erlang that is supposed to do something immediately after spawn, then send the result back to the parent when it is finished. How do I figure out the PID of the process that spawned it?"
"AThird115";"YES";"great question, wondering it myself!"
"AThird116";"NO";"false && false == false I'm afraid that you would need to make that the negation of an XOR in order to make it correct."
"AThird117";"NO";"-5 votes?? People who have downvoted this answer should have specified the reason for doing so as well."
"AThird118";"YES";"Good luck with the browser project!"
"AThird119";"YES";"@Adrian - that article was brilliant :D thanks for sharing it!"
"AThird120";"YES";"#ERROR!"
"AThird121";"NO";"Code samples would be great!"
"AThird122";"NO";"I'm trying to decode the result of the Python os.wait() function. This returns, according to the Python docs: a tuple containing its pid and exit status indication: a 16-bit number, whose low byte is the signal number that killed the process, and whose high byte is the exit status (if the signal number is zero); the high bit of the low byte is set if a core file was produced. How do I decode the exit status indication (which is an integer) to obtain the high and low byte? To be specific, how do I implement the decode function used in the following code snippet:"
"AThird123";"NO";"I'm trying to customize some TFS work items via the VS2008 xml editor, but every time I open a work item xml file it jumps to the graphical designer. All that gives me is a ""View XML"" button that doesn't let you edit the xml directly."
"AThird124";"YES";"You are Awesome !"
"AThird125";"NO";"As far as I know, and I'm definately not a hacker, you are completely fine. Really, if someone wanted to, they could exploit your code anyway clientside, but i don't see how they could exploit your server side code using javascript (unless you use server side javascript)"
"AThird126";"NO";"My application links against libsamplerate.a. I am doing this to make distributing the final binary easier. I am worried that perhaps the code inside the .a file depends on some other libraries I also will need to distribute. But if it doesn't I am worried I am bloating up my application too much by including multiple copies of eg. libc. What exactly will be inside libsamplerate.a? Just libsamperate's bytecode? Or more?"
"AThird127";"NO";"This is a copy of the question : But now is for netbeans (I'm not a eclipse lover. CTRL+TAB does not change pages.) Please, I'm very curious."
"AThird128";"NO";"Yup, I have upgraded. As this is not mission critical stuff, its for my GF's upstart business, so I have decided I want the latest, so i WANT to port this to MVC 5, i am not interested in going backwards. I guess i will have to suffer if this is the path i take. Cheers anyway."
"AThird129";"NO";"As a dev I worry about event logs getting full and then hitting an error when logging an error. But I suppose you have to deal with 'logging' failures with whatever you are logging to (file/db)."
"AThird130";"NO";"Not an exact answer I'm afraid, but this information might help."
"AThird131";"NO";"@MarkHarrison: can I use that online?"
"AThird132";"YES";"Great thanks fung! It was especially the ""Starting Our Debugging Session"" section that helped."
"AThird133";"YES";"I really liked which C++ however you can easily translate that to C# the author has a web site too."
"AThird134";"NO";"on the root window is how xbindkey does it. Be careful about having some alternative method of killing the grab though, it's very annoying to have to go somewhere to into your own box just to kill that process... And that's why, if it was me, +""echo 'moo' > /tmp/moo-fifo"" would be the way to do it. That way, you could also control it in any number of other ways you haven't thought of yet."
"AThird135";"YES";"Excellent. Thanks."
"AThird136";"NO";"This should be moved to http://area51.stackexchange.com/proposals/12932/telephony?referrer=s2GigkBNnqYlaRLwFFF1-A2"
"AThird137";"NO";"@Larsenal If you want to branch outside of .NET there has been a lot of discussion about Intel's which is a parallel library for C++."
"AThird138";"YES";"We could, but that'd mean installing wsdl2ruby and so on and so forth. Sometimes Dog Slow is fine :-)"
"AThird139";"NO";"When you say it didn't detect it do you really mean you were collecting everything and the packet you wanted wasn't there? I find that hard to believe. It doesn't need any configuration, it just works. Getting a sensible filter so it gets what you want and not loads of other crap is harder!"
"AThird140";"NO";"I'd forgotten to put the code tags around it and everything was garbled and the formatting was terrible for about the first 90 seconds of life. Apologize to those who clicked quickly and saw the garbage."
"AThird141";"NO";"I am fed up having to turn them on every time I open the application."
"AThird142";"NO";"Have you taken a look at [remotefs](http://remotefs.netbeans.org/)?"
"AThird143";"NO";"this link is dead :("
"AThird144";"NO";"After doing some more digging and hacking it turns out to not be terribly hard to drop the Cakewalk interface into an application. It's not pretty without a lot of work, but it works right away."
"AThird145";"NO";"This code is 99% correct. However, if we call Peek or Pop without putting anything on the stack, it will crash as the index is -1. This could be easily fixed by adding index bounds checking."
"AThird146";"NO";"might be an answer, but I'm afraid I can't speak from experience."
"AThird147";"NO";"If I understand this correctly: Current CPU developing companies like AMD and Intel have their own API codes (the assembly language) as what they see as the 2G language on top of the Machine code (1G language) Would it be possible or desirable (performance or otherwise) to have a CPU that would perform IL handling at it's core instead of the current API calls?"
"AThird148";"NO";"i think by using this code you can have a limited size queue..which is also Circular buffer."
"AThird149";"YES";"Excellent pair of web casts (30 minute videos) where Patrick Smacchia and Filip Ekberg talk through some of the features of nDepend and how to use them:"
"AThird150";"NO";"is the most comprehensive I've found, but it suffers from much the same problem you noted in Control Panel. Maybe you can help by updating it with any information you've found independently?"
"AThird151";"NO";"Does string immutability work by statement, or by strings within a statement? For example, I understand that the following code will allocate two strings on the heap. ""hello"" will remain on the heap until garbage collected; and s now references ""hello world!"" on the heap. However, how many strings does the following line allocate on the heap...1 or 2? Also, is there a tool/way to verify the results?"
"AThird152";"NO";"My work just gave me a quad core computer, and WOW build times are fast! (What used to take 20+ minutes now takes 7 minutes). Anyway, Visual Studio builds project in parallel (great for build times), but scrambles the output: Is there a plugin that sorts the output when the build is complete?"
"AThird153";"NO";"I've tried msysGit and Git on Cygwin. Both work just fine in and of themselves and both run gitk and git-gui perfectly. Now how the heck do I configure a mergetool? (Vimdiff works on Cygwin, but preferrably I would like something a little more user-friendly for some of our more... Windows-loving coworkers.) Thanks!"
"AThird154";"YES";"i wonder if there is something similar to Sql Profiler for Sql Server Compact Edition? i use SqlCE as backend for a desktop application and it would be really great to have something like sql profiler for this embedded database. or at least something simliar to the NHibernate show_sql feature... any ideas? thanks j."
"AThird155";"NO";"Tom - I did the Java thing from 1996 until 2002. My official reason for leaving Actuate? Microsoft understood the need for basic things like enumerated types (since added to Java but it took way too long) and excellent Windows UI support and Actuate had no interest in building .NET products."
"AThird156";"NO";"Is there a standard way to see how much stack space your app has and what the highest watermark for stack usage is during a run? Also in the dreaded case of actual overflow what happens? Does it crash, trigger an exception or signal? Is there a standard or is it different on all systems and compilers? I'm looking specifically for Windows, Linux and Macintosh."
"AThird157";"YES";"This is great, thanks for the tip!"
"AThird158";"YES";"#ERROR!"
"AThird159";"NO";"I'm afraid that's not java ;)"
"AThird160";"NO";"Wow! Very simple , but great effect..."
"AThird161";"NO";"You might want to consider using , a replacement for Windows' terrible command-line chrome. It offers fully redefinable keyboard shortcuts plus tabs, so it's ideal for IRB."
"AThird162";"NO";"Fantastic that's exactly what I was looking for!"
"AThird163";"NO";"We have a watchguard appliance at work and I'm able to connect to it using just the standard VPN client that's available under linux through NetworkManager (left click on NetworkManager -> VPN Connections -> Configure VPN)"
"AThird164";"YES";"David Flanagan's excellent book on JavaScript has an example that shows how to perform XPath queries in IE. On page 518 of fifth edition, you can see the following code snippet taken from example 21-10: I found out the hard way that this code is absolutely necessary. It appears (although I cant understand why) that on IE XMLHttpRequest seems to to randomly return a reference to either the document corresponding to the received XML or the documentElement. Whats happening here?"
"AThird165";"NO";"The StackOverflow transcripts are enormous, and sometimes I want to link to a little bit within it. How do I create an HTML anchor in a FogBugz wiki page?"
"AThird166";"NO";"As I'm a former C++ programmer that code makes me cringe. Multiple postincrements in C/C++ have ""undefined behaviour"" (i.e. it's an error, but the compiler won't tell you so.) It's legal in C# and Java will always output ""1,2,3"" but your C++ programmer colleagues will hate it."
"AThird167";"YES";"The (NLTK) is an excellent resource if you're considering Python as a language. It incorporates lots of the stuff you'd expect in a text processing/NLP environment like parsers, stemmers and part-of-speech tagging. Documentation on it is pretty good too. As for datasets, NLTK comes with a variety of for experimenting with. Hope it helps, B."
"AThird168";"NO";"@SteveKehlet however I believe it is more cleverly referred to as ""cat abuse"""
"AThird169";"NO";"It is Dependency Injection (DI) - see Martin Fowlers' descrition here: http://martinfowler.com/articles/injection.html#InversionOfControl"
"AThird170";"NO";"I worked on a desktop app that used EJB and Hibernate. We had to set everywhere, because when the objects get serialized, they lose their ability to be fetched from the backend. That's just how it goes, unfortunately. If you are concerned with performance, you could use caching on the backend so that your non-lazy fetches are not as painful."
"AThird171";"NO";"Any progress on this one? To embed complex functionality (including history-aware interactivity) on an MVC page without involving the rest of the page is a reasonable and common desire. The only alternative I see, to require the using page to track each components query-string state, is horrible."
"AThird172";"NO";"I'm writing a simple app that's going to have a tiny form sitting in one corner of the screen, updating itself. I'd really love for that form to be transparent and to have the transparency be user-configurable. Is there any easy way to achieve this?"
"AThird173";"YES";"I recently imported about 60k records into a table that relates data in one table to data in another table. However, my client has since requested that a sort order be added to all 60k records. My hope is there is a nice clean way to auto generate these sort orders in a SQL Update. The finished data should look something like this: Can this be done? Any suggestions would be hugely appreciated. --Anne"
"AThird174";"NO";"This can probably be done using JavaScript."
"AThird175";"YES";"This is really great, worked a treat thanks"
"AThird176";"NO";"Not without logging or tracing, I'm afraid"
"AThird177";"NO";"If you can edit the code, you should just re-write it to use a custom API that does what you want. Failing that, use Maximilian's technique, but be warned that it is a maintenance horror. If you cannot edit the code, you can patch the import tables to redirect calls to your own code. A description of this technique can be found in - search for the section titled ""Spying by altering of the Import Address Table"". This is dangerous, but if you're careful you can make it work. Also check out , which does the same sort of thing but doesn't require you to mess around with the actual patching."
"AThird178";"NO";"I can't seem to find the answer to this anywhere... I have a function that needs to set the bg color of two tables. Only the first table in the function is being affected. Is only one for loop allowed in a function? ...or is the 1st for loop maybe never exiting? I can pretty much work around this by creating multiple functions but I really want to understand why this behaves the way it does! Thanks! Here is my simplified code:"
"AThird179";"NO";"If you worry about the cost of Throwable.fillInStackTrace(), then I dare say you're doing it wrong :) (assuming that your definition of ""cost"" is bound to CPU cycles.)"
"AThird180";"YES";"In my company, we are currently using Qt and are very happy with it. I personnally never had to move a MFC-app into using the Qt framework, but here is something which might be of some interest for you : It's part of Qt-Solutions, so this means you'll have to buy a Qt license along with a Qt-Solutions license. (edit: ) I hope this helps !"
"AThird181";"YES";"Excellent question and I agree, it should be throwing an HTTP Not Authorized status."
"AThird182";"NO";"This ws-addressing issue is a real pain in the ass. Not only does WSS2 use an old, pre-release version of WS-Addressing, it adds propritery elements to the soap header (e.g. wsa:via) that arent part of the schema. What a crock."
"AThird183";"NO";"Ah, finally I can solve this annoying problem!"
"AThird184";"NO";"This is an open-ended question. What approaches should I consider?"
"AThird185";"YES";"Excellent answer"
"AThird186";"NO";"I'm receiving a recovery feed from an exchange for recovering data missed from their primary feed. The exchange strongly recommends listening to the recovery feed only when data is needed, and leaving the multicast once I have recovered the data I need. My question is, if I am using asio, and not reading from the NIC when I don't need it, what is the harm? The messages have sequence numbers, so I can't accidentally process an old message ""left"" on the card. Is this really harming my application?"
"AThird187";"NO";"I currently have speakers set up both in my office and in my living room, connected to my PC via two sound cards, and would like to switch the set of speakers I'm outputting to on the fly. Anyone know an application or a windows API call that I can use to change the default sound output device? It is currently a bit of a pain to traverse the existing control panel system."
"AThird188";"NO";"Note you can use memcmp() on non static stuctures without worrying about padding, as long as you don't initialise all members (at once). This is defined by C90:"
"AThird189";"YES";"for flow control Steven; the question seems to be about whether this pattern should be used, which seems to be rather subjective based on the answers, but it's an excellent question for thought."
"AThird190";"NO";"Lots of people talk about writing tests for their code before they start writing their code. This practice is generally known as Test Driven Development or TDD for short. What benefits do I gain from writing software this way? How do I get started with this practice?"
"AThird191";"NO";"I'm talking about . With streaming stackoverflow podcasts and downloading the lastest updates to ubuntu, I would like to have QoS working so I can use stackoverflow without my http connections timing out or taking forever. I'm using an iConnect 624 ADSL modem which has QoS built-in but I can't seem to get it to work. Is it even possible to control the downstream (ie. from ISP to your modem)?"
"AThird192";"NO";"@awied: you also need to worry about the situation in which a user accessibility application is driving your program."
"AThird193";"NO";"...and if you need more examples of how defining WCF contracts for non WCF services is a pain, see here http://stackoverflow.com/questions/2180676/readasdatacontract-exception-while-reading-namespace/2180811#2180811"
"AThird194";"NO";"I want to catch all URL's in the root folder of the url www.example.com The url cannot end in a trailing slash, and can't contain any slashes at all. so these should pass: www.example.com/abc www.example.com/abc123-asdf www.example.com/abc123/ ** fail! www.example.com/asdfsd/asdf ** FAIL!"
"AThird195";"NO";"If you are getting thrown off by the fact that the user/group is listed as having ""Limited Access"" on the ACLs on, say, the parent site/web. That's just a placeholder SharePoint uses to make sure people have access to at least the bare minimum set of objects (e.g. theme and other UI files and the parent web itself) to get to the list or item you actually want them to have access to. As long as the group only has access on a single list, you should have to worry about them having access to anything else."
"AThird196";"NO";"too bad this behavior isn't a setting. I think it makes sense in theory why they did it this way, but in practice it's just really annoying"
"AThird197";"NO";"If DevStudio is crashing a lot on you, you might try uninstalling any add-ins and extensions as a first step. It might save you a lot of pain."
"AThird198";"NO";"All the places I've worked have given me liberty with regard to development environment, although the production env. has always been some brand of Linux - usually RH or CentOS. I personally use Windows 7 for dev., and I wouldn't use anything else. You spend way less time debugging the OS, and more time coding. This makes management much happier! (PHP developer mostly)"
"AThird199";"NO";"To add something to this (cause I found it while searching on this problem, and my solution involved slightly more)... If you don't have a ""Browse with..."" option for .aspx files (as I didn't in a MVC application), the easiest solution is to add a dummy HTML file, and right-click it to set the option as described in the answer. You can remove the file afterward. The option is actually set in: C:\Documents and Settings[user]\Local Settings\Application Data\Microsoft\VisualStudio[version]\browser.xml However, if you modify the file directly while VS is running, VS will overwrite it with your previous option on next run. Also, if you edit the default in VS you won't have to worry about getting the schema right, so the work-around dummy file is probably the easiest way."
"AThird200";"NO";"In what language? In PHP it is: example:"
"AThird201";"NO";"Works great !"
"AThird202";"NO";"Also I would try: But I don't have Air installed so I can't really test this..."
"AThird203";"NO";"possible duplicate of [Paging SQL Server 2005 Results](http://stackoverflow.com/questions/2840/paging-sql-server-2005-results)"
"AThird204";"YES";"In JavaMail, you can use as the URL scheme to use IMAP over SSL. (See in your JavaMail distribution for more details.) For example, . Similarly, use to send emails via Gmail. e.g., . Again, read for more details. Hope it helps!"
"AThird205";"NO";"i can't find it : \"
"AThird206";"NO";"Has anyone built a website with IronPython and ASP.NET. What were your experiences and is the combination ready for prime-time?"
"AThird207";"YES";"I use ApexSQL Diff. It is an excellent tool for doing just what you're describing...compare schema, compare data, generate change scripts. It not free, but it works well. NOTE: ApexSQL Diff only works with SQL Server."
"AThird208";"NO";"Suppose we have a table A: and table B: I want to join A*B on A.itemid=B.itemid both right and left ways. i.e. result: Is there a way to do it in one query in MySQL?"
"AThird209";"NO";"Doesn't the CLR automatically release any unreleased mutexes when the application terminates anyway?"
"AThird210";"NO";"Though be aware that if the starting string is all upper case, you have to call `String.ToLower` first, since `ToTitleCase` doesn't work on all upper case strings."
"AThird211";"NO";"Becouse the web service is being used to intergrade in with a 3rd party data feed, that the customer wishes to be able to setup without having to wait for the next release of the software. E.g Excel can inport data from a web service without Microsoft kowning about the WSDL when they wrote Excel!"
"AThird212";"NO";"But the question is not as simple as assuming ... . But surely this is a Google for it question? Pretty much every regex primer you can find anywhere uses IP as an example! scores 183,000 hits!"
"AThird213";"YES";"I'd really love this to work in IE. I'm not able to change the fact that tables should not be used here. IE is the only browser the project I'm working on is required to support. Here's the code: I've been using the Tryit Editor to play with this. Thanks in advance for your help!"
"AThird214";"YES";"I know techsmith has a screen recorder api called that you can access programatically. I haven't used it, but I've used the snagit api by the same company and it's excellent."
"AThird215";"YES";"I have created a class to dynamically put together SQL function statements within a project. I have found this class to be pretty useful and would like to incorporate into future projects namespace connectionClass { } I want to be able to dynamically input the project name without having to do it myself for every different class! the connection string will be defined within the properties settings in VS. Any help would be greatly appreciated:)"
"AThird216";"YES";"Your best bet is probably TcpClient. There's a great sample that does exactly what you're doing right in the .NET Documentation here: Good luck to you!"
"AThird217";"NO";"Fantastic! This makes using ipython with --profile sh the best possible method for me to do this :)"
"AThird218";"YES";"I realize this is old, but there is an absolutely fabulous PHP Activecord library called, appropriately, PHP Activerecord. I've used it for several months and it blows away the other libraries. Check it out:"
"AThird219";"YES";"I second FlashDevelop. You don't get the visual design stuff for the MXML, but for the code (both MXML and AS) it's excellent."
"AThird220";"NO";"I'm in the process of implementing a binary tree in C++. Traditionally, I'd have a pointer to left and a pointer to right, but manual memory management typically ends in tears. Which leads me to my question... Are data structures an appropriate place to use shared_ptr?"
"AThird221";"NO";"How is it invariant if you're using the current culture?"
"AThird222";"NO";"Events firing are delegate invocations, which are a But dealing with interfaces for subscriber/publisher/observer/observable scenario is more painful that using events."
"AThird223";"NO";"The overlapping part is an excellent point. Its also worth clarifying the question as to which is most common in the case of substrings of varying length."
"AThird224";"NO";"Here's a Perl solution Here's a Ruby solution Here's a Ruby one-liner solution: What the one-liner is doing is using a regular expression substitution of the first character of each word with the uppercase version of it."
"AThird225";"YES";"I have a query that is simply selecting from 3 tables. select from the comments table for all comments on an article select from UserID table to find what kind of user it is IF the user is one type, search one table...ELSE search another table for the final info. How would I go about this? I'm a little new at MySQL stuff, so i totally appreciate your patience! PS - let me know if this isnt clear... Thanks!"
"AThird226";"YES";"Take a 200th upvote for an excellent question."
"AThird227";"NO";"Emil takes the prize!"
"AThird228";"NO";"I'm not sure why this is marked down. AutoHotkey is an excellent solution when you need to do something that you just can't do using an existing API. It has many safeguards that can be used to ensure that the correct program is targeted. There are many possibilities. The answer that is marked as an answer, isn't an answer. It just an obvious statement which is the reason the question was asked in the first place. I would suggest anyone marking down this answer should first look into AutoHotkey and learn what it can do. It should be built into windows."
"AThird229";"NO";"Part of the reason why this is ""Dog Slow"" is that you are building the proxy every time you connect to the service. You could avoid this pain by using wsdl2ruby to build the proxy permanently and then call the pre-generated proxy."
"AThird230";"NO";"In Perl: That's even in the FAQ."
"AThird231";"YES";"Excellent comment, Flea. My head asplode."
"AThird232";"NO";"May want to replace `""\\""` with `File.separator` to make it work on linux."
"AThird233";"NO";"I'd like to be able to see what registry keys are used for. A book on the registry would be fine as well. Info on Windows Vista changes would be great!"
"AThird234";"NO";"What is the replacement string for an image url? (edit your question to add this info). For example, what is the desirable result for ""http://www.mysite.com/nonono.jpg""?"
"AThird235";"NO";"The ebook summarises Thread.Suspend and Thread.Resume thusly: The deprecated Suspend and Resume methods have two modes – dangerous and useless! The book recommends using a synchronization construct such as an or to perform thread suspending and resuming."
"AThird236";"NO";"I tested this code out with an Access 2007 database with no exceptions (I went as high as 13000 inserts). However, what I noticed is that it is terribly slow as you are creating a connection every time. If you put the ""using(connection)"" outside the loop, it goes much faster."
"AThird237";"NO";"log4php has great functionality but for me it worked very slow!"
"AThird238";"NO";"Programming Student here...trying to work on a project but I'm stuck. The project is trying to find the miles per gallon per trip then at the end outputting total miles and total gallons used and averaging miles per gallon How do I loop back up to the first question after the first set of questions has been asked. Also how will I average the trips...will I have to have a variable for each of the trips? I'm stuck, any help would be great!"
"AThird239";"YES";"totally awesome"
"AThird240";"NO";"If I can avoid it, no. And, to my knowledge, there is always a way to avoid it. But I'm not stating that it's totally useless either"
"AThird241";"YES";"Strange - No one mentioned GEdit (Gnome) or OpenKomodo (Windows, Mac, GNU/Linux...). Both of them are great! OpenKomodo especially deals with tabs and spaces very well. And - it's free. Whee! When I need a lighter weight thingy, I just use GEdit. Download OpenKomodo here -"
"AThird242";"NO";"I am suffering from the problem in the first example - my enums don't show up at all. This answer doesn't even attempt to address that issue."
"AThird243";"NO";"I just came across this idiom in some open-source Python, and I choked on my drink. Rather than: or even: the code read: I can see this is the same result, but is this a typical idiom in Python? If so, is it some performance hack that runs fast? Or is it just a once-off that needs a code review?"
"AThird244";"YES";"Craig Shoemaker has made an excellent show on asp.net caching:"
"AThird245";"NO";"No, I never did figure it out - good luck!"
"AThird246";"YES";"Both of these answers were really helpful - thanks!"
"AThird247";"YES";"Great question!"
"AThird248";"YES";"Take a look at [this answer](http://stackoverflow.com/a/18646797/2697658). Hope it helps!"
"AThird249";"YES";"Google led me to solution (base64_encode). Hope this helps!"
"AThird250";"NO";"Actually it doesn't even have to be malicious code. It could just be a accidental name collision."
"AThird251";"NO";"Ew, that sounds a bit ugly! Is it possible for an instance of a class to be created before its unit's initialization section has run? In other words could an instance of TMyObject try to use FLogger before it's been set in the initialization section?"
"AThird252";"YES";"I'm new to developing web applications using the .NET framework. I'm just wondering if .NET has any support for saving a custom int value for each (logged in) user? Could I perhaps use the HttpContext.User property or something? I'd be really grateful for some help on this! /Ylva"
"AThird253";"NO";"RegEx is a horrible option for performing replaces on a large amount of text. As powerful as it is, many RegEx proponents see all the world as a nail and RegEx as their hammer. For use cases involving large amounts of text, look at FastReplacer http://stackoverflow.com/a/11442008/141172"
"AThird254";"NO";"@Jason: what's so horrible with using ajax and query string to update parts of a page?"
"AThird255";"YES";"Thomas Becker (author of the second link above) has a longer article which is excellent: http://www.artima.com/cppsource/type_erasure.html"
"AThird256";"YES";"I'm building a marketplace application that uses PayPal Express. I've got a form for sellers to input their PayPal API credentials, but I need a way to validate them by making some sort of call to PayPal. I'm using the PaypalExpressGateway in ActiveMerchant, and I don't see anything other than the standard purchase controls. Is there any sort of null-operation that can be used? Any help would be greatly appreciated!"
"AThird257";"YES";"Very well put, I really like this !!!"
"AThird258";"NO";"In that case I'm afraid you're not going to get this to do what you want. You could do it with javascript if you have control over that & you want to go down that road, but it's a dark, scary road with dragons ;)"
"AThird259";"NO";"If you are not forced to use a particular compiler I suggest to use Qt and in the new 5.3 version you will find a class dedicated to serial ports: The code you will write will run on all supprited Qt platforms, at least those that have serial ports."
"AThird260";"NO";"I have a .net assembly that has a COM+ ServicedCopmonent in it and at the moment I install it into the GAC to get everything working. This means that I need to have every assembly that it references in the GAC as well. During development it is quite painful to make changes to thes assemblies, re-install them to the GAC and then test. Is it possible to maintain the COM+ component but not have everything in the GAC?"
"AThird261";"NO";"Make sure that the file has svn:keywords ""Rev Id"" and then put $Rev$ somewhere in there. See ."
"AThird262";"NO";"I lost my MySQL username and password. How do I retrieve it?"
"AThird263";"NO";"But why the custom `WorkMethod` delegate instead of `Action`?"
"AThird264";"NO";"I have found Html Helpers extremely useful to simplify view pages code. Apart from the ones included in the latest release of Asp.Net Mvc which one do you use? How much you can reuse them in different projects and are they linked only to html generation or did you put some custom logic inside?"
"AThird265";"YES";"awesome - what started off as a gripe turned into a real educational experience - thanks everyone!"
"AThird266";"NO";"I've knocked up a basic version of what I'm looking for, it's not perfect but it'll do the job until something better comes along."
"AThird267";"NO";"Bookmark the Use your web browser's find-text command. Unexpected as it may seem, I find this is actually quicker than using , which for some reason seems to take ages to start up. It is also much better than because the HTML page lists all the documentation for all the methods on a single page. Often methods are related to others, and switching between 2 's is painful"
"AThird268";"YES";"Too awesome! This actually answered an unasked question of mine, how to stop people from cutting off others in my corporate meeting."
"AThird269";"NO";"Use case for me: So I can compare objects against a MSSQL Compact Entity without worrying about how they typed the fields. (I am comparing an object against a compact database where some fields are name isSomething and IsSomething.) In other words, for sake of laziness."
"AThird270";"YES";"Creating custom types can be done in PowerShell. Kirk Munro actually has two great posts that detail the process thoroughly. The book also has a code sample for creating a domain specific language to create custom types. The book is excellent all around, so I really recommend it. If you are just looking for a quick way to do the above, you could create a function to create the custom object like"
"AThird271";"NO";"I think your question would be more appropriately phrased as ""What are some recommended ways to handle auditing in a database?"""
"AThird272";"NO";"Well, keep in mind that (in theory) you have the original code to help, as well as the text of the log messages. The only thing that should be obfuscated would be the class and member names. In addition, many tools (Dotfuscator is one) create a map file to tell you what obfuscated construct name maps back to which original name - this can make it a pain to figure out exactly where the log messages come from, but nowhere near impossible."
"AThird273";"NO";"Great point - will change!"
"AThird274";"NO";"2 million unique visitors per hour? Wow! Is this Experts Exchange or some (other) pr0n site? ;-)"
"AThird275";"NO";"Matt - can you revue the accepted answer. You have to scroll a long way to get to a [pure javascript answer](http://stackoverflow.com/a/5686237/360211) and I fear some users just take the accepted answer as gospel and use antiquated libraries as a result."
"AThird276";"NO";"@Cocowalla: the finalizer should dispose the unmanaged mutexes unless it can't know if the mutex was created by the managed app or attached to an existing one."
"AThird277";"NO";"The class in Java has only two data members, a reference to an array and a size—which you need anyway if you don't use an . So the only advantage to not using an is saving one object allocation, which is unlikely ever to be a big deal. If you're creating and disposing of many, many instances of your container class (and by extension your instance) every second, you might have a slight problem with garbage collection churn—but that's something to worry about if it ever occurs. Garbage collection is typically the least of your worries."
"AThird278";"NO";"lint is constantly updated... so why would you want a more recent one. BTW flexelint is lint"
"AThird279";"NO";"dont mark this guy down. technically he is correct http://martinfowler.com/bliki/InversionOfControl.html IoC is a very general principal. Flow of control is ""inverted"" by dependency injection because you have effectively delegated dependancies to some external system (e.g. IoC container)"
"AThird280";"NO";"It's generally better to keep them open. If you're concerned about being able to read them from another process, you need make sure that the share mode you use to open/create them allows others to read them (but not write to them, obviously). If you're worried about losing data in the event of a crash, you should periodically flush/commit their buffers."
"AThird281";"NO";"List comprehension performance link is dead :("
"AThird282";"YES";"Thanks djuth, this works great and is very simple! I have to admit it is pretty limiting though, for example, I would love to have it autocomplete a staff name and then return a staffID but I can probably play around with what's added and parsed."
"AThird283";"NO";"I think we have a downvoter enthusiast :)"
"AThird284";"NO";"Are there any tools to assist with the internationalization of Strings within JSP files? Most IDEs (for example, ) offer such a feature for Java code. However, in the case of NetBeans, no such feature exists for JSP files. With , for example, there is are various tools out there that assist with extracting text Strings from code. Something similar for JSP would be great!"
"AThird285";"NO";"There are major oversights in the CSS spec related to basic page layout. Sad. It is about as well thought out as HTML."
"AThird286";"NO";"You could use FindWindow to get the HWND of the window, then use the BringWindowToTop function found in the Win32 API."
"AThird287";"NO";"Are you really sure you need to use a cursor? Those are not supposed to be the first choice in SQL Server these days. In fact, many experts abhor them."
"AThird288";"NO";"i was searching for this one quiet desperately and the simplest one seemed to work! it worked in chrome 7.0.5 and ie 8.0.6"
"AThird289";"NO";"This is a problem with Windows Firewall that is very annoying from its introduction. And persist trough several versions of windows. I have two questions: Is it possible to be disabled or at least require confirmation in XP/2003 Server ? Does UAC handles this in Vista/2008 server? If it does not - is there any way to disable it?"
"AThird290";"NO";"I have a silverlight control (View) which displays a list of items in a specified property of the datacontext (viewmodel). What I need is for the scrollviewer in my control to scroll to the top or bottom depending on where the latest item has been added to the list. (It'll always be either the beginning or the end of the list, I don't need to worry about middle of list insertions.) In WPF i'd just use the DataContextChanged event to start listening to the viewmodel, but in silverlight that event is internal. Any ideas on how to tackle this?"
"AThird291";"YES";"Thank you Gumbo, I suppose this'll have to do. I would've liked a more concise solution but thank you anyway, I never knew this js-uri class existed!"
"AThird292";"NO";"I need to pass a regex substitution as a variable: This, of course, doesn't work. I tried eval'ing the substitution: but that didn't work either. What horribly obvious thing am I missing here?"
"AThird293";"NO";"This was annoyingly annoying... If you have a the need to export your RegexBuddy history you can take a look at , which prints to the console your history, also as Json."
"AThird294";"YES";"Great question!"
"AThird295";"NO";"How do I code for a company icon to appear on the left-side next to the URL address in the browser's address bar?"
"AThird296";"YES";"if/when you figure this out - you definitely need to share it back to the world.. I'd love something like this!"
"AThird297";"YES";"@Marlon: commendable attitude. If you still have it in 18 years, I'll be first in line to work for your canonization. (Grumble grumble, get off my lawn, et cetera)"
"AThird298";"NO";"I'm working on a webservice + AJAX interface, and I'm worried about authentication. This moment I'm passing username and password to the webservice as arguments, but I fear that this approach is highly insecure. I was told that ssl could solve my problem, but I want more alternatives. My webservice is written in php and my interface is in php + AJAX. The webservice receives arguments from POST or GET and retreives xml (in a future maybe I'll use JSON)"
"AThird299";"YES";"How come this doesn't work (operating on an empty select list But this does: Replace: var dropdownList = $(""#requestTypes""); With plain old javascript: var dropdownList = document.getElementById(""requestTypes""); Any insights greatly appreciated!!"
"AThird300";"NO";"/me works out more what your code does and screams in agony."
"AThird301";"NO";"Got a spite downvote, it's still a valid question."
"AThird302";"NO";"I have a session where they are, in fact, getting mixed up. http://stackoverflow.com/questions/1646274/asp-net-session-mix-up-using-stateserver-scary"
"AThird303";"NO";"This doesn't do title case, where small words (articles and prepositions) should not be capitalized."
"AThird304";"NO";"Wow! I always thought double quotes were required!"
"AThird305";"YES";"is a really great option for git. Most of the free, public hosting sights will insist that you license your code with an OSS license (and, possibly, your documentation). That's potentially a different thing that you're talking about (backups). For just backups, you may want to try a for-pay service or even something like ."
"AThird306";"NO";"Unfortunately if you want to make this an open API, many people will be unable to use Content-Type headers. The sad reality is that you usually need to allow some hacks, even if you permit the standardized way too."
"AThird307";"NO";"Why would you want to do that?? No offense, but that is the most annoying and useless 'feature' ever!"
"AThird308";"YES";"I really love anonymous inner classes..."
"AThird309";"NO";"I've got a really simple powershell script (see below). I've got installutil aliased using the following in my profile: In powershell I simply: This returns successfully. (Install/Commit both complete successfully). Yet when I check the registry, or in powershell using get-pssnapin -registered it doesn't show my assembly. I did this the other day and it worked fine, but I don't seem to be able to duplicate it ... please advise. }"
"AThird310";"NO";"Apparently there's the very obvious ""Client"" property which I completely missed!"
"AThird311";"YES";"This doesn't appear to be an answer to the question, and only tangentially related to the topic (this questions is about dealing with `Date` objects in JavaScript, not with parsing text to create `Date` objects). If this is an actual answer that you're posting with a differing method from the other answers, it isn't clear what that difference is. This may best be represented by a comment instead of an answer, or by another question altogether. If you have questions about what content belongs where, http://stackoverflow.com/faq might be helpful to you. Hope you enjoy the site!"
"AThird312";"NO";"anyone have any experience of using them together? How well does it work? or is it just too much grief?"
"AThird313";"YES";"Tried it, loved it. Using it right now."
"AThird314";"YES";"#ERROR!"
"AThird315";"NO";"Just a general FYI: It is [almost *always* better](http://philosopherdeveloper.wordpress.com/2010/05/05/re-throwing-caught-exceptions/) to simply `throw;` instead of `throw e;`"
"AThird316";"NO";"This is a horrible solution. It will silently fail for floats. It also lacks parentheses."
"AThird317";"NO";"Vista + latest XAMPP + latest xdebug.dll works fine!"
"AThird318";"NO";"When opening Adobe Acrobat Pro, whether it be through Applescript or finder, the introductory dialog is shown. Is there a way to not show this dialog without already having checked the ""Don't Show Again"" option when opening a document using Applescript? Photoshop and Illustrator Applescript libraries have ways of setting interaction levels and not showing dialogs, but I can't seem to find the option in Acrobat."
"AThird319";"NO";"@NoBugs a NullPointerException can be thrown for 1000 reasons. Are you sure you load the .wav correctly? Are you sure it is in the right path? IIRC, the .wav file should be inside the compiled jar. Although I might be terribly wrong."
"AThird320";"YES";"recently I've been reading through Scott Meyers's excellent book. In one of the last tips he covered some of the features from TR1 - I knew many of them via Boost. However, there was one that I definitely did NOT recognize: tr1::reference_wrapper. How and when would I use tr1::reference_wrapper?"
"AThird321";"NO";"I'm working with an Access database and I need to concatenate different related rows into 1 row. I found a solution and used it with great success. However I need to add extra conditions to it, it should only be done if certain other columns are equal too. For example: 1 X Alpha 2 Y Beta 1 X Gamma 1 Z Delta should become 1 X Alpha,Gamma 1 Z Delta 2 Y Beta Does anyone know to do this, especially for a newbie like me?"
"AThird322";"NO";"Using it is painfully easy to access movies from the IMDB site: However I see no way to get the picture or thumbnail of the movie cover. Suggestions?"
"AThird323";"NO";"Give her full access, if she wants it. She's supposed to manage the project you are developing, and to do that efficiently, she might need to be able to look at any part of the project. Of course, there's always danger that she might do something stupid or malicious. If you have as part of your process auditing of any changes, you'll be able to find out if she messes anything."
"AThird324";"NO";"One of the IIS developers has an excellent walkthrough here: However, for the love of god why?"
"AThird325";"YES";"I love the way you assimilated another answer!"
"AThird326";"YES";"(Python Remote Objects) is fairly clever if all your server/clients are going to be in Python. I use alot though since I'm communicating with hosts that are not always Python. XMPP lends itself to being extended fairly easily too. There is an excellent XMPP library for python called which is reasonably up to date and has no dependancy on Twisted."
"AThird327";"YES";"Excellent method for minor changes. Just what I was looking for. Thank you."
"AThird328";"NO";"For the record, this code is not thread safe without additional locking (which is absolutely fine, thread safety was never part of the design specs for this class)."
"AThird329";"YES";"I have been given a .Hive file from a registry which i have to parse and use the contents as part of a html report(from this i assume i have to convert to text somehow). The whole thing must be done within the program so i cant just convert the hive file and then run it through my program. I currently have no idea how to even start this so any help on this would be great. Any ideas would be fantastic!"
"AThird330";"NO";"How can I get programmatic access to the call stack?"
"AThird331";"NO";"Make a custom button: That'll get rid of that annoying border! ;-)"
"AThird332";"YES";"Have you tried logging into Linux as your installed Oracle user then When you log in you'll be able to change your password. Good luck :)"
"AThird333";"YES";"Just a personal opinion, not an actual answer but... I love those login forms (not pages) which just shows up in the center of the page and after you type in your username and password you are logged in without ever leaving the current page!"
"AThird334";"NO";"IMO it is painful to debug as you tend to have no intermediary variables for inspection."
"AThird335";"NO";"no, it is extremely bad idea."
"AThird336";"NO";"Is there a way to run a specific Ant task via the keyboard? I have a rsync to dev task that I run a lot and running to the mouse to double-click is a pain."
"AThird337";"NO";"in our continuous integration setup we use SVNRevisionLabeller and pass the variables from this to MSBuild to use when creating the compiled website dll. It's then available to .NET using GetCurrentAssembly() in the final build."
"AThird338";"NO";"This is flat wrong I'm afraid - you should follow W3C guidelines: http://www.w3schools.com/DTD/dtd_el_vs_attr.asp - XML should not be formed on readability or on making it ""compact"" - but rather using elements or attributes correctly for the purpose which they were designed for."
"AThird339";"NO";"I hope fortune favors the brave :)"
"AThird340";"NO";"I've tried with Postsharp, but their current implementation targets 2.0, and it's getting painful to make it work. Should I roll out my own AoP implementation (I'm thinking of a very VERY basic and utilitarian implementation here) Or there is an alternative I'm not aware of?"
"AThird341";"NO";"I have a column containing the strings 'Operator (1)' and so on until 'Operator (600)' so far. I want to get them numerically ordered and I've come up with which is very very ugly. Better suggestions?"
"AThird342";"NO";"Given a handle of type HWND is it possible to confirm that the handle represents a real window?"
"AThird343";"NO";"In our eternal quest to integrate Javascript into our RSpec and Cucumber workflow we're evaluating and are provisionally very excited about it. Any advice on Culerity in general or specifically as compared to Selenium?"
"AThird344";"NO";"Out of the box, in MS Reporting Services, the image element does not allow for the centering of the image itself, when the dimensions are unknown at design time. In other words, the image (if smaller than the dimensions allotted on the design surface) will be anchored to the top left corner, not in the center. My report will know the URL of the image at runtime, and I need to be able to center this image if it is smaller than the dimensions specified in my designer."
"AThird345";"YES";"I would say yes, it was Anders Heljsberg's intent to make the observer pattern a first-class language feature with events in C#, based on his experience with Delphi. Anders makes this and other design intentions clear in an excellent interview on ."
"AThird346";"NO";"-1 This isn't language agnostic."
"AThird347";"YES";"An excellent book I have, which covers this topic, is , by Clifton Nock. It has got many good explanations and good ideas on how to decouple your business layer from the persistence layer. You really should give it a try. It's one of my favorite books."
"AThird348";"NO";"I see Microsoft is still at it with their horrible magic version control stuff..."
"AThird349";"NO";"I would avoid it for module globals certainly. For variables restricted to local scope, so you can see the same function isn't ever going to need to use the builtin, it's not something I'd worry about."
"AThird350";"NO";"Why do you believe that ""template metaprogramming is all the rage""?"
"AThird351";"YES";"If you're looking for a free alternative to Red Gate's most excellent SQL Compare, you might want to check SQLDBDigg made by . It's what I used until I caved and bought SQL Compare."
"AThird352";"NO";"I'm afraid it can't be done, the psudo-class selectors can't be set in-line, you'll have to do it on the page or on a stylesheet. I should mention that technically you should be able to do it , but most browsers don't support it Edit: I just did a quick test with this: And it doesn't work in IE7, IE8 beta 2, Firefox or Chrome. Can anyone else test in any other browsers?"
"AThird353";"NO";"As TraumaPony said. Simply load the main game assembly in to Visual Studio and try to compile it. It won't if you try to make a reference to an assembly outside the those that ship with the 360."
"AThird354";"NO";"SetWindowPos + SWP_NOACTIVATE does the job."
"AThird355";"NO";"Not available in silverlight. See other C# answer(s)"
"AThird356";"NO";"How can I find the high water mark (the historical maximum number of concurrent users) in an oracle database (9i)."
"AThird357";"NO";"more than 7? How about more than 2 or 3? Remembering the argument ordering in constructors is a real pain."
"AThird358";"NO";"@Michael: dude, I feel your pain (since my HOWTO search led me here)."
"AThird359";"NO";"My SPD doesn't reformat my code when I edit master pages. While I don't know why your does, rejoice that there is an answer"
"AThird360";"NO";"Background: I'm currently debugging an application written over a custom-built GUI framework in C++. I've managed to pin down most bugs, but the bugs I'm having the most trouble with tend to have a common theme. All of them seem to be to do with the screen refreshing, redrawing or updating to match provided data. This is a pain to debug, because I can't break on every refresh, and most of this stuff is time-sensitive, so breakpoints occasionally ""fix"" the bug. Q: Does anyone have any tips for debugging Windows-based GUIs, especially regarding the refreshing of individual components?"
"AThird361";"NO";"Is the local server on your dev pc being accessed by name or IP address. The issue could be related DNS resolution."
"AThird362";"NO";"For OTP and other processes using `proc_lib`, see [How to find the supervisor of an OTP process?](http://stackoverflow.com/questions/4132317/how-to-find-the-supervisor-of-an-otp-process)"
"AThird363";"YES";"I always seem to use Get when working with data (strongly typed or otherwise) from the database and I have never really needed to use Fill although I just as easily could use Fill instead of get when pulling out and updating data. Can anyone provide guidance as to the implications and gotchas of each method? In what situations is it preferable to use one or the other? Any performance implications? Thanks in advance for the answers! I love this community!"
"AThird364";"NO";"Rebuild your machine. Things just get mucked up after a while, and in the process you'll clean out all the muck you've accumulated in Windows in addition to the Visual Studio muck. It seems harsh, but after you do it a couple times it's really faster, less painful, and more complete than trying to track down a bunch of random issues."
"AThird365";"NO";"Here's an implementation in Python: And a port of this implementation that I've just done in C++:"
"AThird366";"YES";"Designing with Web Standards is a great first read!"
"AThird367";"NO";"also check out the project at codeplex which is a tutorial of sorts on parallelization using .net among other things:"
"AThird368";"NO";"It's supposed to work via FastCGI. But I haven't had great success (using Vista). I can get PHP to run, but it crashes after a page loads (FastCGI does). So I'm modding you up. I'd like to see a reliable answer myself."
"AThird369";"NO";"Something that has always bugged me is how unpredictable the method in Javascript is. In my experience, the timer is horribly inaccurate in a lot of situations. By inaccurate, I mean the actual delay time seems to vary by 250-500ms more or less. Although this isn't a huge amount of time, when using it to hide/show UI elements the time can be visibly noticeable. Are there any tricks that can be done to ensure that performs accurately (without resorting to an external API) or is this a lost cause?"
"AThird370";"YES";"six more years and still loving it."
"AThird371";"NO";"Is there a way to reuse a 3rd party control reference? For example, I have this referenced in my App.xaml I don't want to repeat this 3rd party control xml namespace on each page/control that needs a control from the library. Is there anyway to centralize these references and use the prefix defined here? The possibility of each control having a different prefix is also worrisome. In asp.net you would put a reference in the web.config and it was available globally, I'm just looking to see if there is a similar method in WPF."
"AThird372";"NO";"I'm new to development (an admin by trade) and I'm setting up my development environment and I would like to set up a CruiseControl.Net server on Server 2008. A quick Google did not turn up any instructions for getting it running on IIS 7.0, so I was wondering if anyone had experience getting this set up."
"AThird373";"NO";"I prefer this method, I can get just the peice I want and don't have to worry about whether or not the string is well formed enough to get the port. +1"
"AThird374";"YES";"Congratulations on the new job! Relax and keep your cool. Read something on . I guess, the process itself will make sure you are productive as long as you apply common sense :)"
"AThird375";"NO";"I have a need to explore VOIP integration into a .Net application. It would be incredibly helpful if the toolset was usable via ASP.Net (version 2.0 or higher), and provided the developer the option to allow interaction on the client either embedded within the web browser or external to the client web browser. It should be compatible at a minimum with Internet Explorer, but would be better if browser independence were an option."
"AThird376";"NO";"I think you should write your own functions that achieve CRUD unless you are stressed for time. it might be a framework on it's own but you need to learn what the framework does before screaming framework....it also becomes handy to know these things because you can easily pickup bugs on the framework and fix them your self........"
"AThird377";"NO";"We're in the process of packaging combinations of our products/modules. Some of them are stand-alone some are interdependent. All versions must be deployable side-by-side. As it is we're considering two choices: One MSI per package and version One MSI per product/module and version The first alternative would mean that combinations of the same merge modules would be delivered in several packages. The second alternative represents the simpler path. Can you give some advice on the subject? Will any of the alternatives cause grief in the longer run?"
"AThird378";"NO";"Yep. I gave up actively deleting stuff off my hard drive a long time ago. Just like with gmail, with decent search it's easier to just archive everything rather than worry about sorting, filing, and deleting it."
"AThird379";"YES";"A quick remark to the excellent answer by Troy, if the version you downloaded is the newer one, 3.2, the Quick Nav has been remapped to Ctrl + Shift + Q."
"AThird380";"NO";"That's exactly the point - HTMLEncode does not protect you against mistakes. Of course, the programmer expected somevar to contain 23 - its just that nasty attacker that decided to shove a blank in..."
"AThird381";"NO";"Maybe it helps someone else: you can use www.browserstack.com to access VMs with different browser versions directly from the dev machine. (i have no affiliation with the company)"
"AThird382";"NO";"Those official guidelines are for developing class libraries, and only apply to the **public** elements not the private ones."
"AThird383";"NO";"Here is the equivalent C prototype for the Delphi function: int csd_HandleData(char* aBuf, int aLen); Nothing earth-shattering, but maybe it will get an answer from someone afraid to contribute because of unfamiliarity with Delphi."
"AThird384";"NO";"humans only agree with each other 70% of the time even in polarity sentiment analysis. Jeff's point, while not very encouraging, does accurately reflect how extremely difficult is to get anywhere with this."
"AThird385";"NO";"A colleague recently asked me how to deep-clone a Map and I realized that I probably have never used the clone() method- which worries me. What are the most common scenarios you have found where you need to clone an object?"
"AThird386";"NO";"I have a Java application that's very String-heavy - it takes a feed of huge numbers of big, different String objects. Do I need to worry about the String Constant Pool for memory and performance? Is there any way to see how big the pool is at any point?"
"AThird387";"NO";"The solution is crying out for the MSMQ solution but unfortunately the posting service is not on the domain. Is there anyway to post to the public queue that is on the domain from the machine in the DMZ? I could use a webservice to post but this is a extra component to maintain. The database table is the alternative solution but again it is not the ideal."
"AThird388";"NO";"Sorting the hashes is also a possibility that I have considered. I'm a bit concerned about memory usage, but I'll worry about that later."
"AThird389";"NO";"The reason to build it into the language is that it can get painful when you want a hierarchy of chainable objects that return the most derived type. Currently, you have to have `` generics to allow subclasses to change the return type so calling methods don't lose scope of the object they are calling. Building into the jvm removes this ugliness. Plus, instead of a return statement, it can just push a reference to this on the stack as needed; an ""on demand return"" instead of an ""always return"" that can be hard to optimize out when you don't use it."
"AThird390";"NO";"I found a library that makes it easy to get my oAuth_token and oAuth_token_secret with c#. If I'm trying to make a POST to a RESTful web service (ie. ) how are those two keys leveraged to varify authentication. A C# example would be awesome!"
"AThird391";"NO";"I've been trimming the UI of our website by doing the following in the onload event of that control: This has become very tedious because there are so many controls to check again and again. As soon as I get it all working, designers request to change the UI and then it starts all over. Any suggestions?"
"AThird392";"NO";"I agree. It's clear that you are on the threshold of either using a library or writing your own. Go get jQuery and just use it as you see fit in your project, starting with this. Here's to happier days!"
"AThird393";"NO";"but (early optimization == root(evil)) != (Performance doesen't matter)"
"AThird394";"YES";"Excellent summary of subject on StackExchange security blog: http://security.blogoverflow.com/2011/11/why-passwords-should-be-hashed/"
"AThird395";"NO";"Probably your answer is better given as a comment."
"AThird396";"YES";"I'm interested in seeing the answer to this as well. :) Good luck!"
"AThird397";"NO";"That's horrible."
"AThird398";"NO";"AT what stage are you populating the ListBox? I fear you are doing it too late to be persisted in the page, if ViewState is not somehow disabled."
"AThird399";"NO";"We ended up using a Java applet. It was a nightmare. Normally it would have been awful, but as this was for the 2008 Beijing Olympics, the added distance & language differences made it a nightmare. In the end, it worked ""enough."" But again, nightmare. I would not recommend it."