pid
int64 2.28k
41.1M
| label
int64 0
1
| text
stringlengths 1
28.3k
|
---|---|---|
35,335,359 | 0 | <p>Check the updated fiddle here: <a href="http://jsfiddle.net/yrzxj3x2/3/" rel="nofollow">http://jsfiddle.net/yrzxj3x2/3/</a></p> <p>You have to tell the x axis to be of type 'timeseries' and defining the format doesn't hurt. This is the bit that enabled timeseries on your chart:</p> <pre><code>axis: { x: { type: 'timeseries', tick: { format: '%Y-%m-%d' } } } </code></pre> <p>See reference on here: <a href="http://c3js.org/samples/timeseries.html" rel="nofollow">http://c3js.org/samples/timeseries.html</a></p> |
19,066,036 | 0 | <p>I personally would do <code>FILE *pipe = popen("md5sum filename");</code> [or something to that effect] - it is likely to be as fast as anything else, since 1GB of a file will take a little while to read, and the calculation is unlikely to be using much of your CPU time - most of the time will be waiting for the disk to load up the file. </p> <p>On my system, I created 6 files of 1GB each, and it takes 2 seconds to checksum the file with md5sum. (12 seconds for all 6 files). </p> |
24,732,604 | 0 | <pre><code> function addBox() { var rect = new fabric.Rect({ width: 1000, height: 600, top: 300, left: 500, fill: ' ', draggable: false }); rect.lockMovementX = true; rect.lockMovementY = true; rect.lockUniScaling = true; rect.lockRotation = true; canvas.add(rect); } make your fill null and if you want to have a border use strokeWidth: 3, stroke: "color" </code></pre> |
10,216,635 | 0 | <p>Assuming that identifyArrayCollection is an ArrayCollection containing some Objects and speedsArrayCollection is an ArrayCollection defined as variable of the Object type that are contained in the identifyArrayCollection </p> <p>you should do:</p> <pre><code>for (var x:Number = 0; x < identifyArrayCollection.length; x++) { identifyArrayCollection.getItemAt(x).speedsArrayCollection.addItem(speedsObj); } </code></pre> |
40,274,288 | 0 | how to remove existing image in jQuery.filer <p>I'm using a great plugin: <a href="https://github.com/CreativeDream/jquery.filer" rel="nofollow">https://github.com/CreativeDream/jquery.filer</a></p> <p>Only uploaded file can be Deleted, but added image file can Not be removed from server</p> <pre><code> files: [{ name: "photo_2016-09-23_21-25-48dfdgr.jpg", size: 5453, type: "image/jpg", file: ".php/uploads/photo_2016-09-23_21-25-48.jpg", },{ name: "photo_2016-09-23_21-25-48dfdf.jpg", size: 9503, type: "image/png", file: "./php/uploads/photo_2016-09-23_21-25-48.jpg", }], </code></pre> <p>remove file and delete in php does not work.</p> <p>all codes</p> <pre><code>$(document).ready(function(){ //Example 2 $("#filer_input2").filer({ limit: null, maxSize: null, extensions: null, changeInput: '<div class="jFiler-input-dragDrop"><div class="jFiler-input-inner"><div class="jFiler-input-icon"><i class="icon-jfi-cloud-up-o"></i></div><div class="jFiler-input-text"><h3>Drag&Drop files here</h3> <span style="display:inline-block; margin: 15px 0">or</span></div><a class="jFiler-input-choose-btn blue">Browse Files</a></div></div>', showThumbs: true, theme: "dragdropbox", templates: { box: '<ul class="jFiler-items-list jFiler-items-grid"></ul>', item: '<li class="jFiler-item">\ <div class="jFiler-item-container">\ <div class="jFiler-item-inner">\ <div class="jFiler-item-thumb">\ <div class="jFiler-item-status"></div>\ <div class="jFiler-item-thumb-overlay">\ <div class="jFiler-item-info">\ <div style="display:table-cell;vertical-align: middle;">\ <span class="jFiler-item-title"><b title="{{fi-name}}">{{fi-name}}</b></span>\ <span class="jFiler-item-others">{{fi-size2}}</span>\ </div>\ </div>\ </div>\ {{fi-image}}\ </div>\ <div class="jFiler-item-assets jFiler-row">\ <ul class="list-inline pull-left">\ <li>{{fi-progressBar}}</li>\ </ul>\ <ul class="list-inline pull-right">\ <li><a class="icon-jfi-trash jFiler-item-trash-action"></a></li>\ </ul>\ </div>\ </div>\ </div>\ </li>', itemAppend: '<li class="jFiler-item">\ <div class="jFiler-item-container">\ <div class="jFiler-item-inner">\ <div class="jFiler-item-thumb">\ <div class="jFiler-item-status"></div>\ <div class="jFiler-item-thumb-overlay">\ <div class="jFiler-item-info">\ <div style="display:table-cell;vertical-align: middle;">\ <span class="jFiler-item-title"><b title="{{fi-name}}">{{fi-name}}</b></span>\ <span class="jFiler-item-others">{{fi-size2}}</span>\ </div>\ </div>\ </div>\ {{fi-image}}\ </div>\ <div class="jFiler-item-assets jFiler-row">\ <ul class="list-inline pull-left">\ <li><span class="jFiler-item-others">{{fi-icon}}</span></li>\ </ul>\ <ul class="list-inline pull-right">\ <li><a class="icon-jfi-trash jFiler-item-trash-action"></a></li>\ </ul>\ </div>\ </div>\ </div>\ </li>', progressBar: '<div class="bar"></div>', itemAppendToEnd: false, canvasImage: true, removeConfirmation: true, _selectors: { list: '.jFiler-items-list', item: '.jFiler-item', progressBar: '.bar', remove: '.jFiler-item-trash-action' } }, dragDrop: { dragEnter: null, dragLeave: null, drop: null, dragContainer: null, }, uploadFile: { url: "./php/ajax_upload_file.php", data: null, type: 'POST', enctype: 'multipart/form-data', synchron: true, beforeSend: function(){}, success: function(data, itemEl, listEl, boxEl, newInputEl, inputEl, id){ var parent = itemEl.find(".jFiler-jProgressBar").parent(), new_file_name = JSON.parse(data), filerKit = inputEl.prop("jFiler"); filerKit.files_list[id].name = new_file_name; itemEl.find(".jFiler-jProgressBar").fadeOut("slow", function(){ $("<div class=\"jFiler-item-others text-success\"><i class=\"icon-jfi-check-circle\"></i> Success</div>").hide().appendTo(parent).fadeIn("slow"); }); }, error: function(el){ var parent = el.find(".jFiler-jProgressBar").parent(); el.find(".jFiler-jProgressBar").fadeOut("slow", function(){ $("<div class=\"jFiler-item-others text-error\"><i class=\"icon-jfi-minus-circle\"></i> Error</div>").hide().appendTo(parent).fadeIn("slow"); }); }, statusCode: null, onProgress: null, onComplete: null }, addMore: true, files: [{ name: "photo_2016-09-23_21-25-48dfdgr.jpg", size: 5453, type: "image/jpg", file: ".php/uploads/photo_2016-09-23_21-25-48.jpg", },{ name: "photo_2016-09-23_21-25-48dfdf.jpg", size: 9503, type: "image/png", file: "./php/uploads/photo_2016-09-23_21-25-48.jpg", }], allowDuplicates: false, clipBoardPaste: true, excludeName: null, beforeRender: null, afterRender: null, beforeShow: null, beforeSelect: null, onSelect: null, afterShow: null, onRemove: function(itemEl, file, id, listEl, boxEl, newInputEl, inputEl){ var filerKit = inputEl.prop("jFiler"), file_name = filerKit.files_list[id].name; console.log(file_name); $.post('./php/ajax_remove_file.php', {file: file_name}); }, onEmpty: null, options: null, dialogs: { alert: function(text) { return alert(text); }, confirm: function (text, callback) { confirm(text) ? callback() : null; } }, captions: { button: "Choose Files", feedback: "Choose files To Upload", feedback2: "files were chosen", drop: "Drop file here to Upload", removeConfirmation: "Are you sure you want to remove this file?", errors: { filesLimit: "Only {{fi-limit}} files are allowed to be uploaded.", filesType: "Only Images are allowed to be uploaded.", filesSize: "{{fi-name}} is too large! Please upload file up to {{fi-maxSize}} MB.", filesSizeAll: "Files you've choosed are too large! Please upload files up to {{fi-maxSize}} MB." } } }); }) </code></pre> <p>please guide me. </p> |
18,106,098 | 0 | <p>You might find this particular episode helpful:</p> <p><a href="http://railscasts.com/episodes/88-dynamic-select-menus" rel="nofollow">http://railscasts.com/episodes/88-dynamic-select-menus</a></p> |
36,678,676 | 0 | How to draw a heat map of New York city community based on certain data using R? <p>For a project I am currently working on, I have to draw a heat map of New York city community based on certain input using R. I googled for this topic and found that in R, there is a package called "map" will allow you to draw a heat map of the states of US pretty easily. However, I have no clue about how to draw similar heat maps for a city, and specifically here, New York city? Any suggestion is highly appreciated.</p> |
40,814,370 | 0 | <p>You need to <strong><em>persisting the song data to the device</em></strong>.</p> <p>The Android framework offers several options and strategies for persistence:</p> <ul> <li><strong>Shared Preferences</strong> - Easily save basic data as key-value pairs in a private persisted dictionary.</li> <li><strong>Local Files</strong> - Save arbitrary files to internal or external device storage.</li> <li><strong>SQLite Database</strong> - Persist data in tables within an application specific database.</li> <li><strong>ORM</strong> - Describe and persist model objects using a higher level query/update syntax.</li> </ul> <p><strong>Use Cases</strong></p> <p>Each storage option has typically associated use cases as follows:</p> <ul> <li><strong>Shared Preferences</strong> - Used for app preferences, keys, and session information.</li> <li><strong>Local Files</strong> - Often used for blob data or data file caches (i.e disk image cache)</li> <li><strong>SQLite Database</strong> - Used for complex local data manipulation or for raw speed</li> <li><strong>ORM</strong> - Used to store simple relational data locally to reduce SQL boilerplate</li> </ul> <p>Read more: <a href="https://guides.codepath.com/android/Persisting-Data-to-the-Device" rel="nofollow noreferrer">Persisting Data To Device</a>.</p> <p><br/></p> <p>You can use one of the options, but for your purpose, <strong>SQLite Database</strong> or <strong>ORM</strong> is the better options.</p> <p>You can visit <a href="https://guides.codepath.com/android/Local-Databases-with-SQLiteOpenHelper" rel="nofollow noreferrer">Local Databases with SQLiteOpenHelper</a> for SQLite Database.</p> <p>For ORM, you can try <a href="http://greenrobot.org/greendao/" rel="nofollow noreferrer">greenDAO</a>.</p> |
14,773,407 | 0 | What does this piece of Perl code do in laymans terms? <p>Found this inside a loop. I've read up about splice but it just confused me more. I'm not familiar with Perl, but am trying to translate an algorithm to another language.</p> <pre><code>my $sill = splice(@list,int(rand(@list)),1); last unless ($sill); </code></pre> <p>To be more specific: What will be inside $sill if it doesn't exit the loop from the last?</p> <p>Thanks for any help!</p> |
36,197,056 | 0 | read data from excel file c# to mongodb database <p>My application needs to read data from an excel file and stocks it in MongoDB database. I am using .Net and c# for development.I am using Excel 2007 , MongoDB 3.2 and visual studio 2015 version. Any idea to access excel file, i need your help please.</p> <p>This is my code</p> <pre><code> public void Open_readXLS() { Excel.Workbook workbook; Excel.Worksheet worksheet; Optioncontext ctx = new Optioncontext(); string filePath = @"C:\Users\user PC\Desktop\ finale\Euro_Dollar_Call_Options.xlsx"; workbook = new Excel.Workbook(filePath); worksheet = workbook.Sheets.GetByName("Feuil1"); for (ushort i = 0; i <= worksheet.Rows.LastRow; i++) { option.type_option= worksheet.Rows[i].Cells[0].Value.ToString(), option.type_currency= worksheet.Rows[i].Cells[1].Value.ToString(); } ctx.Option.InsertOne(option); } </code></pre> |
28,482,002 | 0 | DJANGO : How to create admin view with a model containt order_by? <p>My model is</p> <pre><code>Class Document(models.Model): Contrat = Contrat.objects.order_by('Contrat_text').distinct('Contrat_text') isContrat = models.BooleanField(('Contrat'), default=True) isCdC = models.BooleanField(('Cahier des Charges'), default=False) isCR = models.BooleanField(('Cahier de Recette'), default=False) isPG = models.BooleanField(('PG'), default=False) isCI = models.BooleanField(('CI'), default=False) isDico = models.BooleanField(('Dictionnaire'), default=False) isSFG = models.BooleanField(('SFG'), default=False) isGuide = models.BooleanField(('Guide'), default=False) isWSDL = models.BooleanField(('WSDL'), default=False) isDivers = models.BooleanField(('Divers'), default=False) def __str__(self): return self.Contrat </code></pre> <p>How to create Admin view with the same filter ?</p> <pre><code>class DocumentAdmin(admin.ModelAdmin): fields = ('Contrat', 'isContrat', 'isCdC', 'isCR', 'isPG', 'isCI', 'isDico', 'isSFG', 'isGuide', 'isWSDL', 'isDivers') list_display = ('Contrat', 'isContrat', 'isCdC', 'isCR', 'isPG', 'isCI', 'isDico', 'isSFG', 'isGuide', 'isWSDL', 'isDivers') ordering = ('id',) </code></pre> <p>admin.site.register(Document, DocumentAdmin)</p> |
8,750,828 | 0 | drupal 6: using ahah for forms with markup types <pre><code>function MyModule_menu() { $items['blah'] = array( 'title' = 'blah', 'page callback' => 'blah_page', 'type' => MENU_NORMAL_ITEM ); $items['clickPath'] = array( 'title' => 'A title', 'page callback' => 'clickPath_page', 'type' => MENU_CALLBACK, ); return $items; } function blah_page() { $output = drupal_get_form(MyModule_form); return $output; } function clickPath_page() { return ('you clicked me!'); } function MyModule_form($form,&$form_state) { $output = '<div id="clickDiv">Click me</div>'; $form['blah'] = array( '#type' => 'markup', '#value' => $output, '#ahah' => array( 'event' => 'click', 'path' => 'clickPath', 'wrapper' => 'clickDiv', ), ); return $form; } </code></pre> <p>Why won't the above work? Is it not possible to use ahah and events on form types of 'markup'? Do I have to use my own custom javascript? </p> <p>You can stop reading here! I would like to end my sentences and question here, but stackoverflow is forcing me to input a minimum amount of characters. Apologies in advance!!!!</p> |
30,926,439 | 0 | <p>You're looking for an outer join. This variant of your first query should do the trick:</p> <pre><code>SELECT DISTINCT ent.Entity_Id, ent.Profile_Pic_Url, ent.First_Name, ent.Last_Name, ent.Last_CheckIn_Place, comments.Content, friends.Category FROM checkin_comments AS comments JOIN entity AS ent ON comments.Entity_Id = ent.Entity_Id LEFT JOIN friends ON comments.Entity_Id = friends.Entity_Id1 OR comments.Entity_Id = friends.Entity_Id2 WHERE comments.Chk_Id = 1726 AND IFNULL(friends.Category, 0) != 4 GROUP BY comments.Comment_Id </code></pre> <p>In the event that the comment author is not associated with the requester via the <code>friends</code> table, the comment will be included in the join result, with all columns derived from <code>friends</code> being <code>NULL</code>. The <code>IFNULL()</code> in the <code>WHERE</code> clause deals with that by converting a <code>NULL</code> category to value <code>0</code> (though in fact any value other than <code>4</code> would work).</p> |
19,585,016 | 0 | <p>Ah. I missed the g thing.</p> <pre><code>:%s/\\/\//g </code></pre> <p>This command does the trick.</p> <p>I will wait for better answers from vim geeks. I am sure there must be a better way.</p> |
37,432,366 | 0 | <p>Because last step of unwrapping will fail? You will have <code>List(elements)</code>, and second version of <code>flatten</code> requires providing <code>List</code> in <code>List</code>.</p> |
11,582,641 | 0 | Jersey Servlet - Best way to set root uri content? <p>I am using JAX-RS to develop a RESTful api for an application. I'm deploying it in Tomcat. It's deployed at myhost:8080/api. Resources are at .../api/{resourceName}, etc.</p> <p>I'd like to have it so that people who visit /api see our html based api documentation. I'm wonder what the best solution is. Specifying a welcome file in the web.xml does not seem to work, but that would be nice and simple.</p> <p>Alternatively, If I create a resource and set the path to "/" then, I could programmatically serve up content. That's a little inflexible, because it's then in code, but I could make it work.</p> <p>Lastly I thinkI can use Apache to direct traffic to where I want. Not a guru on Apache, but this may be the most flexible solution.</p> <p>Which of these alternatives would be better? Any option I am missing?</p> |
10,494,506 | 0 | <p>Well - it returns the query because you told it to do so!</p> <p>Look at your code: you have commented out the line that would actually <strong>execute</strong> the dynamic SQL (<code>EXEC sp_executsql .....</code>), and instead you're returning the query (<code>@QRY</code>) as a string:</p> <pre><code>--EXEC sp_executesql @QRY, '@STR VARCHAR(4000)', @STR RETURN @QRY </code></pre> <p>Just change that to execute the query instead of returning its string representation....</p> |
28,284,556 | 0 | <p>Change the JS code to only act on the first link not all sub links like below </p> <pre><code> $('.link>a').on("click", function(e){ e.preventDefault(); $(this).parent('.link').siblings().children('.dropdown').fadeOut(); $(this).siblings('.dropdown').fadeToggle(); }); $(document).mouseup(function (e) { var container = $(".dropdown"); if (!container.is(e.target) // if the target of the click isn't the container... && container.has(e.target).length === 0) // ... nor a descendant of the container { container.hide(); } }); </code></pre> <p>note link>a mean only first level</p> <p><a href="http://jsfiddle.net/neka5u0d/" rel="nofollow">http://jsfiddle.net/neka5u0d/</a></p> |
25,216,718 | 0 | <p>Read carefully <a href="http://man7.org/linux/man-pages/man2/mknod.2.html" rel="nofollow">mknod(2)</a> man page (e.g. type <code>man 2 mknod</code> in a terminal).</p> <blockquote> <pre><code> The mode argument specifies both the permissions to use and the type of node to be created. It should be a combination (using bitwise OR) of one of the file types listed below and the permissions for the new node. </code></pre> </blockquote> <p>BTW, you might -and probably should- use <a href="http://man7.org/linux/man-pages/man3/mkfifo.3.html" rel="nofollow">mkfifo(3)</a> instead (or, in a shell script or terminal, the <a href="http://man7.org/linux/man-pages/man1/mkfifo.1.html" rel="nofollow">mkfifo(1)</a> command).</p> <p>The permissions are mostly useful for processes which are <a href="http://man7.org/linux/man-pages/man2/open.2.html" rel="nofollow">open(2)</a>-ing an already existing named pipe.</p> <p><sup>With appropriate permission settings, you could restrict the usage of a FIFO to e.g. only the members of some given group.</sup></p> <p>Read also <a href="http://advancedlinuxprogramming.com/" rel="nofollow">Advanced Linux Programming</a>, <a href="http://man7.org/linux/man-pages/man7/fifo.7.html" rel="nofollow">fifo(7)</a>, <a href="http://man7.org/linux/man-pages/man7/credentials.7.html" rel="nofollow">credentials(7)</a>, <a href="http://man7.org/linux/man-pages/man7/capabilities.7.html" rel="nofollow">capabiities(7)</a>, and about <a href="http://en.wikipedia.org/wiki/Setuid" rel="nofollow">setuid</a>.</p> |
37,073,107 | 0 | Confirm before leave directive <p>This directive uses SweetAlert just as replacement of confirm() js function. <a href="https://jsfiddle.net/alfredopacino/njccccsh/" rel="nofollow">https://jsfiddle.net/alfredopacino/njccccsh/</a></p> <pre><code>app.directive('confirmLeave',function(){ return { restrict:"A", controller:function($scope,$attrs,SweetAlert,$state,$location){ $scope.$on('$destroy', function() { window.onbeforeunload = undefined; }); $scope.$parent.$on('$stateChangeStart', function(event, next, current) { console.log($scope.formname.$dirty) if($scope.formname.$dirty){ event.preventDefault() SweetAlert.swal({ title: "Are you sure you want to leave this page?", text: "Some changes have not been saved.", type: "warning", showCancelButton: true, confirmButtonColor: "#DD6B55",confirmButtonText: "Ok", cancelButtonText: "Cancel", closeOnConfirm: true, closeOnCancel: true }, function(isConfirm){ if (isConfirm) { console.log(next.name) $state.go(next.name) //$location.path(next.name) } }); } }); } }}); </code></pre> <p>It checks the form dirty state and it should follow the next route in case of confirm, but that $state.go() doesn't redirect.</p> |
36,198,961 | 0 | how do i bar plot a complete x axis and not just the last value <p>I am bar plotting probabilities as a function of successes in binomial trials. I am getting in my figure the expected Y values but only the last x value, which should span from 0 to 10. Here is my code:</p> <pre><code>close all; clc; p = 0.2; figure; for j = 1:500 for i = 1:10 a = rand(); success = fix(a*10); y = nchoosek(10,success)*(p^success)*(1-p)^(10-success); bar(success,y); hold on; end end </code></pre> |
16,961,138 | 0 | Does Android support cross application file access <p>Does android support cross application file access i mean Lets say Application A created a file called "abcd.txt", can we access the file "abcd.txt" from another application B like how it can be possible in windows and not possible in iOS. please help.</p> |
7,907,889 | 0 | How to use random class in multi threaded application correct <p>I need to use random class to generate random numbers in a multi threaded application inside public static function. How can i achieve it. Currently the function below is working very well but it is not very fast when compared to random class. So i need to modify the function below and make it work with random class while thousands of concurrent calls are happening to that class. if i use random it uses same seed for every call i suppose and the randomization is being very bad. my current class</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Security.Cryptography; public static class GenerateRandomValue { static RNGCryptoServiceProvider Gen = new RNGCryptoServiceProvider(); public static int GenerateRandomValueDefault(int irRandValRange)//default min val 1 { if (irRandValRange == 0) irRandValRange = 1; byte[] randomNumber = new byte[4]; // 4 bytes per Int32 Gen.GetBytes(randomNumber); return Math.Abs(BitConverter.ToInt32(randomNumber, 0) % irRandValRange) + 1; } public static int GenerateRandomValueMin(int irRandValRange, int irMinValue) { byte[] randomNumber = new byte[4]; // 4 bytes per Int32 Gen.GetBytes(randomNumber); return BitConverter.ToInt32(randomNumber, 0) % irRandValRange + irMinValue; } } </code></pre> <p>Another function which seems pretty good and thread safe</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Threading; public static class GenerateRandomValue { private static Random seedGenerator = new Random(); private static ThreadLocal<Random> random = new ThreadLocal<Random>(SeededRandomFactory); private static Random SeededRandomFactory() { lock(seedGenerator) return new Random(seedGenerator.Next()); } public static int GenerateRandomValueMin(int irRandValRange, int irMinValue) { return random.Value.Next(irMinValue, irRandValRange); } } </code></pre> |
256,214 | 0 | <p>SNMP has quite a significant CPU hit on the devices in question compared to telnet; I'd recommend telnet wherever possible. (As stated in a previous answer, the IOS XR XML API would be nice, but as far as I know IOS XR is only deployed on high-end carrier grade routers).</p> <p>In terms of existing configuration management systems, two commercial players are HP Opsware, and EMC Voyence. Both will probably do what you need. I'm not aware of many open source solutions that actually support deploying changes. (<a href="http://www.shrubbery.net/rancid/" rel="nofollow noreferrer">RANCID</a>, for example, only does configuration monitoring, not pre-staging and deploying config changes).</p> <p>If you are going to roll your own solution, one thing I would recommend is sitting down with your network admin and coming up with a best-practice deployment model for the service he's providing (e.g. standardised ACL, QoS queue, and VLAN names; similar entries in ACLs that have the same function for different customers, etc.). Ensure that all the existing deployed config complies with this BP before you start your design, it will make the problem much more manageable. Best of luck.</p> |
21,505,513 | 0 | <p>Try this</p> <pre><code>class Item extends Eloquent { public function owner() { return $this->belongsTo('User','ownerID'); } } </code></pre> |
16,911,323 | 0 | <p>Here I'm only matching the numbers and period character. This code should return the numbers you're looking for. It uses your data string from your example.</p> <pre><code><? preg_match_all('!Gold\s+([0-9.]+)\s+([0-9.]+)!i',$data,$matches); //New York $ny_bid = $matches[1][0]; $ny_ask = $matches[2][0]; print("NY\nbid: $ny_bid\n"); print("ask: $ny_ask\n\n"); //Asia $asia_bid = $matches[1][1]; $asia_ask = $matches[2][1]; print("Asia\nbid: $asia_bid\n"); print("ask: $asia_ask\n"); ?> </code></pre> <p><strong>Output</strong></p> <pre><code>NY bid: 1411.20 ask: 1412.20 Asia bid: 1406.80 ask: 1407.80 </code></pre> |
2,691,977 | 0 | How do I Show/Hide a Grid Row and Grid Splitter based on a Toggle Button? <p>Currently I have a toggle button that is bound to a boolean property (DualLayout) in my code behind. When the boolean is set to True, then I want my second row in my grid (and grid splitter) to hide and have the first row take up the entire space of the grid. Once the boolean is set to False, I want the grid splitter and bottom row to appear.</p> <p>Here is a snippet of my xaml</p> <pre><code><ToggleButton Name="toggleLayout" Margin="66,1,0,1" Width="25" HorizontalAlignment="Left" IsChecked="{Binding DualLayout}" Checked="toggleLayout_Clicked" Unchecked="toggleLayout_Clicked"> <ToggleButton.Style> <Style TargetType="{x:Type ToggleButton}"> <Style.Triggers> <Trigger Property="IsChecked" Value="true"> <Setter Property="ContentTemplate"> <Setter.Value> <DataTemplate DataType="{x:Type ToggleButton}"> <Image Source="Images/PlayHS.png"/> </DataTemplate> </Setter.Value> </Setter> <Setter Property="ToolTip" Value="Receive and Transmit Windows Split."/> </Trigger> <Trigger Property="IsChecked" Value="false"> <Setter Property="ContentTemplate"> <Setter.Value> <DataTemplate DataType="{x:Type ToggleButton}"> <Image Source="Images/PauseHS.png"/> </DataTemplate> </Setter.Value> </Setter> <Setter Property="ToolTip" Value="Receive and Transmit Windows Combined."/> </Trigger> </Style.Triggers> </Style> </ToggleButton.Style> </ToggleButton> <Grid x:Name="transmissionsGrid" Margin="0,28,0,0"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*" MinHeight="100" /> </Grid.RowDefinitions> <transmission:TransmissionsControl x:Name="transmissionsReceive" TransmissionType="Receive" Margin="0,0,0,5" /> <GridSplitter Name="gridSplitter1" Grid.Row="0" Background="White" Cursor="SizeNS" Height="4" HorizontalAlignment="Stretch" VerticalAlignment="Bottom" Foreground="Firebrick" /> <transmission:TransmissionsControl x:Name="transmissionsTransmit" TransmissionType="Transmit" Grid.Row="1" /> </Grid> </code></pre> |
8,567,908 | 0 | Lightweight Excel(xls/xlsx) php library needed <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/3930975/alternative-for-php-excel">Alternative for PHP_excel</a> </p> </blockquote> <p>A friend would like to use a Php Excel library to read/write files on formats xls and xlsx, he knows about the one called "PhpExcel" but apparently is way too big of a library for him.</p> <p>I would like you to suggest if there is any other phplib you could recommend him.</p> <p><strong>Update</strong></p> <p>Please people vote this question up if you think this post is useful even when some have considered it not good enough to give it negative points (very strange since it has a lot of views and seems it has actually helped to some users). Thank you very much.</p> |
14,971,223 | 0 | Could not connect to Postgresql on Mac OS X after Installation <p>So I installed Postgresql onto my Mac and whenever I run anything like <code>psql</code> or <code>createdb cool_database_name</code> I get the following error.</p> <pre><code>psql: could not connect to server: No such file or directory Is the server running locally and accepting connections on Unix domain socket "/tmp/.s.PGSQL.5432"? </code></pre> <p>So I follow along the different solutions. I reinstall postgresql to no avail. I go to postgresql.conf` and change it to </p> <pre><code>#port = 5432 # (change requires restart) #max_connections = 20 # (change requires restart) # Note: Increasing max_connections costs ~400 bytes of shared memory per # connection slot, plus lock space (see max_locks_per_transaction). #superuser_reserved_connections = 3 # (change requires restart) #unix_socket_directory = '/var/pgsql_socket' # (change requires restart) #unix_socket_group = '' # (change requires restart) #unix_socket_permissions = 0777 # begin with 0 to use octal notation </code></pre> <p>yet still nothing. I run commands such as </p> <pre><code>ls -lA /var/run/postgresql </code></pre> <p>Which tell me the file or directory does not exist.</p> <p>I also check into the <code>pg_hba.conf</code> file but everything looks ok</p> <pre><code># "local" is for Unix domain socket connections only local all all trust # IPv4 local connections: host all all 127.0.0.1/32 trust # IPv6 local connections: host all all ::1/128 trust # Allow replication connections from localhost, by a user with the # replication privilege. #local replication jason trust #host replication jason 127.0.0.1/32 trust #host replication jason ::1/128 trust </code></pre> <p>When I run <code>psql -h localhost</code> I get</p> <pre><code>psql: could not connect to server: Connection refused Is the server running on host "localhost" (::1) and accepting TCP/IP connections on port 5432? could not connect to server: Connection refused Is the server running on host "localhost" (127.0.0.1) and accepting TCP/IP connections on port 5432? could not connect to server: Connection refused Is the server running on host "localhost" (fe80::1) and accepting TCP/IP connections on port 5432? </code></pre> <p>I'm at a lost as to how to fix this. Any help would be appreciated. </p> |
29,308,309 | 0 | <p>There must be a nicer solution, but this is the one that quickly popped into mind:</p> <pre><code>set source = range(Rows(1).address & "," & Rows(emptyrow).address).SpecialCells(xlCellTypeVisible) </code></pre> <p>Disgusting, but works (if I understood what you needed correctly).</p> <p>Edit: found another solution:</p> <pre><code>set source = Application.Union(rows(1),rows(emptyrow)).SpecialCells(xlCellTypeVisible) </code></pre> |
27,133,555 | 0 | Patterns for dealing with variadic arguments in JavaScript <p>I usually do something like the following when dealing with variadic arguments in JavaScript:</p> <pre><code>var f = function() { var args = Array.prototype.slice.call(arguments, 0); // ... return something; }; </code></pre> <p>But what about doing instead:</p> <pre><code>var f = function() { return (function(self, args) { // ... return something; }(this, Array.prototype.slice.call(arguments, 0))); }; </code></pre> <p>I couldn't readily find anything addressing the pattern above, so I decided to post it here. Before I start experimenting with it, I would like to know if <strong>there are any flaws or risks</strong> I could be missing when using the rather unusual patterns described above.</p> |
33,026,996 | 0 | IAB, onActivityResult() and the strange message "startActivity called from non-Activity context" <p>I am using OpenIAB to support in app purchasing in my app (OpenIAB uses google code to implement IAP for Google Play Store). The problem is that, sometimes, when i call launchPurchaseFlow(), the method onActivityResult() of my FragmentActivity is not called. Checking the logs, i have found that when this happens there is always the following msg:</p> <blockquote> <p>W/ActivityManager( 319): startActivity called from non-Activity context: forcing Intent.FLAG_ACTIVITY_NEW_TASK for: Intent { cmp=com.android.vending/com.google.android.finsky.billing.lightpurchase.IabV3Activity (has extras) }</p> </blockquote> <p>When this happens, i have to close the app. Usually it start working again after some time (i have absolutely no clue of why is it so). I don't know why this message show up, since the context is obviously my activity (and in fact it works most of time). I have to say that the .apk installed on my device is an updated verion with respect to the apk uploaded in the beta version of the developer console and that i am using my google developer account to test IAP. This implies that i cannot make any real buy. However, this is not important, since i am testing the app. These are my questions: </p> <ol> <li>Is it true that starting an activity for result with FLAG_ACTIVITY_NEW_TASK prevents onActivityResult() to be called?</li> <li>How do you explain that message?</li> </ol> <p>Regarding the first question, i have tested with launchMode=singleTask and the behaviour is the same of launchMode=singleTop.</p> |
39,670,300 | 0 | <p>There are two issues that need to be fixed.</p> <p>1) Coincidently in=5 is set only during the neg edge of clock. This is because clk cycle is #10 and the tb code changes "in" value every #5 .As the counter checks the value of in at posedge it misses the in = 5. The in time period needs to #10 or the TB can wait for a posedge of clk before setting signal "in".</p> <p>2) the start needs to be set for the counter to reset , else the value of count = x (unknown) and count+1 => x+1 which equals x. Hence the counter will not increment and continue to remain x throughout.</p> <p>Updated tb is below .</p> <pre><code>module tb(); reg [3:0] in; reg clk,start; wire [7:0] count; reg overflow = 1'b0; initial begin $display ("time\t clk start in count overflow"); $monitor ("%g\t %b %b %b %b", $time, clk, start, in, count, overflow); clk=0; in=0; start=0; // overflow=0; // count=0; #10 start = 1'b1; // reset counter #10 start = 1'b0; #10 in=4'd1; #10 in=4'd5; #10 in=4'd4; #10 in=5'd5; #10 in=4'd1; #10 in=4'd5; #10 in=4'd4; #10 in=5'd5; #10 in=4'd1; #10 in=4'd5; #10 in=4'd4; #10 in=5'd5; #10 in=4'd1; #10 in=4'd5; #10 in=4'd4; #10 in=5'd5; #50 $finish; end always #5 clk=~clk; counter u0(.*); initial // Dump waveform for debug $dumpvars; endmodule </code></pre> <p>You can dump waveform using $dumpvars command to debug.</p> <p>Alternative code ( using posedge event to drive data in test bench ) </p> <pre><code>// Code your testbench here // or browse Examples module tb(); reg [3:0] in; reg clk,start; wire [7:0] count; reg overflow = 1'b0; initial begin $display ("time\t clk start in count overflow"); $monitor ("%g\t %b %b %b %b", $time, clk, start, in, count, overflow); clk=0; in=0; start=0; // overflow=0; // count=0; @(posedge clk ) start = 1'b1;// reset counter @(posedge clk ) start = 1'b0; @(posedge clk ) in=4'd1; @(posedge clk ) in=4'd5; @(posedge clk ) in=4'd4; @(posedge clk ) in=5'd5; @(posedge clk ) in=4'd1; @(posedge clk ) in=4'd5; @(posedge clk ) in=4'd4; @(posedge clk ) in=5'd5; @(posedge clk ) in=4'd1; @(posedge clk ) in=4'd5; @(posedge clk ) in=4'd4; @(posedge clk ) in=5'd5; @(posedge clk ) in=4'd1; @(posedge clk ) in=4'd5; @(posedge clk ) in=4'd4; @(posedge clk ) in=5'd5; #50 $finish; end always #5 clk=~clk; counter u0(.*); initial $dumpvars; endmodule </code></pre> |
11,476,031 | 0 | <p>There must be a problem with your version/install.</p> <p>Graphviz 2.28 on a windows system produces this output (11605x635px !):</p> <p><img src="https://i.stack.imgur.com/3XS0n.png" alt="graphviz output"></p> <p>Try <code>dot -version</code> to see version number and information about installed plugins & config file.</p> |
17,617,438 | 0 | <p>Here's one more article doing a detailed comparison between Wowza and AMS</p> <p><a href="http://www.webnethosting.net/wowza-media-servers-vs-adobe-flash-media-servers/" rel="nofollow">http://www.webnethosting.net/wowza-media-servers-vs-adobe-flash-media-servers/</a></p> |
9,471,982 | 0 | From which version of Android api can I develop a scrollable app widget? <p>I like the scrollable Calendar App Widget (see picture), and I want to develop a similar scrollable widget for my application. But I'm not sure from which version of Android api (or platform) can I develop a scrollable app widget? Any ideas? Thank you so much! <img src="https://i.stack.imgur.com/AgHio.jpg" alt="enter image description here"></p> |
13,313,079 | 0 | Cocoa - Pasing JSON crash on null <p>What is the best way to prevent my app from crash?</p> <p>I'm using a JSON service that sometimes get NULL fields. What is the best way to prevent it?</p> <p>Right now, I've to do this on every field:</p> <pre><code>if(![[[[Dictionary objectForKey:@"option"] objectForKey:@"option"] objectForKey:@"option"] isKindOfClass:[NSNull class]]) </code></pre> <p>The problem is that the Dic is very complex, and sometimes I even get no the field I look for. So that's a lot of validations.</p> |
5,883,839 | 0 | <p>This will search all the div's on the page for the text contained in <code>platformString</code> and wrap them in tags.</p> <pre><code>var platformString = "replaceMe"; $('div').html(function() { return $(this).html().replace(new RegExp(platformString, "ig"), '<strong>$&</strong>')); }); </code></pre> <p>It's similar to "highlighting" just replace <code><strong></code> with another kind of tag you wish to use.. maybe a <code><span></code> with a class for some custom effects?</p> <p>EDIT: replace <code>searchString</code> with <code>$&</code> - matches the searched text and preserves capitalization</p> |
30,342,605 | 0 | <p>This can be done using formulas by a two step approach:</p> <p>a) split the number (assuming it is in in cell <strong>A1</strong>) into pieces <code>=CONCATENATE(LEFT(A1;4);"-";MID(A1;5;2);"-";RIGHT(A1;2))</code> This gives you your date as a STRING in a cell.</p> <p>b) Combine this with VALUE, like <code>=VALUE(CONCATENATE(LEFT(A1;4);"-";MID(A1;5;2);"-";RIGHT(A1;2)))</code></p> <p>This yields to a date number <strong>41220</strong> (from start of counting, as determined by <code>Tools>Options...>OpenOffice.org Calc>Calculate>Date</code>; mine is set to option '1899-12-30'). Now format as you like.</p> |
33,120,905 | 0 | Alfresco lucene query with PARENT search all children recursively? <p>I'm doing a lucene search using PARENT. But returns me 0 results, and it's not ok. My query is like this:</p> <pre><code>TYPE:"{mymodel}exp" AND PARENT:"workspace://SpacesStore/30da316f-9d2a-4e37-a28b-89d86bff6582" AND =@myexp\:num_exp:"Exp 433" </code></pre> <p>The problem is that the node I'm searching isn't direct children of parent node.</p> <p>PARENT don't search recursively? Are there another way to search on children and subchildren? I can't use PATH, because I need a quick response and I read that PATH isn't optimal. </p> |
1,530,872 | 0 | Jquery UI Datepicker <p>I'd like to change the Default <code>altFormat</code>, but I can't seem to get it to work. </p> <pre><code>$("#myFav").datepicker({ dateFormat: 'yy-mm-dd' }); $("#myFav").datepicker('option', 'dateFormat', 'yy-mm-dd'); </code></pre> <p>I thought altFormat would work just the same? </p> |
40,809,997 | 0 | <p>You can fix this by creating local variables:</p> <pre><code>@IBAction func playButtonPressed(_ sender: Any) { var index = 0.0 var i = 0 var j = 0 while i < sites.count { while j < sites[i].count { let day = i let site = j DispatchQueue.main.asyncAfter(deadline: .now() + 1.0 * index) { self.plot(day: day, site: site) } j += 1 index += 1 } j = 0 i += 1 } } </code></pre> <p>Or, as pointed out by Martin R in <a href="http://stackoverflow.com/questions/31565832/pass-value-to-closure">Pass value to closure?</a>, you can "capture" these variables:</p> <pre><code>@IBAction func playButtonPressed(_ sender: Any) { var index = 0.0 var i = 0 var j = 0 while i < sites.count { while j < sites[i].count { DispatchQueue.main.asyncAfter(deadline: .now() + 1.0 * index) { [i, j] in self.plot(day: i, site: j) } j += 1 index += 1 } j = 0 i += 1 } } </code></pre> <p>Or, personally, I'd probably use <code>for</code> loops to clean this up a bit:</p> <pre><code>@IBAction func playButtonPressed(_ sender: Any) { var delay = 0.0 for i in 0 ..< sites.count { for j in 0 ..< sites[i].count { DispatchQueue.main.asyncAfter(deadline: .now() + delay) { [i, j] in self.plot(day: i, site: j) } delay += 1 } } } </code></pre> |
33,461,644 | 0 | <p>I think I will go in a different direction entirely by <a href="https://github.com/MobileChromeApps/mobile-chrome-apps" rel="nofollow">using the cca (Chrome Cordova App) toolchain to develop Mobile Chrome Apps</a>.</p> <p><a href="https://github.com/GoogleChrome/chrome-app-samples#mobile-support" rel="nofollow">Here are some sample starter apps</a>.</p> <p><a href="https://www.youtube.com/watch?v=FXcKs5QPOn4" rel="nofollow">And here is a good Youtube video depicting the procedure</a>.</p> |
3,320,065 | 0 | <p>Lesson one in Joel's test should be: <em>Do you regularly critically revisit the software team quality tests?</em></p> <p>While I like Joel and the list is a good list, it's only a starting point and without proper knowledge of how to apply any part that that test tells you to apply, you won't get far by just introducing them to your team. Worse, it may do more harm than good.</p> <p>With a current client, much of that test would've failed when I started out there. Explaining the managers that quality is something measurable in less bugs, better understanding of process and better understanding of delays (!) and cheaper on a very short notice helped me introduce many of those concepts. </p> <p>It was and always has been hard to introduce any tools that cost money (do the math: a programmer may cost a company $6000 a month all in, that extra tool for $300 a year per seat that saves you 1 hour a day, somehow managers just can't calculate, they'll still consider it too expensive). It's a silly truth and in the end the company will not only loose time, but also the programmers.</p> <p>But you have to start somewhere. <strong>Don't overwhelm the team, but slowly introduce them to new concepts</strong>. Source control (a good one, do <em>not</em>, I repeat, <em>DO NOT</em> use Visual Source Safe), feature/debug tracking and quiet working conditions will get you more than halfway, are cheap or free and are easy to introduce. You can (ab)use the feature tracking system for documentation, specifications, bug tracking and planning. Together with rollback facilities of source control this will get you a large part of the x/12 score.</p> <p>Don't (yet) attempt anything that delays the process or "feels like" a lot of work <em>before any result is seen</em>. These are things like a release schedule, specifications like FD and TD and (very) expensive tools that require knowledge that you currently don't have (interpreting the output from a good memory profiler is an art on itself, for instance). Introduce new concepts slowly and you should be fine.</p> |
24,668,164 | 0 | <p>Your short-hand property of background overrides the background, so you need to do like this:</p> <pre><code>body{ color:red; background: url("image.jpg") no-repeat;//now it works which doesn't support rgba background: rgba(255,255,255,.85); } </code></pre> |
18,934,896 | 0 | <p><code>Pattern.matches</code> would try to match the pattern exactly..</p> <p>So it would return <code>true</code> only if you have a <strong>single</strong> non space character as input.</p> <p>Its like using <code>\A[^ ]\z</code></p> <p>where <code>\A</code> is the beginning of input and <code>\z</code> is end of input..</p> <hr> <p>If you want to check for strings that doesn't contain space you can use</p> <pre><code>input.matches("[^ ]*"); </code></pre> |
22,177,393 | 0 | <p>The issue was in the dependencies of the gradle.build file. </p> <p>Changed the following lines in gradle.build from:</p> <pre><code>dependencies { groovy 'org.codehaus.groovy:groovy:2.2.2' ... </code></pre> <p>to:</p> <pre><code>dependencies { groovy 'org.codehaus.groovy:groovy-all:2.2.2' ... </code></pre> <p>This resolved the issue.</p> |
26,997,250 | 0 | <p>have you thought of using method overloads instead? generally spoken i would try to avoid switch case blocks, with view exceptions, since they are often a smell that inheritance, overloads, etc. could solve the problem in a nicer way.</p> <p>BR</p> |
18,038,605 | 0 | <p>The purest way I can think of to do this is with IPC. Python has very good support for IPC between two processes when one process spawns another, but not in your scenario. There are python modules for ipc such as <code>sysv_ipc</code> and <code>posix_ipc</code>. But if you are going to have your main application built in tornado, why not just have it listen on a <code>zeromq</code> socket for published messages.</p> <p>Here is a link with more information. You want the Publisher-Subscriber model.</p> <p><a href="http://zeromq.github.io/pyzmq/eventloop.html#tornado-ioloop" rel="nofollow">http://zeromq.github.io/pyzmq/eventloop.html#tornado-ioloop</a></p> <p>Your cron job will start and publish messages a to <code>zeromq</code> socket. Your already running application will receive them as subscriber.</p> |
29,615,692 | 0 | How to know what routes go on between two points? <p>Ok guys, i'm dealing with this situation in my Android App. I have:</p> <ul> <li>Two points (origin and destination).</li> <li>A set of routes or paths in which can pass a car.</li> </ul> <p>So.. my question is: how can I know what of these routes is the most nearest route from my location (origin) that can take me to another location (destination)?</p> <p>I neeed to use Google Maps API? What part of the API?</p> <p>Can you help me?</p> |
34,618,953 | 0 | <p>Please make sure Signup is an Activity declared in the Android Manifest. As a convention, append Activity at the end of the class name to indicate that it is indeed an Activity, for instance, SignUpActivity.</p> |
39,764,388 | 0 | <p>If you are using wordpress then you should use the session_start(); in wp-config.php file so please first put in you wp-config.php at top and then check.</p> |
13,267,145 | 0 | What is the best way of extending spring application context? <p>I need to extend spring applicatioContext xml file with new beans definitions and then add references to them to list, which is a property of one bean: Basic applicationContext xml file: </p> <pre><code><bean id="myBean" class="com.example.MyBean"> <property name="providers"> <list> <ref bean="provider1"> </list> </property> </bean> <bean id="provider1" class="com.example.Provider"> </code></pre> <p>Depends on instance of application I have different providers, so I need to add them to the list. Now I have the additional beans definitions in database and use <code>BeanFactoryPostProcessor</code> to add them to the context and then add references to them to the list of providers. But I use <code>@Transactional</code> annotation on <code>myBean</code> and automatic transaction management (<code>tx:annotation-driven</code>) and because of using <code>BeanFactoryPostProcessor</code> the transaction annotations are not processed. </p> <p>So I need another way to extend the application context and then the list of providers. What can I use? </p> <p>My idea is to have xml file which at the beginning is empty and then fill it by data from database and then import it somehow in applicationContext. Is it possible?</p> <p>Thanks for your help </p> |
31,127,528 | 0 | <p>Big thanks to Reto Koradi, if anyone wants to leave an answer I will mark it as correct. </p> <p>The casting was incorrect. Needs to be in LITTLE_ENDIAN order:</p> <pre><code>ByteBuffer transformedBuffer = ((ByteBuffer) mappedBuffer); transformedBuffer.order(ByteOrder.LITTLE_ENDIAN); Log.d(TAG, String.format("pre-run input values = %f %f %f %f %f\n", transformedBuffer.getFloat(), transformedBuffer.getFloat(), transformedBuffer.getFloat(), transformedBuffer.getFloat(), transformedBuffer.getFloat())); </code></pre> |
34,597,454 | 0 | <p>I am not sure what you want to accomplish. If you want to pre-compute a (non-changing) value and distribute it to all task managers (I assume you need access those value in some operators), you can simple give those value via constructor parameters to your UDFs or use Flink's broadcast variables: <a href="https://ci.apache.org/projects/flink/flink-docs-release-0.8/programming_guide.html#broadcast-variables" rel="nofollow">https://ci.apache.org/projects/flink/flink-docs-release-0.8/programming_guide.html#broadcast-variables</a></p> |
5,645,052 | 0 | android SimpleCursorAdapter no item msg <p>I have used to following code to display the favorite item listing. It has a deletion functionality through context menu.</p> <pre><code>@Override public void onCreate(Bundle savedInstanceState) { ......................... ......................... wordDataHelper = new WordDataHelper(getApplicationContext()); favCursor = wordDataHelper.getCursorFav(); startManagingCursor(favCursor); // Now create a new list adapter bound to the cursor. // SimpleListAdapter is designed for binding to a Cursor. favAdapter = new SimpleCursorAdapter( this, // Context. android.R.layout.simple_list_item_1, favCursor, // Pass in the cursor to bind to. new String[] {WordDataHelper.ENGWORD}, // Array of cursor columns to bind to. new int[] {android.R.id.text1}); // Parallel array of which template objects to bind to those columns. // Bind to our new adapter. setListAdapter(favAdapter); list = getListView(); list.setOnCreateContextMenuListener(new OnCreateContextMenuListener() { // @Override public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) { menu.setHeaderTitle("Context Menu"); menu.add(0, CONTEXT_DELETE, 1, "Delete Item"); } }); list.setTextFilterEnabled(true); list.setClickable(true); .................. .................. } public boolean onContextItemSelected(MenuItem item) { AdapterView.AdapterContextMenuInfo menuInfo = (AdapterView.AdapterContextMenuInfo) item .getMenuInfo(); final Long wordId = menuInfo.id; // selected_row = menuInfo.position; // To get the id of the clicked item in the list use menuInfo.id switch (item.getItemId()) { case CONTEXT_DELETE: deleteRes(wordId); favCursor = wordDataHelper.getCursorFav(); ((SimpleCursorAdapter) favAdapter).changeCursor(favCursor); break; default: return super.onContextItemSelected(item); } return true; } </code></pre> <p>Everything is working fine. Now I want to display a "No favorite item" msg when there is no item to list. How to arrange it?</p> |
14,216,554 | 0 | <p>The problem is that you are binding your event handler to the element before it exists because it is still being ajax'ed.</p> <p>Try including a callback function in <code>Guardian_news</code> and executing it once the ajax is complete - then bind your events within that callback.</p> <p>EDIT: something like this:</p> <pre><code>function Guardian_news(filter, selector, div, callback) { this.path = 'fullwindow1.html'; this.filter = filter; this.selector = selector; this.populate = function(){ $.get(this.path, function(templates){ var template = $(templates).filter(filter).html(); $(selector).html(Mustache.render(template)); callback(); // Call our callback here once the ajax is complete and the template is rendered }); } } $(document).ready(function(){ var menu; var callback = function () { $('#science').click(function(){ alert('url accessed'); }); } menu = new Guardian_news('#navigationBar', '#menu', callback); menu.populate(); }); </code></pre> |
31,699,954 | 0 | Search for string but with minus substring <p>I want to search for strings from a list but I do not want that value returned if the string contains the substring "banner". How would I do this?</p> <p>Thus far this is my formula for finding the string </p> <pre><code>=INDIRECT("A"&(MATCH("*"&RIGHT(D11,10)&"*",$A:$A,0))) </code></pre> <p>I want to alter it so that it excludes strings including the substring "banner"</p> |
31,671,175 | 0 | KSOAP2 complex request property not being seen <p>I'm having a problem sending a complex SOAP request to a third-party company server (server can have no changes) from an android device. I'm using KSOAP2 library and one of the properties is missing (server is giving an error which occurs when <code>klausimai</code> is <code>null</code>. Also the same namespace in my request is repeated multiple times when KSOAP2 generates the XML, since I pass a lot of <code>PropertyInfo</code>. My question is, why could the server see other properties (it would also give an error about the <code>null</code> ones) But doesn't see <code>klausimai</code> ?</p> <p><strong>Sample request XML for WS given by server company</strong></p> <pre><code>?xml version="1.0" encoding="UTF-8"?> <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body> <teiktiTemineAtaskaita xmlns="http://tempuri.org/"> <userName>apps</userName> <password>mob2015*</password> <uzduotiesNr>24287</uzduotiesNr> <inspektavimas xmlns:a="http://schemas.datacontract.org/2004/07/DssisMP" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <a:apsilankymuObjekteSkaicius i:nil="true" /> <a:atstovai i:nil="true" /> <a:darbdavioBuveinesAdresas i:nil="true" /> <a:darbdavioGimimoData i:nil="true" /> <a:darbdavioKodas>110871120</a:darbdavioKodas> <a:darbdavioLytis i:nil="true" /> <a:darbdavioPagrindineEkonomineVeikla i:nil="true" /> <a:darbdavioPavadinimas i:nil="true" /> <a:darbdavioPavarde i:nil="true" /> <a:darbdavioTipas i:nil="true" /> <a:darbdavioVardas i:nil="true" /> <a:inspektavimoNr>11112245</a:inspektavimoNr> <a:inspektavimoPradzia>2015-07-23T00:00:00+03:00</a:inspektavimoPradzia> <a:inspektavimoTiksloKodas>111</a:inspektavimoTiksloKodas> <a:institucijos i:nil="true" /> <a:savivaldybesKodas i:nil="true" /> <a:temineAtaskaita> <a:klausimai> <a:TAKlausimas> <a:atsakymas>2</a:atsakymas> <a:eilNr>1.</a:eilNr> <a:klausimas i:nil="true" /> <a:kodas>1000</a:kodas> <a:komentaras i:nil="true" /> </a:TAKlausimas> <a:TAKlausimas> <a:atsakymas>1</a:atsakymas> <a:eilNr>1.1.</a:eilNr> <a:klausimas i:nil="true" /> <a:kodas>1001</a:kodas> <a:komentaras i:nil="true" /> </a:TAKlausimas> <a:TAKlausimas> <a:atsakymas>3</a:atsakymas> <a:eilNr>2.</a:eilNr> <a:klausimas i:nil="true" /> <a:kodas>1002</a:kodas> <a:komentaras i:nil="true" /> </a:TAKlausimas> </a:klausimai> <a:nr>BIOCIDŲ PRIEŽIŪRA-0050-0007</a:nr> <a:rekomendacijos i:nil="true" /> <a:surasymoData>2015-07-23T00:00:00+03:00</a:surasymoData> <a:tipas>9</a:tipas> </a:temineAtaskaita> <a:tikrintaEkonomineVeikla i:nil="true" /> <a:tikrintaNakti i:nil="true" /> <a:tikrintasObjektas i:nil="true" /> <a:tikrintoObjektoAdresas i:nil="true" /> <a:tikrintoObjektoPavadinimas i:nil="true" /> <a:vadovoAsmensKodas i:nil="true" /> <a:vadovoGimimoData i:nil="true" /> <a:vadovoLytis i:nil="true" /> <a:vadovoPareigos i:nil="true" /> <a:vadovoPavarde i:nil="true" /> <a:vadovoVardas i:nil="true" /> </inspektavimas> </teiktiTemineAtaskaita> </s:Body> </s:Envelope> </code></pre> <p><strong>My HTTPTransport request dump XML generated by KSOAP2</strong></p> <pre><code><?xml version="1.0" encoding="UTF-8"?> <v:Envelope xmlns:v="http://schemas.xmlsoap.org/soap/envelope/" xmlns:c="http://schemas.xmlsoap.org/soap/encoding/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <v:Header /> <v:Body> <teiktiTemineAtaskaita xmlns="http://tempuri.org/"> <userName>apps</userName> <password>mob2015*</password> <uzduotiesNr>212855</uzduotiesNr> <n0:inspektavimas xmlns:n0="http://tempuri.org/"> <inspektavimoNr i:null="true" /> <n1:inspektavimoPradzia xmlns:n1="http://schemas.datacontract.org/2004/07/DssisMP" i:type="d:dateTime">2015-07-26T21:00:00.000Z</n1:inspektavimoPradzia> <inspektavimoTiksloKodas>1101</inspektavimoTiksloKodas> <darbdavioKodas>120163917</darbdavioKodas> <darbdavioPavadinimas>Statybos ir remonto uždaroji akcinė bendrovė "RISTATYBA"</darbdavioPavadinimas> <darbdavioTipas>1</darbdavioTipas> <darbdavioBuveinesAdresas i:null="true" /> <darbdavioPagrindineEkonomineVeikla i:null="true" /> <vadovoAsmensKodas>721788222</vadovoAsmensKodas> <vadovoVardas>tvt</vadovoVardas> <vadovoPavarde>gtvt</vadovoPavarde> <vadovoPareigos>5</vadovoPareigos> <n2:vadovoGimimoDiena xmlns:n2="http://schemas.datacontract.org/2004/07/DssisMP" i:type="d:dateTime">2015-07-22T21:00:00.000Z</n2:vadovoGimimoDiena> <vadovoLytis>0</vadovoLytis> <tikrintasObjektas>3</tikrintasObjektas> <tikrintoObjektoPavadinimas i:null="true" /> <tikrintoObjektoAdresas i:null="true" /> <savivaldybesKodas>46</savivaldybesKodas> <tikrintaEkonomineVeikla i:null="true" /> <apsilankymuObjekteSkaicius i:null="true" /> <tikrintaNakti>0</tikrintaNakti> <n3:temineAtaskaita xmlns:n3="http://schemas.datacontract.org/2004/07/DssisMP"> <n3:nr i:null="true" /> <n3:tipas i:type="d:int">18</n3:tipas> <n3:surasymoData i:type="d:dateTime">2015-07-22T09:53:59.822Z</n3:surasymoData> <n3:klausimai> <n3:TAKlausimas> <n3:kodas i:type="d:string">3183</n3:kodas> <n3:eilNr i:type="d:string">1.1.</n3:eilNr> <n3:klausimas i:null="true" /> <n3:atsakymas i:type="d:int">1</n3:atsakymas> <n3:komentaras i:null="true" /> </n3:TAKlausimas> <n3:TAKlausimas> <n3:kodas i:type="d:string">3184</n3:kodas> <n3:eilNr i:type="d:string">1.1.1.</n3:eilNr> <n3:klausimas i:null="true" /> <n3:atsakymas i:type="d:int">2</n3:atsakymas> <n3:komentaras i:null="true" /> </n3:TAKlausimas> </n3:klausimai> <n3:rekomendacijos i:type="d:string">Gyghugyb</n3:rekomendacijos> </n3:temineAtaskaita> </n0:inspektavimas> </teiktiTemineAtaskaita> </v:Body> </v:Envelope> </code></pre> <p><strong>My Java code for request creation</strong></p> <pre><code>List<Questionnaire> questionnaireList = new ArrayList<>(); String METHOD_NAME = "teiktiTemineAtaskaita"; String SOAP_ACTION = "http://tempuri.org/IDssisMP/" + METHOD_NAME; String A_NAMESPACE = "http://schemas.datacontract.org/2004/07/DssisMP"; String I_NAMESPACE = "http://www.w3.org/2001/XMLSchema-instance"; String NAMESPACE = "http://tempuri.org/"; String URL = "http://dvs/dssis_ws_test/DssisMP.svc"; SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); UserInfo userInfo = UserInfo.getAll().get(0); request.addProperty("userName", userInfo.getUserName()); request.addProperty("password", userInfo.getPassword()); request.addProperty("uzduotiesNr", taskId); CompanyInfo ci = CompanyInfo.getByTaskCompanyId(taskId, companyId); if (ci == null) { sendResponseFailed(responseHandler); //starter validation } else { //adding all the non-complex properties SoapObject inspektavimas = new SoapObject(NAMESPACE, "inspektavimas"); if (ci.getInspectationId() != 0) { inspektavimas.addProperty("inspektavimoNr", ci.getInspectationId()); } else { inspektavimas.addProperty("inspektavimoNr", null); } if (ci.getDateInspectation() != null) { PropertyInfo p = new PropertyInfo(); p.setNamespace(A_NAMESPACE); p.setName("inspektavimoPradzia"); p.setType(MarshalDate.class); p.setValue(ci.getDateInspectation()); inspektavimas.addProperty(p); } else { sendResponseFailed(responseHandler); } if (ci.getGoalId() != 0) { inspektavimas.addProperty("inspektavimoTiksloKodas", ci.getGoalId()); } else { sendResponseFailed(responseHandler); } if (ci.getObjectName() != null) { inspektavimas.addProperty("tikrintoObjektoPavadinimas", ci.getObjectName()); } else { inspektavimas.addProperty("tikrintoObjektoPavadinimas", null); } if (ci.getObjectAddress() != null) { inspektavimas.addProperty("tikrintoObjektoAdresas", ci.getObjectAddress()); } else { inspektavimas.addProperty("tikrintoObjektoAdresas", null); } //... SoapObject soTemineAtaskaita = new SoapObject(A_NAMESPACE, "temineAtaskaita"); TemineAtaskaita temineAtaskaita = TemineAtaskaita.getByTaskCompanyThemeCode(taskId, companyId, themeCode); PropertyInfo p = new PropertyInfo(); p.setNamespace(A_NAMESPACE); p.setName("nr"); if (temineAtaskaita != null && temineAtaskaita.getAtaskaitosNr() != null) { p.setValue(temineAtaskaita.getAtaskaitosNr()); soTemineAtaskaita.addProperty(p); } else { p.setValue(null); soTemineAtaskaita.addProperty(p); } Theme theme = Theme.getByTaskCompanyThemeCode(taskId, companyId, themeCode); if (theme != null) { PropertyInfo pType = new PropertyInfo(); pType.setNamespace(A_NAMESPACE); pType.setName("tipas"); pType.setValue(theme.getThemeCode()); soTemineAtaskaita.addProperty(pType); PropertyInfo pDate = new PropertyInfo(); pDate.setNamespace(A_NAMESPACE); pDate.setName("surasymoData"); pDate.setValue(theme.getDate()); pDate.setType(MarshalDate.class); soTemineAtaskaita.addProperty(pDate); } //adding klausimai property which is not seen SoapObject klausimai = new SoapObject(A_NAMESPACE, "klausimai"); List <Answer> answers = Answer.getByTaskCompanyThemeCode(taskId, companyId, themeCode); for (Answer answer : answers) { SoapObject soTAKlausimas = new SoapObject(A_NAMESPACE, "TAKlausimas"); PropertyInfo pCode = new PropertyInfo(); pCode.setNamespace(A_NAMESPACE); pCode.setName("kodas"); pCode.setValue(answer.getQuestionId()); soTAKlausimas.addProperty(pCode); Questionnaire questionnaire = Questionnaire.getById(answer.getQuestionId()).get(0); PropertyInfo pEilNr = new PropertyInfo(); pEilNr.setNamespace(A_NAMESPACE); pEilNr.setName("eilNr"); pEilNr.setValue(questionnaire.getPosition()); soTAKlausimas.addProperty(pEilNr); PropertyInfo pKlausimas = new PropertyInfo(); pKlausimas.setNamespace(A_NAMESPACE); pKlausimas.setName("klausimas"); pKlausimas.setValue(null); soTAKlausimas.addProperty(pKlausimas); PropertyInfo pAnswer = new PropertyInfo(); pAnswer.setNamespace(A_NAMESPACE); pAnswer.setName("atsakymas"); pAnswer.setValue(questionnaire.getPosition()); if (answer.getAnswer() == QuestionItem.STATUS.YES.ordinal()) pAnswer.setValue(1); else if (answer.getAnswer() == QuestionItem.STATUS.NO.ordinal()) pAnswer.setValue(2); else if (answer.getAnswer() == QuestionItem.STATUS.UNKNOWN.ordinal()) pAnswer.setValue(3); else if (answer.getAnswer() == QuestionItem.STATUS.PLAIN.ordinal()) pAnswer.setValue(null); soTAKlausimas.addProperty(pAnswer); PropertyInfo pComment = new PropertyInfo(); pComment.setNamespace(A_NAMESPACE); pComment.setName("komentaras"); if (answer.getComment() != null && !answer.getComment().replace(" ", "").replace(" ", "").isEmpty()) { pComment.setValue(answer.getComment()); } else { pComment.setValue(null); } soTAKlausimas.addProperty(pComment); klausimai.addSoapObject(soTAKlausimas); } soTemineAtaskaita.addSoapObject(klausimai); if (theme != null) { PropertyInfo pSuggestions = new PropertyInfo(); pSuggestions.setNamespace(A_NAMESPACE); pSuggestions.setName("rekomendacijos"); if (theme.getSuggestions() != null && !theme.getSuggestions().replace(" ", "").replace(" ", "").isEmpty()) { pSuggestions.setValue(theme.getSuggestions()); } else { pSuggestions.setValue(null); } soTemineAtaskaita.addProperty(pSuggestions); } inspektavimas.addSoapObject(soTemineAtaskaita); request.addSoapObject(inspektavimas); SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); envelope.dotNet = true; envelope.setAddAdornments(false); envelope.implicitTypes = true; envelope.setOutputSoapObject(request); new MarshalDate().register(envelope); HttpTransportSE androidHttpTransport = new HttpTransportSE(URL, 45 * 1000); androidHttpTransport.debug = true; androidHttpTransport.call(SOAP_ACTION, envelope); final SoapObject response = (SoapObject) envelope.getResponse(); ****//...**** } </code></pre> |
21,548,428 | 0 | Getting Server Error while calling Servlet from Java Application <p>Here is my Java Class by which I am calling simple servlet and passing the data, I am<br> using URL and HttpURlConnection class.What should be path of url for the servlet</p> <pre><code>public class TestJava { public static void main(String[] args) { try { URL url=new URL("http://localhost:9865/TestingServlet/PushServlet"); HttpURLConnection http_url =(HttpURLConnection) url.openConnection(); http_url.setRequestMethod("POST"); http_url.setDoOutput(true); http_url.setDoInput(true); InputStream response = http_url.getInputStream(); System.out.println(" " +response); ObjectOutputStream objOut = new ObjectOutputStream(http_url.getOutputStream()); objOut.writeObject("hello"); objOut.flush(); objOut.close(); } catch (IOException e) { e.printStackTrace(); } } } </code></pre> <p>Here is the servlet code, I am receiving the object from the java code and displaying<br> it on the console. </p> <pre><code> public class PushServlet extends HttpServlet { public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { try { System.out.println("HELLO This is servlet"); ObjectInputStream objIn = new ObjectInputStream(request.getInputStream()); TestJava p = null; p = (TestJava) objIn.readObject(); System.out.println("Servlet received p: "+p); } catch (Throwable e) { e.printStackTrace(System.out); } } </code></pre> <p>My web.xml is like this</p> <pre><code> <welcome-file-list> <welcome-file> Customer_Servlet </welcome-file> </welcome-file-list> <servlet> <servlet-name>PushServlet</servlet-name> <servlet-class>com.servlet.PushServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>PushServlet</servlet-name> <url-pattern>/PushServlet</url-pattern> </servlet-mapping> <session-config> <session-timeout>50</session-timeout> </session-config> </web-app> </code></pre> <p>When i m trying to run the java code on server i.e Apache server, I'm getting<br> error HTTP Status 404 i am not able to find why i am getting this server error My code is all about invoking the servlet from java application </p> <pre><code> please help me guys . </code></pre> |
38,761,803 | 0 | <p>No, currently that's not possible since you can either use the default mongo data engine <em>or</em> switch it with the Eve-Sqlalchemy engine.</p> |
6,117,774 | 0 | <p>MSDN has a whole section on the Media Player SDK - and <a href="http://msdn.microsoft.com/en-us/library/dd562289%28v=VS.85%29.aspx" rel="nofollow">this page</a> in particular should be of considerable use to you, I hope.</p> |
15,495,487 | 0 | <p>Just looking at it, I'm pretty sure your code works. Well I know this does.</p> <pre><code><img id="pic" src="https://www.google.com.au/images/srpr/logo4w.png"/> <input type="button" value ="Yahoo" onclick="change('http://l.yimg.com/ao/i/mp/properties/frontpage/eclipse/img/y7-logo_default.v1.png')" /> <input type="button" value ="Google" onclick="change('https://www.google.com.au/images/srpr/logo4w.png')" /> <script> function change(src){ document.getElementById('pic').src = src; } </script> </code></pre> |
39,740,765 | 0 | <p><code>tostring</code> is being passed an address, and so gives you the string representation of that address. You need <code>ffi.string</code> instead.</p> <pre><code>local str = ffi.string(ffi.C.getString(5)) </code></pre> <p>Now <code>str</code> is a Lua string containing what was returned by your Pascal code.</p> <p>Your other perhaps bigger problem is surely that you are allocating a string on the Pascal module's heap with no obvious way of deallocating it.</p> |
22,302,785 | 0 | <p>use this code:</p> <pre><code> public class KeyboardInput extends Thread{ Scanner sc= new Scanner(System.in); @Override public void run() { while(true) { sc.hasNext(); } } } </code></pre> <p>Then just call this when you want to start the input:</p> <pre><code>Thread t1= new Thread(new KeyboardInput); t1.start(); </code></pre> <p>Now you have a thread that reads inputs while the main thread is free to print to screen</p> <p>EDIT: be sure to only call the thread once!</p> |
30,330,509 | 0 | Change color of links in NUnit Test Runner in Resharper <p>I prefer to use the dark theme in Visual Studio, but one source of annoyance is the links in Resharper's nUnit Test Runner. I've looked everywhere, but I can't seem to find the option to change to get them to display properly.</p> <p>Specifically, this the Unit Test Session window, the Output tab, when you have a stack trace and it has a link on it, it currently appears in the default dark blue, which is fine on a white/grey background...however on the black background, it looks horrible and is near impossible to read.</p> <p>Does anyone know the option to change the color of that link?</p> |
33,967,306 | 0 | <p>Do you mean you want to loop through them?</p> <p>If that's the case I'd probably use a multidimentional array (or arraylist)..</p> <pre><code>JButton[][] bttns = new JButton[5][16](); for(int i = 0; i < bttns.length; i++) { for(int i2 = 0; i2 < bttns[0].length; i2++) { bttns[i][i2].setText( String.valueOf(sh.charAt(i*bttns[0].length + i2)) ); bttns[i][i2].setVisible(True);; } } </code></pre> <p>etc.</p> |
11,564,053 | 0 | C++ Referencing an Object from a global static function <p>I have a globally declared static function that needs to reference an object, but when I do so, I get an "undeclared identifier" error.</p> <p>Here is a sample of my code</p> <pre><code>#pragma once #include "stdafx.h" #include <vector> #include "Trigger.h" using namespace std; namespace Gamma_Globals { static vector<void*> gvTriggers; } static LPARAM CALLBACK ProgramWndProc(HWND, UINT, WPARAM, LPARAM); static LPARAM CALLBACK ProgramWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { switch (uMsg) { case WM_KEYUP: { for (int i = 0; i < Gamma_Globals::gvTriggers.size(); i++) { Trigger t = Gamma_Globals::gvTriggers[i]; } } default: return DefWindowProc(hWnd, uMsg, wParam, lParam); break; } return 0; } </code></pre> <p>The issue comes in the WM_KEYUP case, when I tried to set "Trigger t", I get the error "'Trigger' : undeclared identifier." What can I do to reference the Trigger object from ProgramWndProc?</p> <p>Thanks!</p> <hr> <p>As requested, here is a copy of Trigger.h</p> <pre><code>#pragma once #include "Noun.h" #include "TermFactory.h" #include "Globals.h" using namespace std; class Trigger { public: enum TRIGGER_TYPE {NONE, ONKEYPRESS, ONMOUSEPRESS}; Trigger(void*); Trigger(LPTSTR trigger, LPTSTR action, Gamma_Globals::TRIGGER_TIME); ~Trigger(void); VOID Perform(); TRIGGER_TYPE GetType(); private: LPTSTR lpCondition; LPTSTR lpAction; Gamma_Globals::TRIGGER_TIME triggerTime; vector<Noun*> vNouns; TRIGGER_TYPE triggerType; VOID LoadAction(LPTSTR Action); HRESULT LoadCondition(LPTSTR Condition); }; </code></pre> |
8,824,737 | 0 | <p>Check <a href="http://stackoverflow.com/questions/307004/changing-the-cursor-in-wpf-sometimes-works-sometimes-doesnt">this question</a>, especially the answer with the <code>OverrideCursor</code> class.</p> |
3,013,917 | 0 | <p>With Following guide, you can access iPod media</p> <p><a href="http://developer.apple.com/iphone/library/documentation/Audio/Conceptual/iPodLibraryAccess_Guide/Introduction/Introduction.html" rel="nofollow noreferrer">http://developer.apple.com/iphone/library/documentation/Audio/Conceptual/iPodLibraryAccess_Guide/Introduction/Introduction.html</a></p> <p>Also for images, </p> <p><a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html" rel="nofollow noreferrer">http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html</a></p> |
1,069,662 | 0 | <p>I figured out a workaround... Since I am not making any changes to the DocumentLibrary list schema, i can just reference that list and only need a ListInstance element that references the DocumentLibrary feature and list TemplateType. So my Elements will now look like this:</p> <pre><code> <ListInstance FeatureId="00BFEA71-E717-4E80-AA17-D0C71B360101" TemplateType="101" Id="Pages" Title="Content Pages" Description="Web Site Content Pages" Url="Pages" OnQuickLaunch="True" /> </code></pre> |
35,650,909 | 0 | <p>There is no option to directly assign php variables to javascript. To do this you need to assign assign it to html elements like,</p> <pre><code><input type="hidden" id ="amazon" value="<?php echo $is_amazon; ?>"> </code></pre> <p>We can get the value in jquery from this html element by using this code,</p> <pre><code>var amazon = $('#amazon').val(); </code></pre> <p>For security reasons the php variables cant assign to javascript variables. </p> |
40,046,142 | 0 | <p>You can create your own CSS file. Then your have imported the CSS file on client side.</p> <p>You need to write following CSS in that file.</p> <pre><code>.wrapper { position: initial; //You can use !important in case it doesn't overwrite the CSS. } </code></pre> <blockquote> <p>Note: Pleae make sure your file load after the admin lte css files.</p> </blockquote> |
34,995,926 | 0 | How to validate input array with a same name in laravel controller <p>I have a problem when a i try to insert record into table like this .</p> <pre><code>$data = array(); foreach($input['user_id'] as $key => $user_id) { $data[$key]['user_id'] = $user_id; } foreach($input['start_on'] as $key => $start_on) { $data[$key]['start_on'] = $start_on; } $this->validate($request, [ 'time_start' => 'required|date', 'time_end' => 'required|date|after:time_start', ]); $rules = [ 'start_on' => 'required|date|after:time_start|before:time_end|different:start_on' ]; // Iterate and validate each question foreach ($data as $value) { $validator = Validator::make( $value, $rules ); // if ($validator->fails()) return $validator->messages()->all(); } </code></pre> <p>I want to check start_on not equals another start_on.So what can i do?</p> |
24,498,380 | 0 | duplicate folder & contents, rename folder, pre-pend folder name to contents <p>Im hoping someone could help in building a small applescript. So far i havent found a solution that does exactly what i need.</p> <p>I have single folder with multiple files inside it. What i wish to do is to Duplicate that folder(with its contents) and have a prompt come up to input a new name for that folder. I also wish to Pre-pend the new name of that folder to all of the files inside it. Saving the folder(and contents) to a set location. (/Users/David/Custom)</p> <p><strong>Eg. Original structure;</strong> Folder name: "MainTemplate" Folder contents: "about.txt", "photo.jpg", "info.doc", etc. </p> <p><strong>Post-duplication;</strong> Folder name: "John The Dog" Folder contents: "John The Dog-about.txt", "John The Dog-photo.jpg", "John The Dog-info.doc", etc.</p> <h2>Thank you for your time.</h2> <p>NEW</p> <p>Ok, i've been working at this for 5+ hours. Re-naming the files is what i cant manage to figure out. Could someone please help me with this part? Also, maybe the script could be improved? Thanks!</p> <pre><code>on run {input, parameters} tell application "Finder" set theFolder to folder "OS X:Users:David:Desktop:SCRIPT:script-copy" set targetFolder to folder "OS X:Users:David:Desktop:SCRIPT:script-copy-finished" display dialog "Which structure do you wish to duplicate?" buttons {"Structure-MAIN", "Structure-OTHER"} set chosenStructure to button returned of result if contents of chosenStructure is equal to "Structure-MAIN" then set chosenStructure to "OS X:Users:David:Desktop:SCRIPT:script-copy:-MAIN" else set chosenStructure to "OS X:Users:David:Desktop:SCRIPT:script-copy:-OTHER" end if display dialog "Specify a new folder name:" default answer "John The Dog" set newName to (text returned of result) set createNewStructure to make new folder at targetFolder with properties {name:newName} duplicate every file of entire contents of folder chosenStructure to createNewStructure set the_folder to name of folder chosenStructure repeat with this_file in (get files of entire contents of folder chosenStructure) set the_start to offset of "_" in ((name of this_file) as string) set the_stop to count (name of this_file as string) set name of this_file to (the_folder & (items the_start thru the_stop of (name of this_file as string))) end repeat end tell return input end run </code></pre> |
27,849,224 | 0 | <p>No - you will need to process the file "manually". Read it into a string, go looking for the first non-blank, then go looking for the next blank, then use internal io to read the relevant bits, etc.</p> <p>As you have found, list directed io (using <code>*</code> as the format specifier) has some surprising features - one of them being that the slash character (<code>/</code>) in input means "stop reading here and leave remaining variables in the IO list as they were". This doesn't work well when you have paths that contain slashes!</p> <p>Just for fun...</p> <pre><code>PROGRAM read_some_things IMPLICIT NONE ! Some number bigger than most of the lines to be read. INTEGER, PARAMETER :: line_buffer_size = 28 ! Index of the start of the value of i in filename. INTEGER, PARAMETER :: pos_i_in_filename = 10 ! Index of the start of the value of j in filename. INTEGER, PARAMETER :: pos_j_in_filename = 13 CALL process_a_file CONTAINS SUBROUTINE process_a_file INTEGER :: unit ! Unit number for IO. CHARACTER(:), ALLOCATABLE :: line ! A line from the file. INTEGER :: iostat ! IOSTAT code. CHARACTER(256) :: iomsg ! IOMSG to go with IOSTAT INTEGER :: n, i, j ! Numbers of interest. OPEN( NEWUNIT=unit, FILE='2015-01-09 read_some_things.txt', & ACTION='READ', STATUS='OLD', POSITION='REWIND' ) DO CALL read_a_line(unit, line, iostat, iomsg) IF (IS_IOSTAT_END(iostat)) EXIT IF (iostat /= 0) THEN PRINT "('Error number ',I0,' reading file: ',A)", & iostat, TRIM(iomsg) ERROR STOP ':(' END IF ! What to do with an empty record? ! IF (LEN_TRIM(line) == 0) CALL Start_WW3 CALL chop_a_line(line, n, i, j) PRINT "(2X,I0,1X,I0,1X,I0)", n, i, j END DO CLOSE(unit) END SUBROUTINE process_a_file ! Parse a line into numbers of interest. SUBROUTINE chop_a_line(line, n, i, j) CHARACTER(*), INTENT(IN) :: line ! The line to chop. INTEGER, INTENT(OUT) :: n ! Things we got... INTEGER, INTENT(OUT) :: i INTEGER, INTENT(OUT) :: j ! Various significnat character positions in the line. INTEGER :: first_non_blank_pos INTEGER :: next_blank_pos INTEGER :: before_filename_pos ! Buffer for assembling a format specification. CHARACTER(100) :: fmt ! Find start of first non-blank group. first_non_blank_pos = VERIFY(line, ' ') ! Tolerate its non-existence - this may be zero. ! Find start of the following blank group, starting from after ! the beginning of the first non-blank group. next_blank_pos = SCAN(line(first_non_blank_pos+1:), ' ') ! It had better exist. If it doesn't, confuse user. IF (next_blank_pos == 0) ERROR STOP 'I didn''t draw any blanks' next_blank_pos = next_blank_pos + first_non_blank_pos ! Find start of the second group of non-blanks, backup one. before_filename_pos = VERIFY(line(next_blank_pos:), ' ') ! It had better exist. If it doesn't, annoy user. IF (before_filename_pos == 0) ERROR STOP 'Line in file with no file!' ! Note -2 to backup one and remember position before filename. before_filename_pos = before_filename_pos + next_blank_pos - 2 ! This specifies: ! - read all prior to filename as integer, ! - then skip to start of i, read I2, ! - then skip to start of j, read I2. WRITE (fmt, "('(I',I0,',T',I0,',I2,T',I0,',I2)')") & before_filename_pos, & before_filename_pos + pos_i_in_filename, & before_filename_pos + pos_j_in_filename READ (line, fmt) n, i, j END SUBROUTINE chop_a_line ! Read a record into a character variable. Pretty common task... SUBROUTINE read_a_line(unit, line, iostat, iomsg) INTEGER, INTENT(IN) :: unit ! Unit to read from. CHARACTER(:), INTENT(OUT), ALLOCATABLE :: line ! The record read. INTEGER, INTENT(OUT) :: iostat ! +ve on error, -ve on eof. CHARACTER(*), INTENT(OUT) :: iomsg ! IOMSG if iostat /= 0 ! Buffer to read record fragment. CHARACTER(line_buffer_size) :: buffer INTEGER :: size ! Amount read per read. line = '' DO ! Read a bit without always advancing to the next record. READ ( unit, "(A)", ADVANCE='NO', SIZE=size, IOSTAT=iostat, & IOMSG=iomsg ) buffer IF (iostat > 0) RETURN ! Bail on fail. ! Philosophical discussion about whether EOF is possible ! and SIZE /= 0 goes here (consider STREAM access). line = line // buffer(:size) ! Append what we got. ! Exit loop on end of file or end of record. IF (iostat < 0) EXIT END DO ! End of record is expected, not a relevant condition to return. IF (IS_IOSTAT_EOR(iostat)) iostat = 0 END SUBROUTINE read_a_line END PROGRAM read_some_things </code></pre> |
32,681,207 | 0 | Redirect .aspx URL's to non .aspx URL's - using htaccess <p>I recently moved my website from a ASP/IIS server to a LINUX/APACHE:</p> <p>Most of my new URL's looks the same, but without .aspx extension.</p> <p>OLD: <code>http://example.com/yankees-news.aspx</code><br> NEW: <code>http://example.com/yankees-news</code></p> <p>I want search engine users clicking on old URL's/Links to Redirect to new URLs.</p> |
29,098,447 | 0 | <p>The solution is to use <code>Stream.collect</code>. To create a Collector using its builder pattern is already given as solution. The alternative is the other overloaded <code>collect</code> being a tiny bit more primitive.</p> <pre><code> List<String> strings = Arrays.asList("a", "b", null, "c", null, "d", "e"); List<List<String>> groups = strings.stream() .collect(() -> { List<List<String>> list = new ArrayList<>(); list.add(new ArrayList<>()); return list; }, (list, s) -> { if (s == null) { list.add(new ArrayList<>()); } else { list.get(list.size() - 1).add(s); } }, (list1, list2) -> { // Simple merging of partial sublists would // introduce a false level-break at the beginning. list1.get(list1.size() - 1).addAll(list2.remove(0)); list1.addAll(list2); }); </code></pre> <p>As one sees, I make a list of string lists, where there always is at least one last (empty) string list.</p> <ul> <li>The first function creates a starting list of string lists. <strong>It specifies the result (typed) object.</strong></li> <li>The second function is called to process each element. <strong>It is an action on the partial result and an element.</strong></li> <li>The third is not really used, it comes into play on parallelising the processing, when partial results must be combined.</li> </ul> <hr> <p><strong><em>A solution with an accumulator:</em></strong></p> <p><em>As @StuartMarks points out, the combiner does not fullfill the contract for parallelism.</em></p> <p>Due to the comment of @ArnaudDenoyelle a version using <code>reduce</code>.</p> <pre><code> List<List<String>> groups = strings.stream() .reduce(new ArrayList<List<String>>(), (list, s) -> { if (list.isEmpty()) { list.add(new ArrayList<>()); } if (s == null) { list.add(new ArrayList<>()); } else { list.get(list.size() - 1).add(s); } return list; }, (list1, list2) -> { list1.addAll(list2); return list1; }); </code></pre> <ul> <li>The first parameter is the accumulated object.</li> <li>The second function accumulates.</li> <li>The third is the aforementioned combiner.</li> </ul> |
23,036,069 | 0 | <p>Just set this style:</p> <pre><code>.thumbnail:hover img { border: solid 5px green; margin: -5px; } </code></pre> <p>The margin is to avoid the "changing position" effect</p> <p><a href="http://jsfiddle.net/hbgqh/" rel="nofollow">demo</a></p> |
11,273,343 | 0 | <p>To decode the content using PHP, use this : </p> <pre> $decoded_string = urldecode('put encoded string here'); </pre> |
8,230,438 | 0 | download file from absolute uri to stream to SaveFileDialog <p>I've gotten as far as putting a file into a stream from a url. However puttin savefiledialog inside the event OpenReadCompleted gives an exception because the savefiledialog needs to be fired from an user iniated event. Putting the savefiledialog NOT inside OpenReadCompleted gives an error because the bytes array is empty, not yet processed. Is there another way to save a file to stream from a uri without using an event?</p> <pre><code>public void SaveAs() { WebClient webClient = new WebClient(); //Provides common methods for sending data to and receiving data from a resource identified by a URI. webClient.OpenReadCompleted += (s, e) => { Stream stream = e.Result; //put the data in a stream MemoryStream ms = new MemoryStream(); stream.CopyTo(ms); bytes = ms.ToArray(); }; //Occurs when an asynchronous resource-read operation is completed. webClient.OpenReadAsync(new Uri("http://testurl/test.docx"), UriKind.Absolute); //Returns the data from a resource asynchronously, without blocking the calling thread. try { SaveFileDialog dialog = new SaveFileDialog(); dialog.Filter = "All Files|*.*"; //Show the dialog bool? dialogResult = dialog.ShowDialog(); if (dialogResult != true) return; //Get the file stream using (Stream fs = (Stream)dialog.OpenFile()) { fs.Write(bytes, 0, bytes.Length); fs.Close(); //File successfully saved } } catch (Exception ex) { //inspect ex.Message MessageBox.Show(ex.ToString()); } } </code></pre> |
38,128,598 | 0 | Strange SIGPIPE in loop <p>After dealing with a very strange error in a C++ program I was writing, I decided to write the following test code, confirming my suspicion. In the original program, calling <code>send()</code> and <code>this_thread::sleep_for()</code> (with any amount of time) in a loop 16 times caused send to fail with a <code>SIGPIPE</code> signal. In this example however, it fails after 4 times. </p> <p>I have a server running on port 25565 bound to localhost. The original program was designed to communicate with this server. I'm using the same one in this test code because it doesn't terminate connections early. </p> <pre><code>int main() { struct sockaddr_in sa; memset(sa.sin_zero, 0, 8); sa.sin_family = AF_INET; inet_pton(AF_INET, "127.0.0.1", &(sa.sin_addr)); sa.sin_port = htons(25565); cout << "mark 1" << endl; int sock = socket(AF_INET, SOCK_STREAM, 0); connect(sock, (struct sockaddr *) &sa, sizeof(sa)); cout << "mark 2" << endl; for (int i = 0; i < 16; i++) { cout << "mark 3" << endl; cout << "sent " << send(sock, &i, 1, 0) << " byte" << endl; cout << "errno == " << errno << endl; cout << "i == " << i << endl; this_thread::sleep_for(chrono::milliseconds(2)); } return 0; } </code></pre> <p>Running it in GDB is how I discovered it was emitting SIGPIPE. Here is the output of that: <a href="http://pastebin.com/gXg2Y6g1" rel="nofollow">http://pastebin.com/gXg2Y6g1</a> </p> <p>In another test, I called <code>this_thread::sleep_for()</code> 16 times in a loop, THEN called <code>send()</code> once. This did NOT produce the same error. It ran without issue. </p> <p>In yet another test, I commented out the thread sleeping line, and it ran all the way through just fine. I did this in both the original program and the above test code. </p> <p>These results make me believe it's not a case of the server closing the connection, even though that's usually what SIGPIPE means (why did it run fine when there was no call to <code>this_thread::sleep_for()</code>?). </p> <p>Any ideas as to what could be causing this? I've been messing around with it for a week and have gotten no further.</p> |
40,682,585 | 0 | <p>I'd avoid it. My biggest issue with it is that sometimes you're returning a list, and sometimes you're returning an object. I'd make it work on a list <em>or</em> an object, and then have the user deal with either wrapping the object, of calling the function in a list comprehension.<br> If you really do need to have it work on both I think you're better off using:</p> <pre><code>def func(obj): if not isinstance(obj, list): obj = [obj] # continue </code></pre> <p>That way you're always returning a list.</p> |
38,582,304 | 0 | How to Rotate an element Counterclockwise <p>I know we can rotate an element anticlockwise by using negative sign</p> <p><code>transform : rotate(-20deg);</code></p> <p>But this is only for x-axis. I want to rotate element along the y-axis. i tried </p> <p><code>transform : rotateY(-20deg);</code></p> <p>this doesn't works it rotate the element in same direction as we are using:</p> <p><code>transform : rotateY(20deg);</code></p> <p>i am searching for an answer for half-hour . please help. </p> |
34,501,567 | 0 | Proxy a websocket to hide the IP <p>I have a sub domain routed through cloudflare. They don't cover websockets unless it enterprise or maybe business depending on traffic.</p> <p>So now when users visit the external site, it connects to my sub domain via a websocket with the url of my site being passed in their url.</p> <pre><code>e.g thridpartysite.com?ws=my.subdomain.com </code></pre> <p>But my IP is revealed and I am worried about DDoS. </p> <p>I am using nginx and ubuntu 14.04. Is there anything I can do to mask the IP? </p> <p>Here is my current nginx config</p> <pre><code># Config server { listen 80; listen [::]:80; server_name my.subdomain.com www.my.subdomain.com; location / { proxy_pass http://MySubdomainIP:443; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } } </code></pre> <p>So it takes the app on 443 and proxies to 80 so I can route that through cloudflare but no websocket support means I need to reveal my IP which leaves me open to DDoS attacks.</p> <p>Is there anything I can do at this point?</p> |
9,090,832 | 0 | <p>Add some class("children") to the <code>ul</code> container which contain all the child <code>li</code> and try this code.</p> <pre><code>$('#one').live('click', function(){ $('ul.children li:not(.uno)').slideUp(); $('ul.children li.uno').slideToggle(); return false; }); $('#two').live('click', function(){ $('ul.children li:not(.dos)').slideUp(); $('ul.children li.dos').slideToggle(); return false; }); $('#three').live('click', function(){ $('ul.children li:not(.trees)').slideUp(); $('ul.children li.trees').slideToggle(); return false; }); </code></pre> <p><strong><a href="http://jsfiddle.net/ANhJq/2/" rel="nofollow">Demo</a></strong></p> |
38,910,227 | 1 | How to prevent lxml from adding a default doctype <p>lxml seems to add a default doctype when one is missing in the html document.</p> <p>See this demo code:</p> <pre><code>import lxml.etree import lxml.html def beautify(html): parser = lxml.etree.HTMLParser( strip_cdata=True, remove_blank_text=True ) d = lxml.html.fromstring(html, parser=parser) docinfo = d.getroottree().docinfo return lxml.etree.tostring( d, pretty_print=True, doctype=docinfo.doctype, encoding='utf8' ) with_doctype = """ <!DOCTYPE html> <html> <head> <title>With Doctype</title> </head> </html> """ # This passes! assert "DOCTYPE" in beautify(with_doctype) no_doctype = """<html> <head> <title>No Doctype</title> </head> </html>""" # This fails! assert "DOCTYPE" not in beautify(no_doctype) # because the returned html contains this line # <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> # which was not present in the source before </code></pre> <hr> <p>How can I tell lxml to not do this?</p> <p>This issue was originally raised here: <a href="https://github.com/mitmproxy/mitmproxy/issues/845" rel="nofollow">https://github.com/mitmproxy/mitmproxy/issues/845</a></p> <p>Quoting a <a href="https://www.reddit.com/r/Python/comments/42rb90/comparing_execution_time_of_pretty_printing_an/czclx15" rel="nofollow">comment on reddit</a> as it might be helpful:</p> <blockquote> <p>lxml is based on libxml2, which does this by default unless you pass the option <code>HTML_PARSE_NODEFDTD</code>, I believe. Code <a href="https://github.com/GNOME/libxml2/blob/master/HTMLparser.c#L4777" rel="nofollow">here</a>.</p> <p>I don't know if you can tell lxml to pass that option though.. libxml has python bindings that you could perhaps use directly but they seem really hairy.</p> <p>EDIT: did some more digging and that option does appear in the lxml soure <a href="https://github.com/lxml/lxml/blob/master/src/lxml/includes/htmlparser.pxd#L20" rel="nofollow">here</a>. That option does exactly what you want but I'm not sure how to activate it yet, if it's even possible.</p> </blockquote> |
1,213,448 | 1 | Is it possible to utilize a python module that isnt installed into the python directories in linux? <p>I have a python application that depends on the uuid module, but on the server where I need to run it, uuid is not installed. I do not have root on the server so I cannot place the uuid .pys in the /usr/lib/python2.4/site-packages folder... is there a way that I can utilize the .py's from elsewhere? like my ~ ?</p> |
21,554,839 | 0 | The menu is not displayed in mac os 10.9.1 <p>In my application used "Application is agent(UIElement)" = YES.</p> <p>I use it to hide the second process. But first process need show.</p> <p>For show process I used code:</p> <pre><code>// display dock icon TransformProcessType(&psn, kProcessTransformToForegroundApplication); // enable menu bar SetSystemUIMode(kUIModeNormal, 0); // switch to Dock.app [[NSWorkspace sharedWorkspace] launchAppWithBundleIdentifier:@"com.apple.dock" options:NSWorkspaceLaunchDefault additionalEventParamDescriptor:nil launchIdentifier:nil]; // switch back [[NSApplication sharedApplication] activateIgnoringOtherApps:TRUE]; </code></pre> <p>The problem is that the menu is not displayed. But if you switch to some other program and back, the menu appears.</p> |
20,523,365 | 0 | <p>The problem is that the "enddate" from your database isn't a number, it's a string.</p> <p>You should convert it to numbers:</p> <pre><code>$now = time(); $sql="SELECT enddate FROM campaigns WHERE id=".$data['camp']; $query = mysqli_query($db, $sql); while($result = mysqli_fetch_assoc($query)){ $db = strtotime($result); if($now > $db) { // expired echo "<script type='text/javascript'>alert('This Workshop Has Expired'); </script>"; exit; } else { // not expired echo "<script type='text/javascript'>alert('Thank You For Registering');</script>"; exit; } } </code></pre> |
19,671,043 | 0 | <p>I've got exactly the same question. The problem as I see it is that the view login_form is designed to cater for everything (forgotten passwords, captchas, etc) in one. What I'm trying to create is a system where there is the quick login, and then if needed, another view to deal with registration, forgotten passwords, etc. I'm struggling to separate out the two objectives from this one login_form form. </p> <p>The auth controller login function has all that logic, and then simply $this->load->view('auth/login_form', $data);</p> |
15,383,017 | 0 | <pre><code>var products = (from p in db.GetAll() select new ProductViewModel{ ID = p.Id, .... }); </code></pre> |
27,011,654 | 0 | Android ArrayList: check an element exists of another ArrayList <p>I have two <code>ArrayList</code>.</p> <pre><code>private ArrayList<Friend> friendsList = new ArrayList<Friend>(); private ArrayList<Friend> myFriendsList = new ArrayList<Friend>(); </code></pre> <p>First one contains all <code>Friend</code> of database. Second one contains only user <code>Friend</code>. In my search option(<code>SearchManager</code>) i've a <code>ListView</code> contains searched friends of <code>friendsList</code>. When i select a <code>Friend</code> of <code>ListView</code>, i want to check if the <code>Friend</code> exists in <code>myFriendsList</code>. I used following code</p> <pre><code>friendListView .setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { handelListItemClick(adapter.getItem(position)); } }); private void handelListItemClick(Friend friend) { for(Friend fr: myFriendsList){ Log.v("Check User Name:", fr.getName()); } if (myFriendsList.contains(friend)) {works with matched friend} </code></pre> <p>But it can't check the selected <code>Friend</code> in <code>myFriendsList</code>. In <code>LogCat</code> it show <code>myFriendsList</code> information. Thanks in advance.</p> <p><strong>Update</strong> Here is my <code>Friend</code> class</p> <pre><code>public class Friend { private String id, name, thumbnailUrl; public Friend() { } public Friend(String name, String thumbnailUrl) { this.name = name; this.thumbnailUrl = thumbnailUrl; } public Friend(String name, String thumbnailUrl, String id) { this.name = name; this.thumbnailUrl = thumbnailUrl; this.id = id; } public String getID(){ return id; } public void setID(String id){ this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getThumbnailUrl() { return thumbnailUrl; } public void setThumbnailUrl(String thumbnailUrl) { this.thumbnailUrl = thumbnailUrl; } </code></pre> <p>}</p> |
6,942,445 | 0 | <p>I have had mixed results using TemplateBinding on custom dependency properties. Because of this, I have used RelativeSource TemplatedParent which seems to work in every situation.</p> <pre><code><EasingColorKeyFrame KeyTime="0:0:.5" Value="{Binding HeaderColor, RelativeSource={RelativeSource TemplatedParent}}" /> </code></pre> |
16,720,560 | 0 | <p>If you want to check if a variable (say v) has been defined and is not null:</p> <pre><code>if (typeof v !== 'undefined' && v !== null) { // Do some operation } </code></pre> <p>If you want to check for all falsy values such as: <code>undefined</code>, <code>null</code>, <code>''</code>, <code>0</code>, <code>false</code>:</p> <pre><code>if (v) { // Do some operation } </code></pre> |
32,275,172 | 0 | <p>Use the <code>content</code> property in <code>::after</code> or <code>::before</code> pseudo-element to add additional text.</p> <p>You can also position it elsewhere with <code>absolute</code> and <code>top</code>/<code>bottom</code>,<code>left</code>/<code>right</code> properties.</p> <pre><code>#site-title::after { content: "Another Title"; /* If you need to position it, uncomment and modify the below values position: absolute; top: -5px; left: 20px */ } /* Add below rule if you need to position the additional text w.r.t to the current title */ #site-title{ position: relative; } </code></pre> <p><strong>Output:</strong></p> <p><a href="https://i.stack.imgur.com/N7moz.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/N7moz.png" alt="enter image description here"></a></p> |
36,328,466 | 0 | <p>After have run the command: npm install orientjs</p> <p>Save this code in a file.js:</p> <pre><code>var OrientDB = require('orientjs'); var server = OrientDB({ host: 'localhost', port: 2424, username: 'root', password: 'root' }); var db = server.use({ name: 'GratefulDeadConcerts', username: 'root', password: 'root' }); server.close(); </code></pre> <p><strong>UPDATE</strong></p> <pre><code>var OrientDB = require('orientjs'); var server = OrientDB({ host: 'localhost', port: 2424, username: 'root', password: 'root' }).use({ name: 'GratefulDeadConcerts', username: 'root', password: 'root' }); server.close(); </code></pre> <p>Hope it helps</p> |
4,691,794 | 0 | <p>You also can set NavigateUrl property in code-behind file, in Page_Load event handler, for instance. It will work.</p> <p>In the code-behind class:</p> <pre><code> protected void Page_Load(object sender, EventArgs e) { HyperLink2.NavigateUrl = "~/Default.aspx?customer=&CompanyName=" + Server.UrlEncode("abc#"); } </code></pre> <p>And in markup:</p> <pre><code><%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:HyperLink ID="HyperLink2" runat="server" Target="_new">wc </asp:HyperLink> </div> </form> </body> </html> </code></pre> |
32,920,954 | 0 | <p>The simplest solution is to use</p> <pre><code>new Loadable(); </code></pre> <p>if the class is know at compile time and you expect it to be available at runtime. Note: this will throw a <code>NoClassDefError</code> at runtime if it is not available.</p> <p>If you are not sure it will be available a runtime, you might use </p> <pre><code>Class.forName("classload.Loadable").newInstance(); </code></pre> <p>as it is clearer as to which exceptions will be thrown.</p> <p>The problem with</p> <pre><code>classload.Loadable.class.newInstance() </code></pre> <p>is that it's not particularly useful in either context. </p> <p>Note: <code>Class.newInstance()</code> has a known issue were it will throw <em>checked</em> exceptions which you don't know about. i.e. if the Constructor throws a checked exception it won't be wrapped and the compiler can't tell what will be thrown.</p> |
24,370,558 | 0 | <p>You want to inspect the <a href="http://msdn.microsoft.com/en-us/library/system.environment.commandline%28v=vs.110%29.aspx" rel="nofollow">Environment.CommandLine</a> Property</p> <blockquote> <p>This property provides access to the program name and any arguments specified on the command line when the current process was started.</p> <p>The program name can include path information, but is not required to do so. Use the <a href="http://msdn.microsoft.com/en-us/library/system.environment.getcommandlineargs.aspx" rel="nofollow">GetCommandLineArgs</a> method to retrieve the command-line information parsed and stored in an array of strings.</p> </blockquote> |
Subsets and Splits