id stringlengths 5 11 | text stringlengths 0 146k | title stringclasses 1
value |
|---|---|---|
doc_23534200 | org.apache.commons.dbcp.BasicDataSource
and managing it through Spring:
org.springframework.jdbc.datasource.DataSourceTransactionManager
While using this combination with the Teradata JDBC driver if my database goes down or there is a network glitch I receive the following error:
08S01 804 : I/O Error, Socket closed... | |
doc_23534201 | IE speed up execution command
Browser.speed = :fast
Every little bit of help would be really appreciated.
A: watir-webdriver builds on top of selenium-webdriver, and the Chrome driver has recently been rewritten with vast improvements in both speed and reliability. Make sure you have the latest version of both gems.
| |
doc_23534202 | <!DOCTYPE HTML>
<html>
<head>
<title>Audio</title>
</head>
<body>
<script>
function play(){
var audio = document.getElementById("audio");
audio.play();
}
function stop(){
var audio = document.getElementById("audio");
audio.stop();
}
function pause(){
var audio = docum... | |
doc_23534203 | Lets assume the following theoretical scenario: one has a component Container, which includes two other components (Selection and Display). Now in terms of functionality:
Container holds a state, which can be changed by Selection, Display shows data based on said state.
Now how would one go about changing the URL as we... | |
doc_23534204 | This version of the algorithm selects a pivot at the end of the array, places a "wall" at the beginning and starts iterating the list. When it finds an item that is smaller than the pivot, it swaps that item with the item on the right side of the wall and moves the wall one position to the right. When all items are com... | |
doc_23534205 | 1) var1 = var1 || 'default_value'
2) var1 = typeof(var1) !== 'undefined' ? var1 : 'default_value'
3) var1 = var1 !== 'undefined' ? var1 : 'default_value'
4) var1 = var1 != 'undefined' ? var1 : 'default_value'
A: The second one is the most correct of the four. It will work as you intend (if variable is not set, use d... | |
doc_23534206 | cross_entropy = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(y, y_))
optimizer = tf.train.AdamOptimizer(LEARNING_RATE)
for j in range(n_rounds):
sample = np.random.randint(row, size=int(batch_size))
batch_xs = temp[sample][:]
batch_ys = output[sample][:]
... | |
doc_23534207 | Here is what I need to do with it:
*
*For each face, obtain the neighboring faces
*Get the edge any two faces share in common
*Store the coordinates (to draw them later)
There is no need to manipulate the structure (e.g. delete edge, split faces etc).
I have considered using DCEL, but I'm afraid it could be over... | |
doc_23534208 | in TableA.. I have 5 fields.. ( Empty ) (only structure having Autoincrement-ID field)
in TableB ..I have 7 Fields ( Full ..1 million Recs.)
TableA is Empty .. i want to add a complete column from TableB ..
i.e the field'ID' in the TableB shud be inserted inside the the field'Value' in the TableA..
i.e complete column'... | |
doc_23534209 | I tried to add it to the signature of the invoke like this:
public async Task Invoke(HttpContext context,CancellationToken token)
But as soon as I add it, it isn't called any more.
What am I doing wrong?
A: I think the idea is not to be able to cancel invocation of the middleware, from inside the middleware if you ca... | |
doc_23534210 | I have them listed in a table with something like this:
<table>
<thead>
<tr>
<th>Project Number</th>
<th>Project Name</th>
<th>Status</th>
</tr>
</thead>
<tbody>
@foreach (var p in projects)
{
<tr>
<td>@p.ProjectId</td>
<td>@p.Name</td>... | |
doc_23534211 | If I were creating a new process I would just run:
PM2 start [process name] --max-memory-restart 700M or whatever
How can I do the same for an existing process? How can I confirm that it works?
Thanks!
A: To change your existing PM2 process. you can use this command:
pm2 restart [existing name] --max-memory-restart 70... | |
doc_23534212 |
A: The short answer is: read the System Interface section of the elisp info manual. More specifically, the time sections:
*
*Time of day
*Time conversion
*Time parsing
*Time calculations
The longer answer:
Emacs can work with time values as strings, floats, or a tuple of two or three integers. E.g. call some f... | |
doc_23534213 | I'm using dburles:factory to create a new user with 'administrator' role in the Meteor.users collection.
I'm then invoking the validated method using the userId of the 'admin' user, but it is throwing an error.
Although I invoke the method using the context of the administrator user as per the documentation, it doesn'... | |
doc_23534214 | Here is what I have:
MyCustomAttribute in MyDll.dll:
namespace MyDll
{
[AttributeUsage(AttributeTargets.All, Inherited = true, AllowMultiple = false)]
public sealed class MyCustomAttribute : Attribute
{
public MyCustomAttribute(String Name)
{
this.Name= Name;
}
p... | |
doc_23534215 | http://mywebsite/file.imgext --> C:\path\to\dir\file.imgext
A: WinInet APIs are easier than you think
Here is a complete win32 console program. Can be built with with VS 2010 Express and down loading windows SDK to get WinInit.
// imaged.cpp : Defines the entry point for the console application.
//
// Copy file fro... | |
doc_23534216 | <IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php?p=%{REQUEST_URI}&%{QUERY_STRING} [L]
</IfModule>
Problem is, that in apache 2.2.22, the p and the other query objects don't come through,
but it w... | |
doc_23534217 | for j in range(1,50):
in_file=open(name+j+".dat", "r")
I get the error "TypeError: cannot concatenate 'str' and 'int' objects" which I sort of understand. I tried changing this to
for j in range(1,50):
in_file=open(sys.argv[1]+j.to_eng_string()+".dat", "r")
but now I get the error "AttributeError: 'int' obj... | |
doc_23534218 |
All my questions in this post are regarding composer the php dependency tool not docker-composer the successor of fig.
I'm trying to build my own docker image to run WordPress installed as a composer dependency.
I'm working on building a docker image using docker PHP image as a base and what I need to do is install co... | |
doc_23534219 | Here I create POSIXct vectors as the basis for the rows within a dataframe. When I use rbind() withing as.data.frame() and use stringsASFactors = FALSE, the POSIXct values are changed to class character. I do know that it is rbind() and not as.data.frame() that is converting the class and there does not seem to be an... | |
doc_23534220 | {
"_id" : "5Ci9sLeBu2iPbWtR5",
"productId" : "010101111",
"description" : "PRODUCT EXAMPLE REF 1001",
"prices" : [
{
"priceId" : 10,
"description" : "Promotions",
"price" : 97.99
},
{
"priceId" : 15,
"description" : "Retail list",
"price" : 105.65
},
... | |
doc_23534221 | Error: ENOENT: no such file or directory, open '/home/ira/dev/eshka/http:/192.168.0.104:19000/node_modules/expo/AppEntry.bundle?platform=android&dev=true&hot=false&strict=false&minify=false'
at Object.openSync (node:fs:585:3)
at Object.readFileSync (node:fs:453:35)
at getCodeFrame (/home/ira/dev/eshka/node... | |
doc_23534222 | DataTable table = new DataTable();
// ...
// insert column to table
table.Columns.Add("name");
// ...
// insert value to table
foreach (DataRow row in table.Rows) {
row["name"];
row.Field<string>("name");
}
My question is:
*
*Is there a difference between ... | |
doc_23534223 | Please help me guys.
A: I have used a packages called flutter_speed_dial that gets this done
https://pub.dev/packages/flutter_speed_dial
This is an example that you can see it and check it for yourself
import 'package:flutter/material.dart';
import 'package:flutter_speed_dial/flutter_speed_dial.dart';
void main(){
... | |
doc_23534224 | Without this I can't test my iOS applications. How can I force Xcode to detect the iOS 7 device?
A: If your XCode is updated and working, then your problem could be that you have to add again your device to the portal, it happened to me.
From XCode 5:
Window -> Organizer
Then select your device, and press in "Add to M... | |
doc_23534225 |
A: This isn't so much a Node question as it is a Javascript question, as the part you need help with is executed on the client side. Take a look at this question: jQuery get textarea text. It seems to be exactly what you're looking for. I just want to add - you really should learn something like Express and its res.re... | |
doc_23534226 | Using UnAuthenticatedServerOAuth2AuthorizedClientRepository I get serverWebExchange must be null, and using AuthenticatedPrincipalServerOAuth2AuthorizedClientRepository I get principalName must be null.
Using https://www.baeldung.com/spring-webclient-oauth2 works as long as I call the client as a CommandLineRunner. Non... | |
doc_23534227 | Thanks in advance!
<ControlTemplate TargetType="{x:Type local:OperationModeIndicator}">
<Grid x:Name="rootGrid" RenderTransformOrigin="0.5,0.525">
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="OperationModeStates">
<VisualState x:Name="None">
... | |
doc_23534228 | I have a problem using Bing Speech SDK in windows. I need to implement speech recognition in my c# application in windows.
In my application, I start the recognition, then stop it, produce a response, say it using a TTS, then start listening again.
I can use the library included in the Microsoft Cognitive SDK, called... | |
doc_23534229 | In a sense, I want to .find a sister.
A: $('el').siblings('li');
or
$('el').parent().find('li');
A: To traverse to a closest possible parent node
$('.someclassname').closest('.parentclassname')
And to find a node inside that
$('.someclassname').closest('.parentclassname').find('.findwhatever')
If the node you are... | |
doc_23534230 | I am planning to add our project a functionality which will provide users to upload their videos to YouTube directly without the need to logon to Youtube.com and upload it there. I tried creating a sample project using the codes on
https://developers.google.com/youtube/v3/code_samples/dotnet
But couldn't succeed. Then ... | |
doc_23534231 | like this:
<select>
<option id="US" value="US">
</option>
<option id="Canada" value="Canada">
</option>
</select>
I want two things:
*
*I want to post request to server on selection of option
*And I want to put html elements inside option
Are these two things possible (for all browsers, especially m... | |
doc_23534232 | my xaml is like bellow and work fine:
<TextBlock x:Name="timer_check_version" Text="60" HorizontalAlignment="Center" FontSize="18">
<TextBlock.Foreground>
<SolidColorBrush x:Name="tbBrush" Color="#1e7145"/>
</TextBlock.Foreground>
<Text... | |
doc_23534233 | Error not related with any of my code at least from stack trace.
From debug prints seems that it happen after page is loaded.
Any thoughts?
com.ibm.xsp.FacesExceptionEx: java.io.NotSerializableException: org.openntf.domino.impl.Document
com.ibm.xsp.application.AbstractStateManager.saveSerializedView(AbstractStateMa... | |
doc_23534234 | Each time I initialise the queue it is empty in the constructor but returns a non-zero size when I call the class method size().
Here is a MWE:
/ TEST QUEUE
#include<iostream>
#include<queue>
#include<mutex>
#include<condition_variable>
#include <Eigen/Dense>
template <class dtype>
class Queue {
private:
std... | |
doc_23534235 | I just want to create a vbs to make my mongodb run automatically once server reboots. My mongod.exe is in the folder:
d:\bos\mongodb\bin\mongod.exe
My mongodb data is in the folder:
d:\bos\data\db
I try to write the vbs like this:
Set ws = CreateObject("WScript.Shell")
'this one for my nodejs service, and it works
ws.R... | |
doc_23534236 | curl https://domain.com/dir/filename --resolve "domain.com:443:10.10.10.10"
Since this is ssl I want to avoid substituting in the IP for the domain as in the following example.
curl https://10.10.10.10/dir/filename --header "Host: domain.com"
A: OneOfOne's answer above is excellent. I am posting the full working pac... | |
doc_23534237 |
A: The iodelay toolbox is available for Scilab:
https://atoms.scilab.org/toolboxes/iodelay
| |
doc_23534238 | The result set is a one line concatenation, and I want it to be place in every one of the overall result set lines.
----
MAIN QUERY
SELECT
H.CONNECTION_ID,
H.SEQUENTIAL_NO,
H.INVOICE_NUMBER,
H.INVOICE_DATE,
H.LAST_INVOICE_NUMBER,
H.LAST_INVOICE_DATE,
CAST(CASE
WHEN H.COLLECT_DEPOSIT = 1 TH... | |
doc_23534239 | {
"status": "ok",
"post": {
"id": 25,
"type": "post",
"slug": "price-list",
"url": "http://example.com/2016/02/10/post-title/",
"status": "publish",
"title": "title",
"title_plain": "title",
"content": "",
"excerpt": "",
"date"... | |
doc_23534240 |
A: The best age validation I have ever come up with is based on Regex.
The below logic covers all the breakpoint related age.
// regex for validation of date format : dd.mm.yyyy, dd/mm/yyyy, dd-mm-yyyy
RegExp regExp = new RegExp(
r"^(?:(?:31(\/|-|\.)(?:0?[13578]|1[02]))\1|(?:(?:29|30)(\/|-|\.)(?:0?[13-9]|1[0-2])\2... | |
doc_23534241 |
A: You can use the runmqsc command to view and administer IBM MQ from the command prompt or a script (For example Powershell or a Batch file).
To display all subscriptions to a topic:
echo DIS SUB(*) WHERE(TOPICSTR EQ 'Some/Topic/String') | runmqsc QMGRNAME
To delete a subscription:
echo DELETE SUB('SUBSCRIPTION.NAME... | |
doc_23534242 | I've built a simple Flash application via FlashDevelop (AS3) and I want it to communicate to a Server. I created then a simple Socket Java Application with the code:
Main.java:
import org.xsocket.connection.*;
public class Main
{
protected static IServer srv = null;
public static void main(String[] args)
... | |
doc_23534243 | Is isolated storage a good place to write it?
Will the service have access to the user's isolated storage?
Any other suggestions for this.
Thanks in advance.
Fike
A: A standard way is to create an event log section for your application and write to the Event log
| |
doc_23534244 | So far I don't see any device in /sys/bus/spi/devices
Please help
What I did are below
At the buildroot terminal "make raspberrypi3_defconfig" then enabled those below via "make xconfig" and "make linux-xconfig"
*
*BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV
*BR2_PACKAGE_IPROUTE2
*NET
*CAN
*CAN_DEV
*SPI
*CAN_MCP25... | |
doc_23534245 | race class:
public class RelayRace {
private List<RelayRaceTeam> teamList = new ArrayList<>(10);
public RelayRace() {
teamList.add(new RelayRaceTeam("FERRARI"));
teamList.add(new RelayRaceTeam("BMW"));
teamList.add(new RelayRaceTeam("LAMBORGHINI"));
teamList.add(new RelayRaceTea... | |
doc_23534246 |
My attempt at recreating this axes arrangement is below. Specifically, my problem is that the axes are not properly aligned. For example, the axis object for the blue histogram is taller than the axis object for the image with various shades of green; the orange histogram seems to properly align in terms of width, but... | |
doc_23534247 | if (prefs.getBoolean("backgroundupdates", true)) {
Intent setAlarm = new Intent(Splash.this,
UpdateLocation.class);
PendingIntent pendingIntent = PendingIntent.getService(
Splash.this, 0, setAlarm, 0);
AlarmManager alarmManager = (AlarmManager) getSystemServic... | |
doc_23534248 | SELECT T1.*, T2.* FROM T1 INNER JOIN T2 ... etc.
In SQL Server Management Studio, I want the results to show in the grid with the table names prepended to the column names
What I get by default is this:
ID | A1 | ... | ID | B1
But I want this:
T1.ID | T1.A1 | ... | T2.ID | T2.B1
Is there any command or setting whi... | |
doc_23534249 | In thanks to the countless suggestions from Stackoverflow and because of the complete lack of a proper solution (here and on the tinyMCE Documentation) I wanted to post the solution here. Although you can add any tags that you'd like, for the purposes of this example, I'm going to add <h1> tags:
//Add the plugin to ti... | |
doc_23534250 | any help?
Thanks..
A: Use android Locale
Hope this helps you.
| |
doc_23534251 | Are there alternatives that will allow them to use Interdev securely, or must we disable WebDav and make the sites FTP-only?
A: It has been a while but I believe that the WebDav ( or Front Page Server Extentions as I remember them) were only used for deployment. Back when we used Interdev we would usually develop loca... | |
doc_23534252 | Currently, I have this snippet:
StringTokenizer tokenizer = new StringTokenizer(request, "{}:,\"");
Map<String, String> properties = new HashMap<String, String>();
while(tokenizer.hasMoreTokens()) {
String key = tokenizer.nextToken();
String value = tokenizer.nextToken();
properties.put(key, value);
}
Th... | |
doc_23534253 | Marcus
PS. Please be clear, noobie alert! one-liners & cryptic examples hardly do it for me.
URL
http://api.usno.navy.mil/rstt/oneday?date=today&coords=9S,147E&tz=10
JSON
{
"error":false,
"apiversion":"2.0.0",
"year":2017,
"month":3,
"day":4,
"dayofweek":"Saturday",
"datechanged":false,
"lon":147.000000,
"lat":9.00000... | |
doc_23534254 | for example:
from pandas import Series, DataFrame
import pandas as pd
import numpy as np
#read data from DataFrame
data_ThisYear_Period=[[' 序 号','北 京','上 海',' 广州'],\
[' 总计','11232',' 2334','3 4'],\
[' 温度','1223','23 23','2323'],\
['人 口','1232','21 3... | |
doc_23534255 | For this i need some sort of mechanism to guard, but not block the read method, so the reading thread is blocked by a write, but not by other reads. I can't use a normal lock for this because invoking the lock method in the read method would cause other read threads to wait.
The rules should be as such:
When a thread i... | |
doc_23534256 |
<ion-item-sliding #item *ngFor="let order of orders">
<ion-item>
<div class="pending-order-list">
<div class="row custom-padding-xs custom-padding">
<div class="col-xs-3"></div>
<div class="col-xs-9">
<div class="panel-order-date">
<span class="list-label">{{ "pending... | |
doc_23534257 | #! /bin/bash
output_dir="$2" # an_level1/an_level2/an_level3
for file in ls "$1"/*.fa; do
cbf="$(readlink -e "$(file)")"
cbf_fn="$(basename "$cbf")" #*.fa
filename_WO_ext="${cbf_fn%.*}" #*
RNAfold < "$file" > "${output_dir}/${filename_WO_ext}/.txt";done
| |
doc_23534258 | function clockGen() {
var time = new Date();
var hour = time.getHours();
var min = time.getMinutes();
var sec = time.getSeconds();
document.getElementById('time').innerHTML = hour + ":" min + ":" + sec;
var refresh = setTimeout("clockGen()", 1000);
}
It keeps giving me the error shown in the title for some reason. Can... | |
doc_23534259 | I was wondering what my options are for dealing with this problem? I read that it's possible to stream large files into cloud storage but I don't know how to do this from a cloud function or while unzipping. Any help would be appreciated.
Here is the code of the cloud function so far:
storage_client = storage.Client()... | |
doc_23534260 | Thanks!
Specifics, if they help:
Amplified spontaneous emission (ASE) in an optical fibre amplifier. Rows act as storage for a discretised ASE spectrum, columns are a given position along the fibre amplifier (it is this position -- the distance along the fibre corresponding to the column -- which I want to use as the l... | |
doc_23534261 | My idea in that:
*
*I have th in each column.
*So th may be a detector of new column.
*I need to find tr td in each column.
*I need to create new table-N with th-N value in th
*I need to paste each tr td-N after th
So according to my idea, I have written following code:
jQuery(document).ready(function($) {
... | |
doc_23534262 | Grid(viewModel.cards) { card in
CardView(card: card, theme: self.viewModel.getTheme())
.onTapGesture {
withAnimation(.linear(duration: 0.8)) {
self.viewModel.choose(card: card)
}
self.viewModel.resetGame()
}
.padding(5)
}
HStack {
... | |
doc_23534263 |
Image Name
Image
drop.png
rain0.png
rain1.png
rain2.png
rain3.png
import pygame as pg
import sys, os
import random
pg.init()
clock = pg.time.Clock()
size = width, height = (800,800)
screen = pg.display.set_mode(size)
class Rain(pg.sprite.Sprite):
def __init__(self):
pg.sprite.... | |
doc_23534264 | According to documentation it is possible to add @Ignore on class level.
@Ignore
public class BasicOperationsTest extends TestBaseClass{
I did it like above but it doesn't work - all test methods are executed.
When I add ignore before @Test method in this case annotation works and test is not executed.
| |
doc_23534265 | If a client disconnects the clients messages stored in respective Actor's mailbox.But if jvm crashes all the messages in the actor mailbox will flushed.
If i use persistence actor i will store each messages of an actor in disk?? then reply to actor like mailbox on disk?
A: The broad approach would be to use Akka Persi... | |
doc_23534266 | Also, can we set height/width of all replaced elements even if they're inline?
A: The HTML5 specification now has a whole section on Button Layout
Sometimes it's treated like a replaced element, and sometimes like an inline-block element. But it's never treated as a non-replaced inline element.
In detail, it says that... | |
doc_23534267 | Here is an example of our issue and hope there is an answer for this problem.
Data Classes:
public class TestContact
{
public List<TestContactItem> Studio { get; set; }
public List<TestContactItem> StudioExecutive { get; set; }
public TestContact()
{
Studio = new List<TestContactItem>();
... | |
doc_23534268 | candidate function not viable: no known conversion from 'std::string' (aka 'basic_string<char, char_traits<char>, allocator<char> >') to 'std::string *' (aka 'basic_string<char, char_traits<char>, allocator<char> > *')
here is my code (I work with multiple files) :
main.cpp (My test file)
#include <iostream>
#include ... | |
doc_23534269 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel"stylesheet" type="text/css" href="style.min.css">
<title>Document</title>
</head>
<body>
<h1>This is... | |
doc_23534270 | ||
doc_23534271 | I've tried to change the refX so the marker would finish at the end but since the line is thick it displays the rest of the line after the marker. I can reduce change this refX in a way that I don't see the rest of the line but I want to see the whole marker within the limits of the svg.
I could also reduce the length ... | |
doc_23534272 | Officail document link
Deploy and Invoke for blockchain seems to work fine. But whenever I perform query it fails and blockchain stops displaying the below error.
Error starting Simple chaincode: Error handling message: [1e85621d-4ea5-4f7c-85bd-d532370416bb]Chaincode handler FSM cannot handle message (RANGE_QUERY_STAT... | |
doc_23534273 |
*
*Components - All uncheck except typography? what about Responsive utilities?
*Glyphicons - only Glyphicons?
3 JavaScript components - Any or None?
A: You have to disable everything except for the Components -> Glyphicons If you only need glyphicons.
| |
doc_23534274 | seriesClick: function (e) {
//console.log(e.category);
// use scope.$emit to pass it to controller
scope.$emit('feederValue', e.category);
},
In my controller I am using
$scope.$on('feederValue', function (evt, value) {
console.log(value);... | |
doc_23534275 | function createRow1(i) // start create row
{
row1 = Ti.UI.createView({
backgroundColor: 'white',
borderColor: '#bbb',
borderWidth: 1,
width:'100%', height: 70,
top: 0, left: 0 });
var tfield1 = [];
var label1 = [];
var label2 = [];
for (i=0;i<6;i++)
{
tfield1[i] =... | |
doc_23534276 | How could I partition a big table in the postgreSQL with Active Record on Rails 4
I prefer PostgreSQL or other RDBMS, because I tried it in MongoDB. It is really slow on it.
Is Rails 4 supporting good solution for a one whole big table ?
(my case: more than 50 billions of records, size is about 20TB)
Data descript... | |
doc_23534277 |
public function index(Request $request)
{
$clients = Client::orderBy('identifier', 'name')->paginate(15);
return view('admin.clients.index')->with('clients', $clients);
}
public function closed()
{
$sortBy = 'name';
$query = Client::onlyTrashed()->orderBy($sortBy, $sortBy == 'created_at' ? 'name' : '... | |
doc_23534278 | $sql1 = "SELECT * FROM videos WHERE user_id = $user_id";
$sql2 = "SELECT * FROM photos WHERE user_id = $user_id";
$sql3 = "SELECT * FROM audios WHERE user_id = $user_id";
SORT DESC BY $result['upload_date'];
A: You want to create a JOIN. If you only want rows where there are existing relationships, you can use an in... | |
doc_23534279 |
A: There are so many good modules which generate single installer *exe file. Check out any of these:
*
*electron-builder (genrates executable for Windows,Mac and Linux, have server-less app auto-update feature,code signing, publishing etc, less boilerplate)
*electron-forge (genrates executable for Windows,M... | |
doc_23534280 | Everything was working fine until a couple of days ago, when twitter started to give strange error messages I have never seen before, such as NULL or 0. When I try to connect with twitter to authorize again my own app, after an the eternity it gets to connect, all I get is "NULL Could not connect to Twitter. Refresh th... | |
doc_23534281 | View code:
<% @json = Map.find_by_id('39').to_gmaps4rails %>
<%= gmaps("markers" => {"data" => @oldjson, "options" => { "draggable" => true } } ) %>
<script>
Gmaps.map.replaceMarkers(<%= @json %>);
</script>
Thanks.
A: I guess you"re facing a js error with this current code.
The reason is the following:
*
*t... | |
doc_23534282 | originale<-read.table("file.txt", header=TRUE,sep=";")
require(ggplot2)
require(ggmap)
map <- get_map(location = c(lon=13.781693, lat=45.623124), zoom = 14, maptype = "terrain",source = "google")
p <- ggmap(map)
p_punti <- p + geom_point(data=originale, aes(x=lon, y=lat),size=5)
plot(p_punti)
Now I'd like to plot them... | |
doc_23534283 | What's wrong with my syntax ?
AddressItem_Callback_ContextType *context;
//check if icons need to be downloaded
if (pEntity->cBigIcon[0] != 0){
if (res_get(RES_BITMAP,RES_SKIN, pEntity->cBigIcon) == NULL){
context = {pEntity->iID, pEntity->cBigIcon};
//context->Icon = pEntity->cBig... | |
doc_23534284 | Any suggestions regarding this?
Thanks.
Here is the column format I am using:
colModel:[
{name:'id_no',index:'id_no', sorttype:"string"}
]
A: As you mentioned in your comments, your web service is truncating the zero's, not jqGrid.
To further isolate the problem I recommend you post some of your server-side... | |
doc_23534285 | My RecyclerView is defined as follows:
// 1. get a reference to recyclerView
mRecyclerView = (RecyclerView)findViewById(R.id.recyclerView);
// 2. set layoutManger
mRecyclerView.setLayoutManager(new LinearLayoutManager(this));
// 3. create an adapter
mAdapter = new ItemsAdapter(itemsData);
... | |
doc_23534286 | SQL_REGEX = %r((?-mix:SQL query error)|(?-mix:MySQL Query Error)|(?-mix:expects parameter)|(?-mix:You have an error in your SQL syntax))
I would like a regex that will find the error messages on a website if they have incorrectly closed SQL syntax, the one above works, but it seems to me that it's a little slower then... | |
doc_23534287 | {"profiles":[
{"ID": "39780b57-9181-4a41-a31e-5d4b3fa59a50", "Name": "Mihai - BP Dev Team","CountryCode": "ro","PictureID": "a30d750a-38e6-407f-a722-943fe3711807","IsStandard": true,"IsOnline": true,"IsPremium": true,"IsVerified": true,"Age": 27,"CityStateCode": "Bucharest"},
{"ID": "e1dd5bab-1eeb-4729-a4f6-0baeb851f75... | |
doc_23534288 | Here's the code sample from my friend's end:
DelegateExecution delEx = delegateTask.getExecution();
for(TransactionItem itemTransItem : transItem) {
List forRequest = daoManager.getLaptopsForRequest(BigInteger.valueOf(itemTransItem.getAssetType().getId()), BigInteger.valueOf(approverId));
forRequest.forEach(Sys... | |
doc_23534289 |
I want to display a set of tags side by side in an Android app.
Conditions are:
*
*Each tag appear next to the previous tag.
*If the horizontal space runs out, the next tag appears in a new line.
*If there are multiple words in a tag and there's only a space for some of the words of a tag, move the whole tag in a... | |
doc_23534290 | My next step before removing the container, see the list of existing container
sts@Yudi:~/docker$ sudo docker ps -as
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES SIZE
78479ffeba5c ubuntu "/bin/ba... | |
doc_23534291 | But i am facing an unusual issue here, if i try to change the background colour it is working but the font size change is not working.
Following is the my CSS:-
@font-face {
font-family: myFirstFont;
src: url(../fonts/JosefinSlab-regular.ttf);
}
.frontback{
font-family:myFirstFont;
font-size:30px;
margin-top:1... | |
doc_23534292 | Currently ::
Supervisor script > Runs Test Scripts > Test Scripts output status
What I am trying to do ::
Supervisor script > Runs Test Scripts > Test Scripts output status > Supervisor script writes previous step to a file
A: I would use python's logging library:
import logging
# setup log name. default location i... | |
doc_23534293 | My code:
<script>
function datepick()
{
var weekend_strtday = 1;
var dva = 2;
var tri = 3;
var cetiri = 4;
var pet = 0;
var weekend_endday = 5;
$('#datum').datepicker({
firstDay: 1,
minDate: 0,
dateFormat: 'yy-mm-dd',
beforeShowDay: function(date) {
... | |
doc_23534294 | While we archive the app developed in XCode,
it will code sign the app for once before the Organizer windows pop up and show the archive history.
For Example:
We can see that the app was signed which we can know signing identity and provisioning profile by looking into the log for archive.
But when we export the app i... | |
doc_23534295 | <object text="this is a <a>some text</a>" />
My SAXParser is unable to parse this XML as it contains <> tag in its attribute. Anyway to solves this?
I tried an online syntax checker and it failed. So does it mean that you cannot define <> tag in an XML attribute?
A: Absolutely this is not valid XML. You will need to... | |
doc_23534296 | print('a' + [10, 100])
With this I am getting below error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: can only concatenate str (not "list") to str
Could you please help hoe to do that? I could use some for loop but I believe there may be more straightforward way to achieve the ... | |
doc_23534297 | My Code
for (final day in daysRunOn) {
databaseReference
.collection('users')
.document(user.uid)
.collection(day)
.snapshots()
.documents((snapshot) {
});
}
This post suggests I should not use a stream so I removed it. I am trying to now run this but I keep getting an error on... | |
doc_23534298 |
*
*The code I came with goes into a infinit redirect loop.
*I am receiving the following php error I think related to $_SESSION:
[Mon May 25 12:45:40.651325 2015] [:error] [pid 6568] [client 127.0.0.1:48900] PHP Fatal error: Uncaught exception 'Dropbox\\WebAuthException_Csrf' with message 'Expected '0_2rtH-FFcAqzX... | |
doc_23534299 | What is supposed to happen is the page loads, and three videos from the database are loaded, followed by a span. The span has a button to activate a script, a script to send a request to retrieve 3 new items and a button, and a value of 0. You press the button, and 3 new items and a new span, with a new button and scri... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.