This repository has been archived by the owner on Nov 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
fpkws_body.nbts
2592 lines (1937 loc) · 113 KB
/
fpkws_body.nbts
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
<p>On both the conservative and liberal sides of the ledger there are vote scoring organizations, like the Heritage Action Scorecard, that will allow you to do just that.</p>
<p><a href="http://heritageactionscorecard.com/" rel="nofollow">http://heritageactionscorecard.com/</a></p>
<p>practically any small VM without compositing.</p>
<p>New on scene is for example LXQt, which are trying create fully capable lightweight desktop.</p>
<p><a href="http://lxqt.org/" rel="nofollow">LXQt Lightweight Desktop Manager</a></p>
<h3>Background:</h3>
<p>About three weeks ago, I attended a career fair at my school. The decision was made last minute, so I didn't know I needed to bring a résumé. In fact, I didn't even have one because this was the first time I had taken action towards getting a summer internship (I'm a junior in college). It has taken me the past three weeks to write a résumé I feel confident sending in.</p>
<h3>Question:</h3>
<p>When e-mailing companies, what are the pros and cons of mentioning that I met them at the career fair? Will it be beneficial because there is a greater connection, or harmful because it raises the question of why I didn't apply sooner? Should I bother explaining everything to them, or is that just superfluous fluff? Is there any specific thing I should try to mention or be careful to avoid?</p>
<h3>Potentially relevant details:</h3>
<p>I don't have the actual e-mails of any of the people I spoke with, just generic [email protected] pamphlets and business cards. Furthermore, I'm having a hard time remembering the names of the specific people I spoke with.</p>
<p>You can write your own Android app. Or use some existing solution like <a href="http://www.blynk.cc/" rel="nofollow">Blynk</a>.</p>
<p>"\w" Matches any word character (alphanumeric & underscore). Only matches low-ascii characters (no accented or non-roman characters). Equivalent to [A-Za-z0-9_]
Best source to learn : <a href="http://regexr.com" rel="nofollow">www.regexr.com</a></p>
<p>"\w" Matches any word character (alphanumeric & underscore). Only matches low-ascii characters (no accented or non-roman characters). Equivalent to [A-Za-z0-9_]
Best source to learn : <a href="http://regexr.com" rel="nofollow">www.regexr.com</a></p>
<p>"\w" Matches any word character (alphanumeric & underscore). Only matches low-ascii characters (no accented or non-roman characters). Equivalent to [A-Za-z0-9_]
Best source to learn : <a href="http://regexr.com" rel="nofollow">www.regexr.com</a></p>
<p>I am implementing bootstrap onto an asp.net page and the boostrap dropdown is working great on my laptop but not on my iphone 6 plus. When I click on the dropdown on my iphone, nothing happens.</p>
<p>I have searched high and low and nothing seems pertinent to my situation. I am wondering if it is the lack of an ajax script statement, but I have tried that and it doesn't seem to help.</p>
<p>Here is my code. I would appreciate any help to get this working on mobiel devices:</p>
<pre><code><script runat="server">
</script>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>
<script src="bt/JS/jquery.min.js"></script>
<script src="bt/JS/bootstrap.min.js"></script>
<link href="bt/css/bootstrap.min.css" rel="stylesheet" />
<link href="CustomStyles.css" rel="stylesheet" />
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.6/css/bootstrap.min.css" />
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-9 col-md-12 col-sm-12 col-xs-12">
<div class="row">
<div class="col-xs-12">
<div class="maincontent">
<h1 align="center"><center><b>PEAK TESTOSTERONE</b></center></h1>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-2">
<div class="dropdown" >
<a class="dropdown-toggle" data-toggle="dropdown">
The Big T<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="hdr_Testosterone.aspx">Testosterone</a></li>
<li><a href="hdr_Estrogen.aspx">Est</a></li>
</ul>
</div>
</div>
<div class="col-xs-2">
<div class="dropdown" >
<a class="dropdown-toggle" data-toggle="dropdown">
Hormones<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="hdr_Testosterone.aspx">Testosterone</a></li>
<li><a href="hdr_Estrogen.aspx">Est</a></li>
</ul>
</div>
</div>
<div class="col-xs-2">
<div class="dropdown" >
<a class="dropdown-toggle" data-toggle="dropdown">
Erectile<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="hdr_Testosterone.aspx">Testosterone</a></li>
<li><a href="hdr_Estrogen.aspx">Est</a></li>
</ul>
</div>
</div>
<div class="col-xs-2">
<div class="dropdown" >
<a class="dropdown-toggle" data-toggle="dropdown">
Peak Plan<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="hdr_Testosterone.aspx">Testosterone</a></li>
<li><a href="hdr_Estrogen.aspx">Est</a></li>
</ul>
</div>
</div>
<div class="col-xs-2">
<div class="dropdown" >
<a class="dropdown-toggle" data-toggle="dropdown">
AntiAging<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="hdr_Testosterone.aspx">Testosterone</a></li>
<li><a href="hdr_Estrogen.aspx">Est</a></li>
</ul>
</div>
</div>
<div class="col-xs-2">
<div class="dropdown" >
<a class="dropdown-toggle" data-toggle="dropdown">
PlantBased<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="hdr_Testosterone.aspx">Testosterone</a></li>
<li><a href="hdr_Estrogen.aspx">Est</a></li>
</ul>
</div>
</div>
</div>
</code></pre>
<p>Make sure you're spelling everything right. Also, if your email is a gmail account, be sure to put @gmail.com at the end of it; it's a Hotmail account, make sure to put @Hotmail.com, and that applies to whatever website your email account is on.</p>
<p>I have been searching for the anime "Xingji Biaoche Wang" aka Galaxy Racers someone please suggest a site where I can get this one?</p>
<p>In my research I have come across a pretty reliable solution for sort/filter/group for complex tabular data. It's from Oracle from their Application Express solution (APEX 5.0). The feature is called an Interactive Report. Here's the link to the end-user guide:
<a href="http://bit.ly/2eiBubx" rel="nofollow">Using Interactive Reports</a>. </p>
<p>We have Developers who have simplified and customized to add/remove capabilities. We just implemented it for a UAT as solution for internal data analysts. User testing has come back very positive for the amount of control they have in comparison to their current capabilities. Obviously this is not a solution for Web sites, but for internal apps for data analysts it is quite powerful.</p>
<p>Is there any method to download livestreamed videos? I'm not talking about just regular videos, but livestreamed ones</p>
<p>I tried <a href="http://github.com/chrippa/livestreamer" rel="nofollow">github.com/chrippa/livestreamer</a> and HiDownload Platinum but neither worked for me</p>
<p>I am specifically trying to rip videos from <a href="http://Piczel.tv" rel="nofollow">Piczel.tv</a> </p>
<p>Anyone want to help me on this? Anything will be appreciated!</p>
<p>I want certain pages on my website to load below the header, at the second menu bar. All the pages that I want to do this are using a different template from the rest of the site, so is there a way I can add something to that particular template's file to do this? Ideally it would load at a certain div. </p>
<p>I searched the web for ages looking for a solution but everything I tried ranged between doing nothing and breaking the entire site, not sure I know enough about this stuff. </p>
<p>Here's a page from my site that is using the template </p>
<p><a href="http://www.brightonyouthcentre.org.uk/skateboarding/" rel="nofollow">http://www.brightonyouthcentre.org.uk/skateboarding/</a></p>
<p>Thanks</p>
<p>I want certain pages on my website to load below the header, at the second menu bar. All the pages that I want to do this are using a different template from the rest of the site, so is there a way I can add something to that particular template's file to do this? Ideally it would load at a certain div. </p>
<p>I searched the web for ages looking for a solution but everything I tried ranged between doing nothing and breaking the entire site, not sure I know enough about this stuff. </p>
<p>Here's a page from my site that is using the template </p>
<p><a href="http://www.brightonyouthcentre.org.uk/skateboarding/" rel="nofollow">http://www.brightonyouthcentre.org.uk/skateboarding/</a></p>
<p>Thanks</p>
<p>I want certain pages on my website to load below the header, at the second menu bar. All the pages that I want to do this are using a different template from the rest of the site, so is there a way I can add something to that particular template's file to do this? Ideally it would load at a certain div. </p>
<p>I searched the web for ages looking for a solution but everything I tried ranged between doing nothing and breaking the entire site, not sure I know enough about this stuff. </p>
<p>Here's a page from my site that is using the template </p>
<p><a href="http://www.brightonyouthcentre.org.uk/skateboarding/" rel="nofollow">http://www.brightonyouthcentre.org.uk/skateboarding/</a></p>
<p>Thanks</p>
<p>I am working on a program to detect wrinkles taken from a high resolution camera.
Currently the project is in its starting phase. I have performed the following steps until now: </p>
<ol>
<li>Convert to grayscale and contrast the image. </li>
<li>Remove noise using Gaussian Blur.</li>
<li>Apply Adaptive threshold to detect wrinkles.</li>
<li>Use dilation to enhance the size of the detected wrinkle and join disparate elements of a single wrinkle as much as possible. </li>
<li>Remove noise by finding the contours and removing the ones with lesser areas. </li>
</ol>
<p>Here is the code of the same : </p>
<pre><code>package Wrinkle.Detection;
import java.util.ArrayList;
import java.util.List;
import org.opencv.core.Core;
import org.opencv.core.CvType;
import org.opencv.core.Mat;
import org.opencv.core.MatOfPoint;
import org.opencv.core.Scalar;
import org.opencv.core.Size;
import org.opencv.highgui.Highgui;
import org.opencv.imgproc.Imgproc;
public class DetectWrinkle {
private Mat sourceImage;
private Mat destinationImage;
private Mat thresh;
public void detectUsingThresh(String filename) {
sourceImage = Highgui.imread(filename, Highgui.CV_LOAD_IMAGE_GRAYSCALE);
//Contrast
Mat contrast = new Mat(sourceImage.rows(), sourceImage.cols(), sourceImage.type());
Imgproc.equalizeHist(sourceImage, contrast);
Highgui.imwrite("wrinkle_contrast.jpg", contrast);
//Remove Noise
destinationImage = new Mat(contrast.rows(), contrast.cols(), contrast.type());
Imgproc.GaussianBlur(contrast, destinationImage,new Size(31,31), 0);
Highgui.imwrite("wrinkle_Blur.jpg", destinationImage);
//Apply Adaptive threshold
thresh = new Mat();
Imgproc.adaptiveThreshold(destinationImage, thresh, 255, Imgproc.ADAPTIVE_THRESH_GAUSSIAN_C, Imgproc.THRESH_BINARY_INV, 99, 10);
Highgui.imwrite("wrinkle_threshold.jpg", thresh);
// dilation
Mat element1 = Imgproc.getStructuringElement(Imgproc.MORPH_RECT, new Size(2*3+1, 2*6+1));
Imgproc.dilate(thresh, thresh, element1);
Highgui.imwrite("wrinkle_thresh_dilation.jpg", thresh);
//Find contours
List<MatOfPoint> contours = new ArrayList<MatOfPoint>();
Mat image32S = new Mat();
Mat threshClone = thresh.clone();
threshClone.convertTo(image32S, CvType.CV_32SC1);
Imgproc.findContours(image32S, contours, new Mat(), Imgproc.RETR_FLOODFILL,Imgproc.CHAIN_APPROX_SIMPLE);
//Find contours with smaller area and color them to black (removing furhter noise)
Imgproc.cvtColor(thresh, thresh, Imgproc.COLOR_GRAY2BGR);
for (int c=0; c<contours.size(); c++) {
double value = Imgproc.contourArea(contours.get(c));
if(value<500){
Imgproc.drawContours(thresh, contours, c, new Scalar(0, 0, 0), -1);
}
}
Highgui.imwrite("wrinkle_contour_fill.jpg", thresh);
}
public static void main(String[] args) {
DetectWrinkle dw = new DetectWrinkle();
System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
String imagefile = "wrinkle_guo (1).bmp";
dw.detectUsingThresh(imagefile);
}
}
</code></pre>
<p><strong>Question:</strong>
As you can see from the result shown below in the images, a single wrinkle on the skin is getting broken down into separate small elements. Here, I am trying to connect those elements to show the complete wrinkle by using dilate. Once it is done, I am removing the noise by first detecting the contours, calculating the area of the contours and then removing the contours with area less than a particular value.</p>
<p>However, this is not giving me a proper result so I feel that there could be some better way of joining the broken wrinkle elements. Please help me solve this. </p>
<p>And please pardon me if there is anything wrong with the question as I really need a solution and I am a newbie here. </p>
<p>Following are the images : </p>
<p><a href="https://i.stack.imgur.com/QodmU.jpg" rel="nofollow">Input image</a>
<a href="https://i.stack.imgur.com/ZVrm3.jpg" rel="nofollow">After getting contours and removing noise by finding contour area</a></p>
<p>I am working on a program to detect wrinkles taken from a high resolution camera.
Currently the project is in its starting phase. I have performed the following steps until now: </p>
<ol>
<li>Convert to grayscale and contrast the image. </li>
<li>Remove noise using Gaussian Blur.</li>
<li>Apply Adaptive threshold to detect wrinkles.</li>
<li>Use dilation to enhance the size of the detected wrinkle and join disparate elements of a single wrinkle as much as possible. </li>
<li>Remove noise by finding the contours and removing the ones with lesser areas. </li>
</ol>
<p>Here is the code of the same : </p>
<pre><code>package Wrinkle.Detection;
import java.util.ArrayList;
import java.util.List;
import org.opencv.core.Core;
import org.opencv.core.CvType;
import org.opencv.core.Mat;
import org.opencv.core.MatOfPoint;
import org.opencv.core.Scalar;
import org.opencv.core.Size;
import org.opencv.highgui.Highgui;
import org.opencv.imgproc.Imgproc;
public class DetectWrinkle {
private Mat sourceImage;
private Mat destinationImage;
private Mat thresh;
public void detectUsingThresh(String filename) {
sourceImage = Highgui.imread(filename, Highgui.CV_LOAD_IMAGE_GRAYSCALE);
//Contrast
Mat contrast = new Mat(sourceImage.rows(), sourceImage.cols(), sourceImage.type());
Imgproc.equalizeHist(sourceImage, contrast);
Highgui.imwrite("wrinkle_contrast.jpg", contrast);
//Remove Noise
destinationImage = new Mat(contrast.rows(), contrast.cols(), contrast.type());
Imgproc.GaussianBlur(contrast, destinationImage,new Size(31,31), 0);
Highgui.imwrite("wrinkle_Blur.jpg", destinationImage);
//Apply Adaptive threshold
thresh = new Mat();
Imgproc.adaptiveThreshold(destinationImage, thresh, 255, Imgproc.ADAPTIVE_THRESH_GAUSSIAN_C, Imgproc.THRESH_BINARY_INV, 99, 10);
Highgui.imwrite("wrinkle_threshold.jpg", thresh);
// dilation
Mat element1 = Imgproc.getStructuringElement(Imgproc.MORPH_RECT, new Size(2*3+1, 2*6+1));
Imgproc.dilate(thresh, thresh, element1);
Highgui.imwrite("wrinkle_thresh_dilation.jpg", thresh);
//Find contours
List<MatOfPoint> contours = new ArrayList<MatOfPoint>();
Mat image32S = new Mat();
Mat threshClone = thresh.clone();
threshClone.convertTo(image32S, CvType.CV_32SC1);
Imgproc.findContours(image32S, contours, new Mat(), Imgproc.RETR_FLOODFILL,Imgproc.CHAIN_APPROX_SIMPLE);
//Find contours with smaller area and color them to black (removing furhter noise)
Imgproc.cvtColor(thresh, thresh, Imgproc.COLOR_GRAY2BGR);
for (int c=0; c<contours.size(); c++) {
double value = Imgproc.contourArea(contours.get(c));
if(value<500){
Imgproc.drawContours(thresh, contours, c, new Scalar(0, 0, 0), -1);
}
}
Highgui.imwrite("wrinkle_contour_fill.jpg", thresh);
}
public static void main(String[] args) {
DetectWrinkle dw = new DetectWrinkle();
System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
String imagefile = "wrinkle_guo (1).bmp";
dw.detectUsingThresh(imagefile);
}
}
</code></pre>
<p><strong>Question:</strong>
As you can see from the result shown below in the images, a single wrinkle on the skin is getting broken down into separate small elements. Here, I am trying to connect those elements to show the complete wrinkle by using dilate. Once it is done, I am removing the noise by first detecting the contours, calculating the area of the contours and then removing the contours with area less than a particular value.</p>
<p>However, this is not giving me a proper result so I feel that there could be some better way of joining the broken wrinkle elements. Please help me solve this. </p>
<p>And please pardon me if there is anything wrong with the question as I really need a solution and I am a newbie here. </p>
<p>Following are the images : </p>
<p><a href="https://i.stack.imgur.com/QodmU.jpg" rel="nofollow">Input image</a>
<a href="https://i.stack.imgur.com/ZVrm3.jpg" rel="nofollow">After getting contours and removing noise by finding contour area</a></p>
<p>The helicopter option is popular with Hong Kong's high rollers, looking to hit the tables in Macau.</p>
<p><a href="http://www.skyshuttlehk.com/" rel="nofollow">http://www.skyshuttlehk.com/</a></p>
<p>How do I get Information regarding Law suits faces or Settled or pending on a private Ltd. Or public ltd. Company in india
Please Give me full procedure</p>
<p>I feel your pain. There a couple of things that you might want to consider after knowing that:</p>
<ol>
<li>Laser ink is a dye-sublimation ink. In short, this means that this process is about using heat to transfer the pigment to the paper. It's just not ink sitting ON the paper, but imbeds into the fibers of the paper. So, when sitting out in the hot sun, the heat is activating the ink once again creating a hot mess. Ugh.</li>
</ol>
<p>Read more on dye sublimation: <a href="https://en.wikipedia.org/wiki/Dye-sublimation_printer" rel="nofollow">https://en.wikipedia.org/wiki/Dye-sublimation_printer</a></p>
<ol start="2">
<li>Second, the gloss paper has its own coating, thus, creating a secondary mess in hot weather.</li>
</ol>
<p>You might consider:</p>
<ul>
<li>Moving the box to shade </li>
<li>Digitally printing on uncoated paper, or</li>
<li>Having a plastic sign printed with the same flyer design that's large
enough to have buyers take photos of, or</li>
<li>On your realtor sign, include a tiny url (<a href="http://tinyurl.com/" rel="nofollow">http://tinyurl.com/</a>) of the direct link to the specs on your Web site.</li>
</ul>
<p>HTH!</p>
<p>Lisa</p>
<p>I feel your pain. There a couple of things that you might want to consider after knowing that:</p>
<ol>
<li>Laser ink is a dye-sublimation ink. In short, this means that this process is about using heat to transfer the pigment to the paper. It's just not ink sitting ON the paper, but imbeds into the fibers of the paper. So, when sitting out in the hot sun, the heat is activating the ink once again creating a hot mess. Ugh.</li>
</ol>
<p>Read more on dye sublimation: <a href="https://en.wikipedia.org/wiki/Dye-sublimation_printer" rel="nofollow">https://en.wikipedia.org/wiki/Dye-sublimation_printer</a></p>
<ol start="2">
<li>Second, the gloss paper has its own coating, thus, creating a secondary mess in hot weather.</li>
</ol>
<p>You might consider:</p>
<ul>
<li>Moving the box to shade </li>
<li>Digitally printing on uncoated paper, or</li>
<li>Having a plastic sign printed with the same flyer design that's large
enough to have buyers take photos of, or</li>
<li>On your realtor sign, include a tiny url (<a href="http://tinyurl.com/" rel="nofollow">http://tinyurl.com/</a>) of the direct link to the specs on your Web site.</li>
</ul>
<p>HTH!</p>
<p>Lisa</p>
<p>We say (in Mexico) the same with:
- "No digas pendejadas". Stop bullshitting me. Or,
- "Me estas echando el rollo, verdad guey". You are bullshitting me, right asshole?</p>
<p>The relay rating is up to the mark. But I am doubtful regarding the connector. This type of relay is called as <a href="http://www.dnatechindia.com/ttype_relay.html" rel="nofollow">T-relay</a> you can easily make your own <a href="http://www.dnatechindia.com/Tutorial/8051-Tutorial/Interfacing-Relay-to-Microcontroller.html" rel="nofollow">relay driver circuit</a> for driving this relay.</p>
<p>I think you want to generate lat long and get geolocation address accordingly on single click.</p>
<p>If its TRUE : then you can call <strong>GetAddress();</strong> inside <strong>onSuccess</strong> method at the end.</p>
<p>If not please explain me what exactly do you want?</p>
<p>J</p>
<p>A being of Light ought to be perceived by any other living being. For all living beings are partly of Light. </p>
<p>Were Londo not partly of Light, he would not have regrets in his life, or for another example, he would not have watched the attack on the Narn homeworld with discomfort.</p>
<p>When he stated that he saw nothing, two possibilities can explain his answer. </p>
<p>One, having been "touched by the Shadows", having immersed himself in Darkness, he felt uncomfortable not only in the presence of Kosh but also at admitting he witnessed a gesture of sacrifice - a point which was presented in exactly the previous episode with the Inquisitor. Sacrifice not for millions only but even for one single soul! Even if this sacrifice remains without acknowledgement. Spoiler yet another similar display of the thesis, when later on Z'Ha'Dum Kosh tells Sheridan to let (his life) go. </p>
<p>Sacrifice, those "touched by the Darkness", those in the Dark Side cannot afford.</p>
<p>Another alternative is if we assume that </p>
<p>Londo has no soul.</p>
<p>[email protected]</p>
<p>A being of Light ought to be perceived by any other living being. For all living beings are partly of Light. </p>
<p>Were Londo not partly of Light, he would not have regrets in his life, or for another example, he would not have watched the attack on the Narn homeworld with discomfort.</p>
<p>When he stated that he saw nothing, two possibilities can explain his answer. </p>
<p>One, having been "touched by the Shadows", having immersed himself in Darkness, he felt uncomfortable not only in the presence of Kosh but also at admitting he witnessed a gesture of sacrifice - a point which was presented in exactly the previous episode with the Inquisitor. Sacrifice not for millions only but even for one single soul! Even if this sacrifice remains without acknowledgement. Spoiler yet another similar display of the thesis, when later on Z'Ha'Dum Kosh tells Sheridan to let (his life) go. </p>
<p>Sacrifice, those "touched by the Darkness", those in the Dark Side cannot afford.</p>
<p>Another alternative is if we assume that </p>
<p>Londo has no soul.</p>
<p>[email protected]</p>
<p>i'm trying to make login page that get data fro php file by Json. it works fine until i use this sentence [jsonData objectForKey:@"state"] , an exception appears. i tried to make another dictonary like some answers to question before. but nothing is working with me.</p>
<ul>
<li><p>(IBAction)login:(id)sender {
@try {</p>
<pre><code>NSString *post =[[NSString alloc] initWithFormat:@"email=%@&password=%@",[firsttext text],[second text]];
NSLog(@"PostData: %@",post);
NSURL *url=[NSURL URLWithString:@"http://itsolution.co.in/coverageapi/login.php"];
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];
[NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:[url host]];
NSError *error = nil;
NSHTTPURLResponse *response = nil;
NSData *urlData=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSLog(@"Response code: %d", [response statusCode]);
if ([response statusCode] >=200 && [response statusCode] <300)
{
NSString *responseData = [[NSString alloc]initWithData:urlData encoding:NSUTF8StringEncoding];
NSLog(@"Response ==> %@", responseData);
SBJsonParser *jsonParser = [SBJsonParser new];
NSDictionary *jsonData = (NSDictionary *) [jsonParser objectWithString:responseData error:nil];
NSLog(@"jsondata %@",jsonData);
NSInteger success = [(NSNumber *) [jsonData objectForKey:@"success"] integerValue];
NSLog(@"%d",success);
if(success == 1)
{
NSLog(@"Login SUCCESS");
} else {
NSLog(@"failed");
}
} else {
if (error) NSLog(@"Error: %@", error);
}
</code></pre>
<p>}
@catch (NSException * e) {
NSLog(@"Exception: %@", e);
}
}</p></li>
</ul>
<p>i'm trying to make login page that get data fro php file by Json. it works fine until i use this sentence [jsonData objectForKey:@"state"] , an exception appears. i tried to make another dictonary like some answers to question before. but nothing is working with me.</p>
<ul>
<li><p>(IBAction)login:(id)sender {
@try {</p>
<pre><code>NSString *post =[[NSString alloc] initWithFormat:@"email=%@&password=%@",[firsttext text],[second text]];
NSLog(@"PostData: %@",post);
NSURL *url=[NSURL URLWithString:@"http://itsolution.co.in/coverageapi/login.php"];
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];
[NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:[url host]];
NSError *error = nil;
NSHTTPURLResponse *response = nil;
NSData *urlData=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSLog(@"Response code: %d", [response statusCode]);
if ([response statusCode] >=200 && [response statusCode] <300)
{
NSString *responseData = [[NSString alloc]initWithData:urlData encoding:NSUTF8StringEncoding];
NSLog(@"Response ==> %@", responseData);
SBJsonParser *jsonParser = [SBJsonParser new];
NSDictionary *jsonData = (NSDictionary *) [jsonParser objectWithString:responseData error:nil];
NSLog(@"jsondata %@",jsonData);
NSInteger success = [(NSNumber *) [jsonData objectForKey:@"success"] integerValue];
NSLog(@"%d",success);
if(success == 1)
{
NSLog(@"Login SUCCESS");
} else {
NSLog(@"failed");
}
} else {
if (error) NSLog(@"Error: %@", error);
}
</code></pre>
<p>}
@catch (NSException * e) {
NSLog(@"Exception: %@", e);
}
}</p></li>
</ul>
<p>i'm trying to make login page that get data fro php file by Json. it works fine until i use this sentence [jsonData objectForKey:@"state"] , an exception appears. i tried to make another dictonary like some answers to question before. but nothing is working with me.</p>
<ul>
<li><p>(IBAction)login:(id)sender {
@try {</p>
<pre><code>NSString *post =[[NSString alloc] initWithFormat:@"email=%@&password=%@",[firsttext text],[second text]];
NSLog(@"PostData: %@",post);
NSURL *url=[NSURL URLWithString:@"http://itsolution.co.in/coverageapi/login.php"];
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];
[NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:[url host]];
NSError *error = nil;
NSHTTPURLResponse *response = nil;
NSData *urlData=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSLog(@"Response code: %d", [response statusCode]);
if ([response statusCode] >=200 && [response statusCode] <300)
{
NSString *responseData = [[NSString alloc]initWithData:urlData encoding:NSUTF8StringEncoding];
NSLog(@"Response ==> %@", responseData);
SBJsonParser *jsonParser = [SBJsonParser new];
NSDictionary *jsonData = (NSDictionary *) [jsonParser objectWithString:responseData error:nil];
NSLog(@"jsondata %@",jsonData);
NSInteger success = [(NSNumber *) [jsonData objectForKey:@"success"] integerValue];
NSLog(@"%d",success);
if(success == 1)
{
NSLog(@"Login SUCCESS");
} else {
NSLog(@"failed");
}
} else {
if (error) NSLog(@"Error: %@", error);
}
</code></pre>
<p>}
@catch (NSException * e) {
NSLog(@"Exception: %@", e);
}
}</p></li>
</ul>
<p>I am building a Windows Phone 8.1 app on which same the video is playing on all pages in the background. My problem is that when the app service calls on any page, the video starts distorting/jerky. </p>
<p>I have used following link to implement video playing:</p>
<p><a href="http://windowsapptutorials.com/windows-phone/general/integrating-video-file-in-windows-phone-8-and-windows-8-app-as-app-background/" rel="nofollow">Integrating video file in Windows Phone 8 and Windows 8 app as app background</a></p>
<pre><code> buttonClicked = self.sender()
index = self.table.indexAt(buttonClicked.pos())
print index.row()
</code></pre>
<pre><code> buttonClicked = self.sender()
index = self.table.indexAt(buttonClicked.pos())
print index.row()
</code></pre>
<h1>Spam</h1>
<p>We still get too much of it. The built-in filters do an awesome job keeping a lot of it out of our faces, but they're not catching everything.</p>
<p><a href="http://chat.stackexchange.com/rooms/11540/charcoal-hq">SmokeDetector</a> is reporting spam posts for people to flag, which is generating about <a href="https://metasmoke.erwaysoftware.com/admin/api_feedback" rel="nofollow">100 flags a day</a>. That's around 50-60 posts per day, across the network.</p>
<p>That's decreasing, but it's still 50-60 posts more than we need.</p>
<p>A couple of months ago, Pops came around and did a feasibility study on integration between the two systems. The results of that seemed pretty favourable - to quote Pops:</p>
<blockquote>
<p><a href="http://chat.stackexchange.com/transcript/message/31634754#31634754">Seriously though, that's crazy impressive.</a></p>
</blockquote>
<p>As part of this quality project, I'd like to see us do something about spam - that may be working out an integration strategy, it may be something else on SE's end, or it may be something that doesn't need SE involvement - but let's see how low we can get those spam numbers.</p>
<p>Just copy this: ℝ</p>
<p>iiiiiiiiiiiii</p>
<p>Just copy this: ℝ</p>
<p>iiiiiiiiiiiii</p>
<h2>Lua(5.2), 144 bytes</h2>
<pre><code>k,a,p,q=loadstring,arg,io.write,print l,d=k"for i=3,a[1]do p(a[5])end",k"for i=1,a[2]do q(a[4])end"b=a[3]p(b)l()q(b)d()p(b)l()q(b)d()p(b)l()p(b)
</code></pre>
<p><a href="https://goo.gl/9NImBc" rel="nofollow" title="Try it!">Try it online! (Coding Ground)</a></p>
<p>It should output something like that right now:</p>
<pre><code>+@@@@@+
l
l
+@@@@@+
l
l
+@@@@@+
</code></pre>
<p>Own input: <code>7 2 + l @</code></p>
<p>You can change the input in project->compile options and there change the values, each value as in the example but not separated by commas but by spaces.</p>
<h2>Lua(5.2), 144 bytes</h2>
<pre><code>k,a,p,q=loadstring,arg,io.write,print l,d=k"for i=3,a[1]do p(a[5])end",k"for i=1,a[2]do q(a[4])end"b=a[3]p(b)l()q(b)d()p(b)l()q(b)d()p(b)l()p(b)
</code></pre>
<p><a href="https://goo.gl/9NImBc" rel="nofollow" title="Try it!">Try it online! (Coding Ground)</a></p>
<p>It should output something like that right now:</p>
<pre><code>+@@@@@+
l
l
+@@@@@+
l
l
+@@@@@+
</code></pre>
<p>Own input: <code>7 2 + l @</code></p>
<p>You can change the input in project->compile options and there change the values, each value as in the example but not separated by commas but by spaces.</p>
<p>I just made my first custom PC. I plugged everything in and when I turned on the PC the fans and lights went on but the monitor says that there is no signal. I am using an integrated graphics on a F2A68HM-H motherboard with an AMD Athlon Multi-Core Processor. It has 8 GB of Balistic Sport ram and a WD terabyte hard-drive. Do I need a graphics card to fix the problem? Or is it something else?</p>
<p>The monitor works when I use it for my other computer and so does the cable.
AMD Athlon X4 860K: <a href="http://amzn.to/22DTC4c" rel="nofollow">http://amzn.to/22DTC4c</a>
8GB Crucial Ballistix Sport: <a href="http://amzn.to/1XVAecj" rel="nofollow">http://amzn.to/1XVAecj</a></p>
<p>I have create a <strong>BroadcastReceiver</strong> where I get my type of call(incoming/outgoing).The problem is that the app is giving me the following exception when i try to record the call:</p>
<blockquote>
<p>Stop() called but track is not started 10-17 15:44:38.910 1209-1209/?
E/MediaRecorder: start failed: -38 10-17 15:44:38.910 1209-1209/?
E/Call_recorder:: IllegalStateException 10-17 15:44:38.910 1209-1209/?
W/System.err: java.lang.IllegalStateException 10-17 15:44:38.910
1209-1209/? W/System.err: at
android.media.MediaRecorder.start(Native Method) 10-17 15:44:38.910
1209-1209/? W/System.err: at
food_nutrition.com.callrecorder1loadcallsinsql.recording.Recording.startRecording(Recording.java:117)
10-17 15:44:38.910 1209-1209/? W/System.err: at
food_nutrition.com.callrecorder1loadcallsinsql.recording.CallReceiver.onIncomingCallStarted(CallReceiver.java:22)
10-17 15:44:38.911 1209-1209/? W/System.err: at
food_nutrition.com.callrecorder1loadcallsinsql.recording.PhonecallReceiver$PhonecallStartEndDetector.onCallStateChanged(PhonecallReceiver.java:95)
10-17 15:44:38.911 1209-1209/? W/System.err: at
android.telephony.PhoneStateListener$2.handleMessage(PhoneStateListener.java:295)
10-17 15:44:38.911 1209-1209/? W/System.err: at
android.os.Handler.dispatchMessage(Handler.java:102) 10-17
15:44:38.911 1209-1209/? W/System.err: at
android.os.Looper.loop(Looper.java:148) 10-17 15:44:38.911 1209-1209/?
W/System.err: at
android.app.ActivityThread.main(ActivityThread.java:5417) 10-17
15:44:38.911 1209-1209/? W/System.err: at
java.lang.reflect.Method.invoke(Native Method) 10-17 15:44:38.911
1209-1209/? W/System.err: at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
10-17 15:44:38.911 1209-1209/? W/System.err: at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616) 10-17
15:44:38.911 1209-1209/? D/Call recorder::: Stoped recording 10-17
15:44:38.911 1209-1209/? D/Call_recorder:: RecordService
stopAndReleaseRecorder 10-17 15:44:38.912 1209-1209/? E/MediaRecorder:
stop called in an invalid state: 0 10-17 15:44:38.912 1209-1209/?
E/Call_recorder:: IllegalStateException 10-17 15:44:38.912 1209-1209/?
W/System.err: java.lang.IllegalStateException 10-17 15:44:38.912
1209-1209/? W/System.err: at
android.media.MediaRecorder.stop(Native Method) 10-17 15:44:38.912
1209-1209/? W/System.err: at
food_nutrition.com.callrecorder1loadcallsinsql.recording.Recording.stopAndReleaseRecorder(Recording.java:50)
10-17 15:44:38.912 1209-1209/? W/System.err: at
food_nutrition.com.callrecorder1loadcallsinsql.recording.Recording.terminateAndEraseFile(Recording.java:25)
10-17 15:44:38.912 1209-1209/? W/System.err: at
food_nutrition.com.callrecorder1loadcallsinsql.recording.Recording.startRecording(Recording.java:135)
10-17 15:44:38.912 1209-1209/? W/System.err: at
food_nutrition.com.callrecorder1loadcallsinsql.recording.CallReceiver.onIncomingCallStarted(CallReceiver.java:22)
10-17 15:44:38.912 1209-1209/? W/System.err: at
food_nutrition.com.callrecorder1loadcallsinsql.recording.PhonecallReceiver$PhonecallStartEndDetector.onCallStateChanged(PhonecallReceiver.java:95)
10-17 15:44:38.912 1209-1209/? W/System.err: at
android.telephony.PhoneStateListener$2.handleMessage(PhoneStateListener.java:295)
10-17 15:44:38.912 1209-1209/? W/System.err: at
android.os.Handler.dispatchMessage(Handler.java:102) 10-17
15:44:38.912 1209-1209/? W/System.err: at
android.os.Looper.loop(Looper.java:148) 10-17 15:44:38.912 1209-1209/?
W/System.err: at
android.app.ActivityThread.main(ActivityThread.java:5417) 10-17
15:44:38.912 1209-1209/? W/System.err: at
java.lang.reflect.Method.invoke(Native Method) 10-17 15:44:38.912
1209-1209/? W/System.err: at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
10-17 15:44:38.912 1209-1209/? W/System.err: at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616) 10-17
15:44:38.913 1209-1209/? D/Call_recorder:: RecordService deleteFile
10-17 15:44:38.914 1209-1209/? D/Call_recorder:: FileHelper deleteFile
/storage/emulated/0/Pro_recordedCalls_Automatic/d20161017154436p38762667266tincomingmfalse.3gp
10-17 15:44:38.914 1209-1209/? D/Call_recorder:: RecordService
deleteFile</p>
</blockquote>
<p>I'm unable to figure out the why is it not able to record it.</p>
<p>Here is my code:</p>
<p>PhonecallReceiver:</p>
<pre><code>public abstract class PhonecallReceiver extends BroadcastReceiver {
public static boolean wasRinging;
static PhonecallStartEndDetector listener;
protected Context savedContext;
String DEVICE_COUNTRY;
public Recording recording;
@Override
public void onReceive(Context context, Intent intent) {
recording = new Recording();
savedContext = context;
if (listener == null) {
listener = new PhonecallStartEndDetector();
}
if (intent.getAction().equals("android.intent.action.NEW_OUTGOING_CALL")) {
listener.setOutgoingNumber(intent.getExtras().getString("android.intent.extra.PHONE_NUMBER"));
return;
}
TelephonyManager telephony = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
DEVICE_COUNTRY = telephony.getNetworkCountryIso();
telephony.listen(listener, PhoneStateListener.LISTEN_CALL_STATE);
}
protected abstract void onIncomingCallStarted(String number, Date start, Context ctx,String country);
protected abstract void onOutgoingCallStarted(String number, Date start, Context ctx,String country);
protected abstract void onIncomingCallEnded(String number, Date start, Date end, Context ctx,String country);
protected abstract void onOutgoingCallEnded(String number, Date start, Date end, Context ctx,String country);
public class PhonecallStartEndDetector extends PhoneStateListener {
int lastState = TelephonyManager.CALL_STATE_IDLE;
Date callStartTime;
boolean isIncoming;
String savedNumber;
public PhonecallStartEndDetector() {
}
public void setOutgoingNumber(String number) {
savedNumber = number;
}
@Override
public void onCallStateChanged(int state, String incomingNumber) {
super.onCallStateChanged(state, incomingNumber);
if (lastState == state) {
//No change, debounce extras
return;
}
switch (state) {
case TelephonyManager.CALL_STATE_RINGING:
wasRinging = true;
break;
case TelephonyManager.CALL_STATE_OFFHOOK:
if (!wasRinging) {
//Log.d("jusuf","call state I'm calling");
isIncoming = false;
callStartTime = new Date();
onOutgoingCallStarted(savedNumber, callStartTime, savedContext,DEVICE_COUNTRY);
} else {
//Log.d("jusuf","call answered");
isIncoming = true;
callStartTime = new Date();
savedNumber = incomingNumber;
onIncomingCallStarted(incomingNumber, callStartTime, savedContext,DEVICE_COUNTRY);
}
wasRinging = true;
break;
case TelephonyManager.CALL_STATE_IDLE:
if (isIncoming) {
onIncomingCallEnded(savedNumber, callStartTime, new Date(), savedContext,DEVICE_COUNTRY);
} else {
onOutgoingCallEnded(savedNumber, callStartTime, new Date(), savedContext,DEVICE_COUNTRY);
}
//Log.d("jusuf","call ended");
wasRinging = false;
break;
}
lastState = state;
}
}
}
</code></pre>
<p>CallReceiver:</p>
<pre><code>public class CallReceiver extends PhonecallReceiver {
String log_s = "app_l";
@Override
protected void onIncomingCallStarted(String number, Date start, Context ctx, String country) {
Log.d(log_s, "On Incomig Call Started " + country);
recording.startRecording(number, ctx, "incoming", false);
}
@Override
protected void onOutgoingCallStarted(String number, Date start, Context ctx, String country) {
Log.d(log_s, "On Outgoing Call Started " + country);
recording.startRecording(number, ctx, "outgoing", false);
}
@Override
protected void onIncomingCallEnded(String number, Date start, Date end, Context ctx, String country) {
Log.d(log_s, "On Incomming Call Ended " + country);
recording.stopAndReleaseRecorder(ctx);
}
@Override
protected void onOutgoingCallEnded(String number, Date start, Date end, Context ctx, String country) {
Log.d(log_s, "On Outgoing Call Ended " + country);
recording.stopAndReleaseRecorder(ctx);
}
}
</code></pre>
<p>Recording:</p>
<pre><code>public class Recording {
private boolean recording = false;
private String fileName;
public MediaRecorder recorder = null;
//Recording
private void terminateAndEraseFile(Context context) {
stopAndReleaseRecorder(context);
recording = false;
deleteFile();
}
private void deleteFile() {
Log.d(mConstants.TAG, "RecordService deleteFile");
FileHelper.deleteFile(fileName);
fileName = null;
}
public void stopAndReleaseRecorder(Context context) {
Log.d("Call recorder:: ", "Stoped recording");
if (recorder == null) {
Log.d("Call recorder:: ", "nill");
return;
}
Log.d(mConstants.TAG, "RecordService stopAndReleaseRecorder");
boolean recorderStopped = false;
boolean exception = false;
try {
recorder.stop();
recorderStopped = true;
} catch (IllegalStateException e) {
Log.e(mConstants.TAG, "IllegalStateException");
e.printStackTrace();
exception = true;
} catch (RuntimeException e) {
Log.e(mConstants.TAG, "RuntimeException");
exception = true;
} catch (Exception e) {
Log.e(mConstants.TAG, "Exception");
e.printStackTrace();
exception = true;
}
try {
recorder.reset();
} catch (Exception e) {
Log.e(mConstants.TAG, "Exception");
e.printStackTrace();
exception = true;
}
try {
recorder.release();
} catch (Exception e) {
Log.e(mConstants.TAG, "Exception");
e.printStackTrace();
exception = true;
}
recorder = null;
if (exception) {
deleteFile();
}
}
public void startRecording(String phoneNumber, final Context context, String incoming_or_outgoing, boolean is_missed) {