_id
stringlengths
2
6
partition
stringclasses
3 values
text
stringlengths
4
46k
language
stringclasses
1 value
title
stringclasses
1 value
d3601
train
Please check out the Storage category in the AWS Amplify library. There's some setup/configuration to do (as noted in that guide), but the actual upload will look like this: Amplify.Storage.uploadFile( "remoteS3Key", localFile, result -> Log.i("Demo", "Successfully uploaded: " + result.getKey()), failur...
unknown
d3602
train
Try this: SELECT a.month, a.courses, b.absences FROM (SELECT DATE_FORMAT(c.DATE, "%M") AS month, COUNT(*) AS courses FROM Course c GROUP BY month) a LEFT JOIN (SELECT DATE_FORMAT(c.date, "%M") AS month, COUNT(*) AS absences FROM Absence a LEFT JOIN Cou...
unknown
d3603
train
In this case, it is preferable to use a List<Integer> instead of int[] List<Integer> arr = new ArrayList<Integer>(); Random random = new Random(); int randonint = arr.remove(random.nextint(arr.getSize())); Every time this code is runned, it will grab a random int from the list arr, then you can add it to a different L...
unknown
d3604
train
I just did a test (using ICMP rule) , you have to add a rule in the security group as you said. you should add it normally, and set the source to 1.2.3.4/32 (following your example). please note that I am using Elastic IP in my tests. A: According to the docs, it should also be possible to list that security group as ...
unknown
d3605
train
To see whether the element has class .price, use the $.hasClass() method. $(this).hasClass("price"); A: You could combine both your tests into a single jQuery command: if( $(e.target).is('.price, a') ) { .... } That tests if the target is either has the class price, or is an a tag, or is both. If you wanted to test ...
unknown
d3606
train
(Duplicated from https://social.msdn.microsoft.com/Forums/windowsapps/en-US/6ce9be89-8b14-46fa-b3d5-622bef0adb81/xaml-touch-events-dont-work-properly?forum=winappswithnativecode ) That sounds like correct behaviour. The mouse is a single pointer, not separate pointers for the separate buttons. So long as any button is ...
unknown
d3607
train
You have to setup DynamoDB streams. A lambda function attached to the stream is going to analyze db changes for related to the specific item and then perform other actions specific to your application.
unknown
d3608
train
It looks like this project you found is fairly old and is using older dependencies. You would need to go into your SDK manager and install SDK version 22 (Lollipop MR1). You could also fork the project and update it to use API version 24 so it works with your project. A: <uses-feature android:name="android.sof...
unknown
d3609
train
Posting the solution which I implemented as a work around. Turns out that you cannot access angular merge field values inside visualforce components. So instead of manipulating(segregating input into key-value pair) values inside angular controller, I have to push the logic to apex controller. <apex:component controlle...
unknown
d3610
train
One thing you can try is to have a CustomValidator(see here) check that both textboxes are not empty. Then validate both textboxes with a regular expression. The expression should check for either a valid entry OR a blank field. A: You can create a CustomValidator and handle it there http://msdn.microsoft.com/en-us/l...
unknown
d3611
train
Since you are assigning the return value of the method invocation to a variable, this now becomes scripted, and you will need to encapsulate the step within a script block for declarative DSL: pipeline { agent any stages { stage('Hello') { steps { echo 'Hello World' script ...
unknown
d3612
train
Try this: <Switch android:id="@+id/calendar_selection_switch" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentEnd="true" android:layout_centerVertical="true" android:layout_gravity="end|center_vertical" androi...
unknown
d3613
train
Model: namespace MvcApplicationrazor.Models { public class CountryModel { public List<State> StateModel { get; set; } public SelectList FilteredCity { get; set; } } public class State { public int Id { get; set; } public string StateName { get; set; } } public...
unknown
d3614
train
Follow advice listed in this railscast <%= javascript_tag do %> $('#createhotelModal').modal('toggle') <% end %>
unknown
d3615
train
Arrays are reference types, not value types. That means that the variable, examplearray doesn't actually contain 1280 bits of data, it just contains a reference (sometimes also referred to as a pointer) to the actual data, which is stored elsewhere (for the purposes of this post, it doesn't matter where "elsewhere" ac...
unknown
d3616
train
Make the IDs unique. Here is the below I tried and worked <script> function desactivacasillas() { var formularioprincipal = document.getElementById("troncocomun"); var primerelemento = document.getElementById("1").value; if (document.getElementById("1").value < 6) { var checkbox...
unknown
d3617
train
The first loop would be infinite because you check if the scanner has a next line, but never advance its position. Although using a Scanner is fine, it seems like a lot of work, and you could just let Java's nio package do the heavy lifting for you: String[] lines = Files.lines(Paths.get("notepad.txt")).toArray(String[...
unknown
d3618
train
I know this is an old question, but it's ranking high in Google results, so I figured I'd answer it anyway. Make sure you're not running any code in the layout page's codebehind that calls and then closes SPContext.Current.Web. I had this exact behavior and that was the culprit To test, add a different web part to a de...
unknown
d3619
train
Use Device.OpenUri and pass it the appropriate URI, combined with Device.OnPlatform to format the URI per platform string url; Device.OnPlatform(iOS: () => { url = String.Format("http://maps.apple.com/maps?q={0}", address); }, Android: () => { url = String.Format("http://maps.google.com/maps?q={0}", ...
unknown
d3620
train
Since cell is limited to 50,000 characters, using CONCATENATE is not possible. Alternative solution is to use Google Apps Script's custom function. The good thing about Apps Script is it can handle millions of string characters. To create custom function: * *Create or open a spreadsheet in Google Sheets. *Select the...
unknown
d3621
train
Here is an example of what I meant on my comment. I moved most of the calculations out of the draw, in setup we load the spheres array with the positions and an initial color then the setInterval(changeColor, 500) changes the color, on this case is just something random but you could do the same with data coming from a...
unknown
d3622
train
I think you can use fitdistr %Generate data r=randn(100,1); [counts,centers]=hist(r,20) %r=Data in your case %fit a Gaussian pd=fitdist(r(:),'normal') pd = NormalDistribution Normal distribution mu = 0.0700439 [-0.111376, 0.251463] sigma = 0.914313 [0.802773, 1.06213] x=-3:0.1:3; PDF=pdf...
unknown
d3623
train
"{{" and "}}" A: What I think you want is this... string formatString = @" using System; public class ClassName {{ public double TheFunction(double input) {{ {0} }} }}"; string entireClass = string.Format(formatString, userInput); A: Escape them by doubling them up: string s = String.Format("{{...
unknown
d3624
train
You should specify the status=… [Django-doc] code in your render call, this is by default a 200: def error_404(request, exception): return render(request,'MyApp/404.html', status=404)
unknown
d3625
train
You'll want to use the React Native component instead of standard HTML tags. Instead of styled.div, you'll use styled.View. Also you have to use react native's Text component in replace of standard HTML tags that would hold textual data such as <H1>. So, this is what your code should translate to import * as React from...
unknown
d3626
train
In function addArray you keep recreating the array with the line: parent::$this->arraybase(); Remove this line and call arraybase when you want to create it. A: Well, first off, you don't need to parent::$this->arraybase(). Just do $this->arraybase(). In fact, I'm not even sure your way is even valid syntax. But I...
unknown
d3627
train
Try the below approach to get the Id,Title and body from that webpage. Sub Get_data() Dim HTTP As New XMLHTTP60, res As Variant Dim r As Long, v As Long With HTTP .Open "GET", "https://jsonplaceholder.typicode.com/posts", False .setRequestHeader "User-Agent", "Mozilla/5.0" .send ...
unknown
d3628
train
Mysql doesn't support TOP that is for SQL Server. Instead of using TOP you can use mysql LIMIT so your query would be: SELECT `id` FROM radcheck ORDER BY `id` DESC LIMIT 1; A: You do not have to use single quotes around column names. if you need to escape it use backticks. And TOP is not mysql syntax. You have to use...
unknown
d3629
train
_low] RewriteCond %{HTTP_USER_AGENT} (acer\ s100|android|archos5|blackberry9500|blackberry9530|blackberry9550|cupcake|docomo\ ht\-03a|dream|htc\ hero|htc\ magic|htc_dream|htc_magic|incognito|ipad|iphone|ipod|lg\-gw620|liquid\ build|maemo|mot\-mb200|mot\-mb300|nexus\ one|opera\ mini|samsung\-s8000|series60.*webkit|s...
unknown
d3630
train
http://technet.microsoft.com/en-us/library/jj219429.aspx This explains the process in detail. The process is slightly different depending on which office app you're building for. You can do task panes in... Excel, Word, Project and PowerPoint. Here is a link to tutorials and samples... http://msdn.microsoft.com/en-u...
unknown
d3631
train
Your issue: * *PHP serves on page request the respective date values. *You store those values into JS *You loop all over again the same values. Therefore the loop works but the values are unchanged. Instead what you should: * *Create a var D = new Date("<?php echo date('D M d Y H:i:s O');?>"); outside of yo...
unknown
d3632
train
information_schema.COLUMNS contains all the columns in your DB so you can query for a specific pattern in the name like this: select c.COLUMN_NAME from information_schema.COLUMNS as c where c.TABLE_NAME = 'mytable' and c.COLUMN_NAME like 'PREFIX_%'; A: You are going to have to construct the query with a quer...
unknown
d3633
train
By adding scalaSource in Test := baseDirectory.value / "test" "/scala", to my Build.scala file, I've been able to make the "scala" folder a test source, but the parent "test" folder was still also a test source: As far as I could tell, this is a setting inherited from Play, since if I removed the .enablePlugins(PlaySc...
unknown
d3634
train
There are some requirements for streaming to work. The file might not be encoded "correctly" http://developer.android.com/guide/appendix/media-formats.html For video content that is streamed over HTTP or RTSP, there are additional requirements: * *For 3GPP and MPEG-4 containers, the moov atom must precede any mdat a...
unknown
d3635
train
Windows displays this in the shell by using the Windows Property System in the Win32 API to check the undocumented shell property System.Volume.BitLockerProtection. Your program will also be able to check this property without elevation. If the value of this property is 1, 3, or 5, BitLocker is enabled on the drive. An...
unknown
d3636
train
You can convert the variable labels to variable names from within Stata before exporting it to a R or text file. As Ian mentions, variable labels usually do not make good variable names, but if you convert spaces and other characters to underscores and if your variable labels aren't too long, you can re-label your vars...
unknown
d3637
train
If you were using jq it'd as simple as jq '.[:1] + [{"x":"x", "y":"y"}] + .[1:]' input.json Demo and jq '.[:2] + [{"m":"m", "n":"n"}] + .[2:]' input.json Demo respectively. A: If it's something that you are planning to reuse you can do it in python. #! /usr/bin/env python3 import json import sys j = json.load(sys....
unknown
d3638
train
Serve App With Express Basically, when you change paths you are moving away from your index.html unless you serve the react app with a server of some kind. Try to setup an express server for index with something like this: const express = require('express') const path = require('path') const port = process.env.PORT || ...
unknown
d3639
train
You can make a jquery function, that initializes the value of the input to some text when the document is loaded (this should be your placeholder) and then put this value to "" (nothing) when there is an onclick event in the input. Hope it helps A: Try this JSFiddle. _selector is a custom variable that I've made. Just...
unknown
d3640
train
With the polled adapter, you can use a Smart Poller to change the selector expression before each poll; call setMessageSelector() on the JmsDestinationPollingSource. You cannot dynamically change the selector on a message-driven adapter; you have to stop the adapter first.
unknown
d3641
train
Try to use "\n" instead of '\n' (or even PHP_EOL predefined constant). Use double quotes. Related: * *What is the difference between single-quoted and double-quoted strings in PHP? *FPDF multicell alignment not working
unknown
d3642
train
you can try like below select ip, count(distinct uid) from table t group by ip A: SELECT uid,COUNT(ip)NoOfVotes FROM (SELECT uid,ip,Serial=ROW_NUMBER() OVER(PARTITION BY ip,uid ORDER BY uid) FROM dbo.tbl_user)A WHERE Serial=1 GROUP BY uid I think this will give you perfect vote counting. Using Row Number actively ...
unknown
d3643
train
Simple solution is to try to replace your <img src="/LoggedUserHome/GetGender"/> in the view with @{ var d = new PrimeTrekkerEntities1(); var AllGender = new List<string>(from c in d.tbl_Profile select c.sex).ToList(); var Groping = AllGender .GroupBy(i => i) .Select(i => new { sex = i.Key,...
unknown
d3644
train
The purpose of a servlet is to respond to an HTTP request. What you should do is refactor your code so that the logic you want is separated from the other servlet and you can reuse it independently. So, for example, you might end up with a Mailman class, and a MailServlet that uses Mailman to do its work. It doesn't ma...
unknown
d3645
train
.list_container { direction: rtl; overflow:auto; height: 50px; width: 50px; } .item_direction { direction:ltr; } <div class="list_container"> <div class="item_direction">1</div> <div class="item_direction">2</div> <div class="item_direction">3</div> <div class="item_direction">4</div>...
unknown
d3646
train
import requests import xmltodict url = 'http://192.168.1.8:8060/query/apps' text = requests.get(url).text #content = """ #<?xml version="1.0" encoding="UTF-8"?> #<apps> #<app id="31012" type="menu" #version="2.0.53">Vudu Movie &amp; #TV Store</app> #</apps> #""" text = text.split('\n') text = text[1:] text = ''.join(...
unknown
d3647
train
Using your posted data this works for me: Sub Tester() Dim ws As Worksheet, c As Range, rng As Range, arr, proj, impl, rw As Long, v Set rng = Selection 'for example ReDim arr(1 To rng.Rows.Count, 1 To 3) 'size the output array proj = "" impl = "" rw = 0 For Each c ...
unknown
d3648
train
So this is what you can do: 1) create a vector of dates to interpolate months <- lapply(X = data$date, FUN = seq.Date, by = "month", length.out = 3) months <- data.frame(date = do.call(what = c, months)) 2) left join you date.frame to the months data.frame to create NAs for extrapolation library(dplyr) monthly_data <-...
unknown
d3649
train
If possible, you can use directly the LSQCURVEFIT function using Levenberg-Marquardt - method, which is Coder-compatible, with some limitations - see it's documentation that describes the limitations in detail. Under the hood FIT uses LSQCURVEFIT, but in a non-Coder-compatible way.
unknown
d3650
train
Apparently the singleton class has to be explicitly declared public...now it works on both the emulator and the device.
unknown
d3651
train
You might need some checking if there are any keywords in the $keywords variable but here is a solution that works with your current structure. Presuming each keyword in the string is separated by a space: $keywordSeparator = " "; $keywords = explode($keywordSeparator, $keywords); $keywordsWhere = " WHERE keywords LIKE...
unknown
d3652
train
You are setting offset to 0 inside the loop. So offset is always 0. You should move this line: let offset = 0; before the for statement.
unknown
d3653
train
here's some pseudo code if (a.x-b.x)**2 + (a.y-b.y)**2 <= a.radius**2: vec_a_b = b-a # or you can do this component wise a.velocity = normalized(vec_a_b)*a.velocity.magnitude this assumes point a has a velocity vector, which encodes the direction it's currently headed in and its speed. now you can use the vel...
unknown
d3654
train
The hash differs because the data differs. The file is UTF-8, not ASCII, so you should use the UTF-8 encoding to convert the string to bytes to get the same result: byte[] data = Encoding.UTF8.GetBytes("The quick brown fox jumps over the lazy dog"); Also, the file may contain a BOM (byte order mark) at the beginning. ...
unknown
d3655
train
[UIView animateWithDuration:1.5 animations:^ { removeView.transform = CGAffineTransformMakeScale(0.0f, 0.0f); } completion:^(BOOL finished) { [removeView removeFromSuperview]; }]; A: Some changes: UIView *removeView=[self.tableView viewWithTag:10] ; removeView .transform = CGAffineTransformMakeScale(1...
unknown
d3656
train
Your command uses pipe |. It requires a shell: p = subprocess.Popen(command, shell=True) The command itself as far as I can tell looks ok. A: It's not necessary to use shell=True to achieve this with pipes. This can be done programmatically with pipes even where concern about insecure input is an issue. Here, conn_pa...
unknown
d3657
train
Combine all the dataframes in one dataframe with a unique id value which will distinguish each dataframe. I created two dataframes here with data column representing the dataframe number. library(dplyr) x1 <- data.frame(id = round(runif(21, 1, 21)), TestDay = rep(c("m","t","w","th","f","sa","su"), 3)) x2 <- data.frame...
unknown
d3658
train
Solution 1: I don't have an answer using jQuery. But using a plain/vanilla JavaScript wouldn't cause any issue :). Following script allows you to detect the Viewport size (height and width) reliably. https://github.com/tysonmatanich/viewportSize Sample usage: <script type="text/javascript"> var width = viewportSize...
unknown
d3659
train
Fixed it using options prop on Screen. In my Drawer Navigator: <Drawer.Navigator> <Drawer.Screen name="Home" component={HomeScreen} options={{ icon: 'home' }} /> </Drawer.Navigator> and to access it in the custom DrawerContent component: export default function DrawerContent({ state, navigation, ...pro...
unknown
d3660
train
Override getValueAt() in your TableModel to return the correct value for cells in the TOTAL row and column. The correct value may be calculated by invoking getValueAt() in a loop, as shown in your TableModelListener example. In this complete example, the value shown in each row of the second column depends on the value...
unknown
d3661
train
For my case, I have to remove this dependency from build.scala "com.typesafe" % "play-plugins-inject" % "2.0.2" and remove plugin from play.plugins. 1500:com.typesafe.plugin.inject.ManualInjectionPlugin This plugin brings in play_2.9 which has dependency on ehcache and causes play to initialize play's cache second ti...
unknown
d3662
train
try this data = [ele.text for ele in soup.find_all(text = True) if ele.text.strip() != ''] print(data)
unknown
d3663
train
Since the regex engine you are using is .NET, you may use a positive lookbehind based solution: (?<=\A[^&]*)& See the regex demo. Details * *(?<=\A[^&]*) - a location in the string that is immediately preceded with * *\A - start of string *[^&]* - 0 or more chars other than & *& - a & char.
unknown
d3664
train
You are redirecting the output of nslookup and ipconfig to a path without quoting, so maybe your location on drive E:\ contains spaces, which would prevent nslookup to write to correct file. Maybe it would good to provide the actual value of "path" and "path1". If this is not the case, try to open a command prompt as a...
unknown
d3665
train
Think of it as cartoon.kenny[1] = cartoon.stan; They are basically the same thing A: If we bring the whole thing to one common style of using the subscript operator [] (possibly with &) instead of a * and + combination, it will look as follows cartoon.stan[1] = 4; cartoon.kyle[0] = &cartoon.stan[1]; cartoon.kenny = &...
unknown
d3666
train
Instead of url_for('/predict'), drop the leading slash and use url_for('predict'). url_for(...) takes the method name and not the route name. A: I was not importing url_for. from flask import Flask, request, render_template, url_for
unknown
d3667
train
If I'm understanding you correctly, you want to remove the first and last elements of the array if the size of the array is greater than 3. You can do this by using the findAndModify query. In mongo shell you would be using this command: db.collection.findAndModify({ query: { $where: "this.time.length > 3" }, u...
unknown
d3668
train
I suppose this is more of a general app architectural concern. The simplest answer is you should take the current time in seconds (new Date().getTime()), determine how many seconds there are until the next day, and set a timer for that number. However, as you mentioned, once the app is killed, that timer will no longer...
unknown
d3669
train
Ok, based on your response in the comments, I think this is what you are going for. The ChromeDriver object has a Capabilities property you can use to request the name and version. As long as you are working with a ChromeDriver directly and not an IWebDriver that property is accessible like follows: string? versions = ...
unknown
d3670
train
The problem is that LinkedList is not a thread-safe structure. Therefore, it should not be shared and modified by multiple concurrent threads as the changes on queueB might not be properly "communicated" to other threads. Try using a LinkedBlockingQueue instead. Also, use an AtomicLong for count for the same reason: i...
unknown
d3671
train
if the id of the menu item is set to the fragment id, you could probably use navigation controller to switch the destination. override fun onOptionsItemSelected(item: MenuItem): Boolean { when (item.itemId) { R.id.settings -> currentNavController.navigate(R.id.navigation_destination_id) } ...
unknown
d3672
train
I ran into the same thing a while ago, which was really confusing. You have to set the correct access scope for the virtual machine so that anyone using the VM is able to call the storage API. The documentation shows that the default access scope for storage on a VM is read-only: When you create a new Compute Engine i...
unknown
d3673
train
I was verifying the code changes by navigating to the lambda code editor on the AWS web portal, and it appears this was just a client side issue in the web UI. It took about 5 minutes before the lambda_function.py was updated in the UI (despite refreshing), whereas the other code files did get updated immediately. It...
unknown
d3674
train
You should initialize socket.io-redis after ready event. Also you should call to client.auth('password1', ()=>{}) function. Check this part of documentation: When connecting to a Redis server that requires authentication, the AUTH command must be sent as the first command after connecting. This can be tricky to coordin...
unknown
d3675
train
All you need to do is reference a different style that includes a slightly bigger font for the size of the date. I'm not exactly sure why yours isn't working using the styles.xml as it seems correct. However I would just simply add it to the XML attributes for the calendar. This will be fine as presumably you're only u...
unknown
d3676
train
With group_by you can group by any criteria given, then assemble all grouped items by taking their common .src_ip from any of them (eg. the first), and .sessions as a mapped array on .session from all of them. Add other parts as you see fit. jq 'group_by(.src_ip) | map({src_ip: .[0].src_ip, sessions: map(.session)})'
unknown
d3677
train
POJO MyForm is populated by Spring framework itself while submitting the form. Spring takes request parameters, convert into correct format and populate fields of your empty POJO but if you call methods annotated by @DateTimeFormat manually then it doesn't work as expected. You have to use java SimpleDateFormat or joda...
unknown
d3678
train
This is a guess, but your html is not valid and maybe because of that the facebook scraper fail to parse and extract the data from it. I haven't went through all of it, but you don't seem to close all tags. For example the description and keywords meta tags don't end with "/>" or ">". Edit Screen capture of what the d...
unknown
d3679
train
Please check out this tutorial that explains how to Set up continuous integration and deployment to Azure App Service with Jenkins and One of the best method to deploy to Azure Web App (Windows) from Jenkins : https://learn.microsoft.com/en-us/azure/jenkins/java-deploy-webapp-tutorial A: To find the Azure AD user with...
unknown
d3680
train
You are not far from the goal, at least to a certain extent. There's a limit to how many pixels can be transferred over such a request, namely 262144. Your image, when taken over the whole globe (like you are doing), has 3732480000 - over 10000x too many. Still, you can sample a small area and put in the numpy: import ...
unknown
d3681
train
It's hard to give a definitive answer for something like this (unless someone from the compiler team drops in :)), but there's a few points you can consider: The performance "bonus" of structs is always a tradeoff. Basically, you get the following: * *Value semantics *Possible stack (maybe even register?) allocatio...
unknown
d3682
train
This is possible with a javascript onclick or onsubmit event, using GET rather than POST, but it's definitely not best practice. Use a form or AJAX, as recommended by other posters: <input type="text" id="name" /> <button id="submit" onclick="javascript:window.location='http://yoururl.com/?name='+document.getElementBy...
unknown
d3683
train
By default when we use transparent images in our app mostly the transparent part will show its parent. For example if we use transparent images for menus in android. then by default the theme of the device/background will be the parent view for this image. According to me better to change the image and try.
unknown
d3684
train
You may easily get logs of all SQL statements from DataNucleus by turning on the category DataNucleus.Datastore.Native (see http://www.datanucleus.org/products/datanucleus/logging.html) JDO2 InstanceLifecycleListeners would allow you to intercept events, but I don't think the SQL statements would be available there... ...
unknown
d3685
train
Aside from pointing out that JDK/JRE bundles Sun's SJSXP which works ok at this point, I would recommend AGAINST using Stax ref impl (stax.codehaus.org) -- do NOT use it for anything, ever. It has lots of remaining bugs (although many were fixed, initial versions were horrible), isn't particularly fast, doesn't impleme...
unknown
d3686
train
I have encountered same problem while working on this. When I think on your options 1- There is no need to re-write whole app * *Create an api endpoint on server side *Create a script(program) on client that will push real paths to server Your files should be accessible over network Here is the script code tha...
unknown
d3687
train
The save method is asynchronous and returns a promise. In your case, newProduct.save() returns a promise which is not being fulfilled and no error is actually thrown: app.post('/products', async (req, res, next) => { try { const newProduct = new Product(req.body); await newProduct.save(); re...
unknown
d3688
train
You need integrate facebook SDK. facebook developer
unknown
d3689
train
try this @Valid usage show here for nested object in bean class just check once.. hibernate validator
unknown
d3690
train
You can look at Routineer - Scala DSL for declaring HTTP routes: https://github.com/mvv/routineer
unknown
d3691
train
Put the buttons in a custom panel with an image background (example here). In IDE use a regular JPanel and drag the JButtons over it, then change the code from JPanel to ImagePanel (or whatever name you used for it). A: This is a little cheeky, but. * *Start by setting the layout of the base component to BorderLayo...
unknown
d3692
train
While it's not a direct answer to your question - I have a workaround for you. If you add your gesture recognizers to your custom annotation view then you can capture both long press and double tap over the annotation view and any associated callout. Some example code I wrote to try this: import UIKit import MapKit cl...
unknown
d3693
train
The basic rule to parse C declarations is "read from right to left and the inside out jumping toward the right when leaving a pair of parenthesis", i.e. start the the most deeply nested pair of parenthesis and then work yourself out looking toward the right. Technically you must know operator associativity, but it work...
unknown
d3694
train
In the first code you are replacing the text every time you iterate, the solution is to use append() cur = conn.cursor() conn.text_factory = str cur.execute(" SELECT text FROM Translation WHERE priority = ?", (m,)) self.SearchResults.clear() # clear previous text for row in cur: self.SearchResults.append('{0}'.fo...
unknown
d3695
train
You can use a Dictionary or a Hashset to reduce Any and Contains complexity from O(n) to O(1): The idea above can still be used for large lists to replace list/array/IEnumarable<> Contains which is O(n) with Hashset's Contains which is O(1). var entitiesWithPriorityMap = entitiesWithPriority.ToDictionary(e => e.entityN...
unknown
d3696
train
There are several issues in this code: * *It returns null when places == 0 -- without shift, the original array needs to be returned *In the given loop implementation the major part of the array may be skipped and instead of replacing the first places elements with 0, actually a few elements in the beginning of the ...
unknown
d3697
train
You need to use Apache mod_rewrite to achieve this. If your server has it enabled, you could do something like this in .htaccess: RewriteEngine on RewriteRule ^([^/\.]+)/([^/\.]+)/?$ /statement.php?company=$1&q=$2 [L] A: You can use $_SERVER['PATH_INFO'] to access anything in the URL docpath after the address of your...
unknown
d3698
train
Since your end result (per country) is a single field with bands delimited by CRLF, you can make it simple. Add the following Dims; Dim aArray(10, 2) As String Dim iC As Integer Dim i As Integer IC = 0 Then add this inside your loop (change field names as required): Debug.Print rs1!country & vbTab & rs1!ban...
unknown
d3699
train
Check out hosted background services in .NET Core, sounds like it could work for you. Hosted background services continue running on your server even if the user navigates away from your site. You could have an OrderManager hosted service that guides each order through the process and keeps the order status updated in ...
unknown
d3700
train
SET SERVEROUTPUT ON; DECLARE v_CARE_COUNT NUMBER := 0; v_PHONE VARCHAr2(40) := NULL; BEGIN select count(distinct care_level) into v_CARE_COUNT from Table1 where user_id = '100'; IF(v_CARE_COUNT > 0) THEN select phone into v_PHONE from Table2 ...
unknown