id stringlengths 5 11 | text stringlengths 0 146k | title stringclasses 1
value |
|---|---|---|
doc_14300 | But it gave some error MmsConfig.loadMmsSettings mms_config.xml missing uaProfUrl setting. So I looked in res/xml there was no mms_config.xml. So I downloaded it from git repo here, and put it in res/xml folder. But still the same error.
Here is My Code, this code contains only javascript I used to call send() for send... | |
doc_14301 |
A: The link provided below will be helpful eloquent-sluggable
| |
doc_14302 | Basically, I have a div container, with id #responseLog, inside this container are multiple divs with classes .response. So, like this
<div id="responseLog">
<div class="response"></div>
<div class="response"></div>
</div>
The responses contain various spans etc. The jScrollPane is being called on the respons... | |
doc_14303 | This cluster would be used by keycloak as a cache server
Any luck one of you already work on this ?
A: You need to download infinispan 9.4.14 (or any 9.4) and start the bin/domain.sh [bat] script.
That's it you have a running domain with two servers.
If you want to add a second machine you need to copy the server an... | |
doc_14304 | I tried overriding the fancybox js and css (judging from what i can understand, not really a developer) but to no avail I failed.
Currently, I have this in my CSS:
.fancybox-inner .event-area .event .col-md-12 {
height:400px;
overflow-y: scroll;
}
I'm pretty sure that's the correct selector, or I might be wrong.... | |
doc_14305 | class Account ( models.Model ):
name = models.CharField( max_length = 30 )
user = models.ForeignKey( User, null = True, blank = True )
class Publisher ( models.Model ):
publisherID = models.BigIntegerField( )
name = models.CharField( max_length = 30 )
lastRequestedId = models.BigIntegerField( )
class Subscr... | |
doc_14306 | We are using Magento Commerce Enterprise edition and would love to be able to see errors from the user interface. Any help would be greatly appreciated.
We are developing using the PayPal sandbox.
A: On the Developer Central site (https://developer.paypal.com), log in and go to Dashboard >> Sandbox >> Accounts. Find ... | |
doc_14307 | How do I update my mappings and query to prevent documents with IsActive=false from being suggested?
This is my backing class:
[ElasticsearchType(
IdProperty = "search"
)]
public class SearchCompletion
{
public string search { get; set; }
/// <summary>
/// Use this field for aggregations and sor... | |
doc_14308 | Here's my code:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"</script>
</head>
<body>
<script>
$.ajax({
type: "post",
dataType: "json",
url: "./post,json",
success: fun... | |
doc_14309 | they are months -> below that respective quarter -> below that respective year
Please help me how to create this.
A: Here's one way to achieve this.
<html>
<head>
<script src="https://d3js.org/d3.v7.min.js"></script>
</head>
<body>
<div id="chart"></div>
<script>
//... | |
doc_14310 |
A: You can iterate through the list and call os.path.exists() (for files and directories), os.path.isfile() (for files) or os.path.isdir() for directories in order to know whether or not these directories exist:
dir_list = [...]
for dir_entry in dir_list:
if not os.path.isdir(dir_entry):
# do something if ... | |
doc_14311 | a <- rnorm(10,5,1)
b <- rnorm(10,5,1)
c <- rnorm(10,5,1)
d <- rnorm(10,5,1)
e <- rnorm(10,5,1)
f <- rnorm(10,5,1)
g <- rnorm(10,5,1)
h <- rnorm(10,5,1)
df = data.frame(a,b,c,d,e,f,g,h)
I want to run the AIC to determine the best possible model for predicting h. To do that, I need to run every single combination of d... | |
doc_14312 | The cat replication and lion popup both work properly (as you can see by clicking the smaller cat in the upper left corner), but I don't know how to make it so a .click() event on img#first will call the function to replicate smaller cats. To reiterate, I want the img#first to spawn 3 smaller img.cat, then disappear, t... | |
doc_14313 | Desired Outcome: When the user clicks submit, all values within each row should be grabbed, and then appended to the 'Meal Log' card below the form, all within one 'Meal'. The form then automatically clears and deletes the extra dynamic rows, allowing the user to start adding more food items for Meal 2.
The problem: I ... | |
doc_14314 | <%= current_user.username %>
In my tests I stub it this way:
view.stub(:current_user) { FactoryGirl.build(:user, username: "Joe") }
But in fact I don't need to return whole User object, I just need username. How can I do this?
Something like (I know it's wrong and not working) view.stub(:current_user.username) { "... | |
doc_14315 | in passport.js
module.exports = function() {
// Serialize sessions
passport.serializeUser(function(user, done) {
console.log('userid' + user.id)
done(null, user.id);
});
// Deserialize sessions
passport.deserializeUser(function(id, done) {
User.findOne({
_id: id
}, '-password', function(err, user) ... | |
doc_14316 | Just wondering what people thought as to best practices?
A: Use rake task for automation control via rake, for exampe: https://gist.github.com/muxcmux/1805946
And then in config/initializers/version.rb:
module SiteInfo
class Application
def self.version
"v#{self.read_version}"
end
def self.read_version
begin
... | |
doc_14317 | SELECT vend_id, prod_id, prod_price
FROM products
WHERE prod_price <= 5
UNION
SELECT vend_id, prod_id, prod_price
FROM products
WHERE vend_id IN (1001,1002);
Or is it the same if you do it this way?
SELECT vend_id, prod_id, prod_price
FROM products
WHERE prod_price <= 5
OR vend_id IN (1001,1002);
A: The database wou... | |
doc_14318 | for example: Specified dates = 15/01/2016, Today = 03/01/2016
Expected results: should display After 12 days
A: try this extension:
extension NSDate{
func relativeDaysFromToday()->String
{
let now = NSDate()
let calendar = NSCalendar.currentCalendar()
let unitFlags:NSCalendarU... | |
doc_14319 | word='hello.world'
//matchedWord to contain everything right of "hello"
matchedWord=word.lstrip('hello') //now matchedWord='.world'
How to achieve the same in jython 2.1 where str.lstrip(char) is not available. Any other work arounds to strip all the characters left of a word?
A: If you really need to use .lstrip() y... | |
doc_14320 | A VideoPlayerController was used after being disposed.
I/flutter : Once you have called dispose() on a VideoPlayerController, it can no longer be used.
Widget _modeApp(){
return new ListView.builder(
itemCount: dataApp.length,
itemBuilder: (context,i){
String _path = dataApp[i].url;
_contr... | |
doc_14321 | I have an empty JSF dataTable.
Now, when I click on a button, it should fill the empty datatable with data.
<h:commandButton value="Search" action="#{myBean.searchresults}" />
Problem:
When I click on the button, it populates the data to the dataTable but instantly shows me the same page when I load my application fir... | |
doc_14322 | I've been trying to read a lot about it online, but documentation is limited, especially in terms of Django being combined with Angular (little snippets here or there). I understand that I need to add a REST framework like TastyPie to make a robust REST interface in my app in order for Angular to plug in and grab resou... | |
doc_14323 | public class RootObject
{
public string ticker {get;set;}
public List<Result> results {get;set;}
}
and Result Object is like :
{
public double open {get;set;}
public double close {get;set;}
}
Now every time I will be multiple result for same ticker. So I want to add all result elements into same ticker. Ins... | |
doc_14324 | I have tried the code below, but it's not working:
AudioManager myAudioManager;
myAudioManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
Toast.makeText(this, "in setting "+(myAudioManager.getMode()==AudioManager.RINGER_MODE_VIBRATE),1).show();
if(myAudioManager.getMode()==AudioManager.RINGER_MODE_VIB... | |
doc_14325 | For ex.
*
*k = 3 and n = 2; then "True" since 1st and 2nd bit are set in k
*k = 3 and n = 3; then "False" since 3rd bit in k is not set
The solution as provided by the author is:
if (((1 << (n-1)) ^ (k & ((1 << n)-1))) == ((1 << (n-1))-1))
std::cout<<"true"<<std::endl;
else
std::cout<<... | |
doc_14326 | Able to route in two different navbars
route components here
when you login
route dashboard components here
More explanation
I have a landing page component
<navbar/>
about page, contact, features and pricing are been routed here
<Router>
<Switch>
<Route exact path="/pricing" component={Pricing}/>
<Route ... | |
doc_14327 | I'm building a regex engine and am using a switch statement to handle each individual character of input. Anything that is not a meta-character goes to the switch's default.
When I read a backslash (\), I want the next character to be escaped and treated literal, i.e. jump directly to the switch's default case. So I th... | |
doc_14328 | I however read that NodeJS Tools supports running within the VS Test Runner, and even Typescript unit tests. You have to set the TestFramework property of the file to 'Mocha'. The project I'm working on even already has existing tests which this is set for. However I don't get a dropdown option in the GUI to set it, it... | |
doc_14329 |
Alarm(id=1, min=12, hour=12, enabled=true, isRepeating=true)
Alarm(id=2, min=13, hour=13, enabled=true, isRepeating=true)
Here is AlarmDao
@Dao
interface AlarmDao {
@Query("SELECT * FROM alarm_table")
fun getAll(): LiveData<List<Alarm>>
@Query("SELECT * FROM alarm_table WHERE id = :id")
fun getById(... | |
doc_14330 | [
{"PARTNERNAME":"Partner 1","DISTANCE":20,"TYPE":"1"},
{"PARTNERNAME":"Partner 2","DISTANCE":14,"TYPE":"2"},
{"PARTNERNAME":"Partner 3","DISTANCE":60,"TYPE":"2"},
{"PARTNERNAME":"Partner 4","DISTANCE":37,"TYPE":"1"},
{"PARTNERNAME":"Partner 5","DISTANCE":25,"TYPE":"2"},
{"PARTNERNAME":"Partner 6","DISTANCE":90,"TYPE":... | |
doc_14331 |
*
*I understand Arrays and ArrayList are part of java.util. So when I create and Array or ArrayList am I creating objects and instances?
*Why must the java.util.ArraList be imported to create an ArrayList object but there is no need to import java.util.Arrays to create and Array object?
*Why are the methods of Arr... | |
doc_14332 | These two implementations do the same thing. Task is to report duplicate entry for a given set of data.
Implementation #1 : Converts input data to a String and adds to a HashSet. After all the input is read, appropriate message is displayed.
class Databse2 {
public static void main(String[] args) throws Exception{
... | |
doc_14333 |
function tableGenerator(selector, jsonData, tab) {
debugger;
// jsonData is an array
var keys = Object.keys(Object.assign({}, ...jsonData)); // Get the keys to make the header
// Add header
var head = '<thead><tr>';
keys.forEach(function(key) {
head += '<th>' + key + '</th>';
});
head +... | |
doc_14334 | I would like to be able to share connection between different classes in order to manage transaction, but I don't know how to do that.
Example:
I have 2 classes, Order and OrderDetail.
I will call my DAL Order class for a SQL insert of a new order.
Inside the Insert method, I want to call my OrderDetail class to insert... | |
doc_14335 | CREATE OR REPLACE FUNCTION stage.triggerlogfunction()
RETURNS trigger
LANGUAGE plpgsql
AS $function$
begin
insert into stage.temptriggerlog_complete
values
(current_timestamp, 'Hello');
perform pg_sleep(5);
insert into stage.temptriggerlog_complete
values
(current_timestamp, 'Did');
pe... | |
doc_14336 | Possible Duplicate:
What is external linkage and internal linkage in C++
Actually I want to know the importance of extern.
First I wrote some code :
file1.h
extern int i;
file2.c
#include<stdio.h>
#include "file1.h"
int i=20;
int main()
{
printf("%d",i);
return 0;
}
Now my question is that: what is the use o... | |
doc_14337 | IPython.OutputArea.prototype._should_scroll = function(lines) {
return false;
}
%run rl_base.py
I run this giving error saying rl_base.py file not found. I have uploaded the same to gdrive in colab and from the same folder I am running my .ipynb file, containing the above code
A: You should not upload to gdrive.... | |
doc_14338 | import pandas as pd
from windrose import WindroseAxes
import matplotlib.pyplot as plt
import matplotlib.cm as cm
import numpy as np
wr = pd.read_csv('')
wr["date"] = wr["date"].astype("M8")
wr["Month"] = wr.date.dt.month
month_dict = {1: "January", 2: "February", 3: "March", 4: "April",
5: "May", 6: "J... | |
doc_14339 | I need this for 1000 rows, is there a way to create 1000 macros that are only formatted for the row they are attached to?
I created the code below using the record button in Excel, I'm very new to VBA so any advice would be gladly appreciated it!
UPDATED VBA!
Dim Cell As Range
With Sheets(1)
For Each Cell In .Ran... | |
doc_14340 | int a = 9;
int b = 3;
int c = 4;
System.out.println((a+b) + c + " = " + a + b + c);
System.out.println(a + b + c + " = " + a + (b + c));
I thought the outputs would be 124 = 934 and 934 = 97.
Jcreator says that it is 16 = 934 and 16 = 97. Can someone explain, please?
A: Let's see:
System.out.println((a+b) + ... | |
doc_14341 | The structure of my folders is as follows
/home
-phpunit.xml
/folder1
/folder2
/folder3
/vendor
/tests
-Test1.php
/includes
-functions.php
/libs
-User.php
-TableClass.php
....
functions.php
<?php
//require_once $_SERVER['DOCUMENT_ROOT'] . "/home/vendor/autoload.php" ;
require_once $... | |
doc_14342 | public class Person
{
public virtual int Id { get; set; }
[NotNull]
public virtual string name { get; set; }
}
public class PersonMap : ClassMapping<Person>
{
public PersonMap()
{
Id(x => x.Id);
Property(x => x.name);
}
}
public... | |
doc_14343 | Given the following string, I want to 'cut' it to the left of every "D" such that:
*
*I get a List of fragments (with sequence unchanged)
*StringJoin@fragments gives back the original string (but is does not matter if I have to reorder the fragments to obtain this). That is, sequence within each fragment is importa... | |
doc_14344 | I didn't know how much of it to post, but I'm putting it all out here just in case.
import math
print "Hey. Do you want to activate the hypothenuse program, or the diagonals one?"
print "[1] Hypothenuse"
print "[2] Diagonals"
program_chosen = raw_input()
if program_chosen == "1":
print """
Hello. This is ... | |
doc_14345 | Table----ContactInfo:
-----------------------------------------------------------
name fullname phone
-----------------------------------------------------------
NASA National Aeronautics and Space Administration 00000
----------------------------------------------------------... | |
doc_14346 | <foo></foo>
If the tags have the word "bar" inside I do nothing
<foo>dog bar cat</foo> -> <foo>dog bar cat</foo>
If the tags don't have the word "bar" inside I add it to the end of the text
<foo>dog cat</foo> -> <foo>dog cat bar</foo>\
"bar" can potentially be anywhere in between the tags. How can I do this kind of ... | |
doc_14347 | public interface DeviceStatusRepository extends JpaRepository<DeviceStatus, Long>, JpaSpecificationExecutor<DeviceStatus> {
@Query(value = "SELECT ds from DeviceStatus ds where ds.deviceId like :deviceId and ds.chargingStatus like :chargingStatus")
Page<DeviceStatus> searchByMultipleFields(@Param("deviceId")... | |
doc_14348 | An example I found is shown below
address = re.compile(
''' #THIS
[\w\d.+-]+ # username
@
([\w\d.]+\.)+ # domain name prefix
(com|org|edu) # we should support more top-level domains
''', #AND THIS
re.UNICODE | re.VERBOSE)
A: Using ''' allows the stri... | |
doc_14349 | input.addEventListener("keydown", () => {
if (event.keyCode === 13) {
event.preventDefault();
button.click();
}
})
A: You missed an event in the callback
input.addEventListener("keydown", (event) => {
if (event.keyCode === 13) {
event.preventDefault();
button.click();
}
})
| |
doc_14350 |
Another area for which Win32 provides calls is security. Every thread is associated with a kernel-mode object, called a token, which provides information about the identity and privileges associated with the thread. Every object can have an ACL (Access Control List) telling in great detail precisely which users may ac... | |
doc_14351 | private void comboBox1_SelectedIndexChanged_1(object sender, EventArgs e)
{
Thread thread = new Thread(new ThreadStart(threadUI));
thread.Start();
// This class is loading something from the server on the main thread
excel.get_data_from_excel(comboBox1.SelectedItem.ToString(), t... | |
doc_14352 | -[__NSDictionaryI cdvjk_JSONString]: unrecognized selector sent to instance
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '- [__NSDictionaryI cdvjk_JSONString]: unrecognized selector sent to instance
*** First throw call stack:
libc++abi.dylib: terminate called throwing an excep... | |
doc_14353 | Wondering around a little bit, I performed a dummy request to the server
just for fetching the server date, by using the same date from the server as the token expiration time I was able to list videos belonging to a session.
This is clearly wrong, the iat time and the exp time should not match the server date.
Possibl... | |
doc_14354 | Now, I'm on the bundling stage. When I run my bundler as a quick sanity check:
$ node_modules/.bin/webpack --config webpack.dev.config.js
I get node_modules is not recognized as a windows command. After trying different solutions, I found that using the node command in front of the webpack command was executing webpac... | |
doc_14355 | select Id from t2 where usrId in
(select usrId from t3 where sId=value));
I the result i need is like if there are matching id's in t1 and t2 then those id's should be omitted and only the remaining rows should be given to me. I tried converting into join but it is giving me the result i wanted. Below is my join query... | |
doc_14356 | This is my viewpager activity
SlidingTabLayout slidingTabLayout;
ViewPager viewPager;
Fragment[] fragments = {SmileysFragment.newInstance(0)};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.emoji_layout);
slidingTabLayout = (Slidin... | |
doc_14357 | When i try to run a test with Mocha i either get a succes or assertion error.
Is is normally to get an AssertionError for failure tests? (shouldn't it just be called an failure and not an error?)
AssertionError: -1 == 2
+ expected - actual
What about testing asynchronous code? When my tests fail i get an Uncaught ... | |
doc_14358 | Courses (Table 1), Students (Table 2)
The joined table is called StudentCourses looks like:
Composite Primary Key made up of 2 columns: StudentID, CourseID
When I add my database to my C# project through EDMX, this joined table does not get added. This is OK until the end of my program, where I need to export all the d... | |
doc_14359 | To be more specific: Let's say that I have already started some emulator and when I execute some program, it checks if there is some emulator on some port (e.g. 5554). If it is, the output is true, otherwise false.
I can access all devices (IDevice) from android debug bridge, but I am not able to realize, if that parti... | |
doc_14360 | Now I wonder when and how one should use codePointAt and similar methods.
A: Code points support characters above 65535 which is Character.MAX_VALUE.
If you have text with such high characters you have to work with code points or int instead of chars.
It doesn't this by support UTF-16 which can use one or two 16-bit c... | |
doc_14361 | from flask_login import current_user
And then I use some attributes, for example current_user.role to determine the type of user, or current_user.username, and based e.g. on the username I can also access the DB data and user settings associated with that particular user.
In order to provide a better support to specif... | |
doc_14362 | so i thought ok, now that this is done I can simply Publish it to my SharePoint Power View Gallery, must be pretty simple right, after all It could only be intuitively assumed that this Option is available.
But guess what i found THERE is no way of exporting it to SharePoint on Premise (not talking about Office 365)
A... | |
doc_14363 | In my application user can configure the Number of tabs(left menu) that he want to see.
User can created fields & he can associate each filed to a tab & the index(position which states is it a first field in the tab or second etc) of the field in that tab.
I am saving tab details in one table & field details in another... | |
doc_14364 | The library rcom allows calls to COM objects, so this should be possible, in theory, for any .NET assembly that is exposed as a COM object.
To keep it simple, I'll see if I can call the .Reverse() function in System.Text, which is exposed by default as a COM object from the .NET framework.
This is what I have tried so... | |
doc_14365 | I want to add carrier name on pdf of shipment, I got it in my code but I have not possible to show it on pdf which is downloaded. Some of my code is as follows:
$shipments = $order->getShipmentsCollection();
$trackingNumbers = $getCarrier = '';
foreach ($shipments as $shipment) {
foreach ($shipment->getAllTracks() ... | |
doc_14366 | Soda date time
is imported (without any error) on the client side with
"org.mdedetrich" %%% "soda-time" % "0.0.1-SNAPSHOT"
But when I try to use it, simply like this:
val dateTime = new org.joda.DateTime(new js.Date())
I get the following error:
type DateTime is not a member of package org.joda
I don't see what I... | |
doc_14367 | It never did it before. I've searched here and i've found this link so i've checked my .gitignore (I can't find a .svnignore), here it is.
How can i solve?
/app/config/parameters.yml
/build/
/phpunit.xml
/var/*
!/var/cache
/var/cache/*
!var/cache/.gitkeep
!/var/logs
/var/logs/*
!var/logs/.gitkeep
!/var/sessions
/var/s... | |
doc_14368 | I have a simple model like below
class Parishioner(models.Model):
def _age(self):
return date.today().year - self.dob.year
"""Parishioner model"""
first_name = models.CharField(max_length=255)
last_name = models.CharField(max_length=255)
dob = models.DateField()
age = property(_age)
... | |
doc_14369 | I've tried two approaches both without any lucky, and I've been reading all about the errors looking for similar problems and I still don't understand what's wrong.
First Approach (everything inside the class)
#include <valarray>
#include <complex>
#include <sstream>
#include <iterator>
#include <vector>
class do_fft
... | |
doc_14370 | On ./configure there are no Errors and I get the Message "Run make && make install ".
It doens´t matter what I run, always get an error.
This is the error by make.
Does anyone knows what to do?
`[Tatjana@localhost apache-couchdb-1.6.1]$ make
make all-recursive
make[1]: Entering directory '/home/Tatjana/apache... | |
doc_14371 | This code(down below) works and scrollview moves up when keyboard appears for the first time, but the problem is, when keyboard is opened for the second time or more, scrollview doesn't move up.I`ve been unable to solve this problem for several hours. Could anyone detect some faults in my code and give me correct answe... | |
doc_14372 | To make it easier to read I have boiled the program down to a minimum. The req.pipe chain is way longer in the real program. (with many more possibilities for errors)
const fs = require('fs');
const express = require('express');
const app = express();
app.put('/write/:id', (req, res, next) => {
const filename = 'd... | |
doc_14373 | http://jsfiddle.net/AnilAwadh/qt32a/
$("[id$=myButtonControlID]").click(function(e) {
window.open('data:application/vnd.ms-excel,' + encodeURIComponent( $('div[id$=divTableDataHolder]').html()));
e.preventDefault();
});
https://jsfiddle.net/r8bx18kx/
The problem is that I have no idea how to implement that in my case.... | |
doc_14374 | I've made a menu using fragments, so my activity_home is a fragmented activity. Inside the fragmented activity I've created a button that, upon clicking, should open a new activity.
The problem is that I don't know how to implement the onClickListener inside the fragmented activity.
Every tutorial I went trough does it... | |
doc_14375 | How do I send a call with AngularJs $resource delete method to Web that have a body? I was not able to do it. I've struggle a lot, I've found some resource that are saying that you can do it. Bellow are the links I've found
delete to be method with body
$resource obj.$delete sends the resource as the request body
$r... | |
doc_14376 | However, when I deploy them to the production servers, trying to install one creates an alert saying "Invalid Signature", while the other produces an "Invalid Public Key" alert.
{
"name": "Ext name",
"description": "Some desc",
"version": "1.1",
"update_url": "http://[url]/extensions/updates.xml",
"... | |
doc_14377 | $word= 'josephine';
I want to delete all the instances where the words 'jo' or 'se' can be found in the $word. So it would print the new word 'phine'.
A: str_replace can do this natively:
<?php
$a = array('jo', 'se');
$word = 'josephine';
$word = str_replace($a, '', $word);
var_dump($word); //string(... | |
doc_14378 |
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
public class S implements Serializable {
private static final long serialVersionUID = 1L;
transient int i;
publi... | |
doc_14379 | I have an action java file that sets a variable id (coming from http request) using setAttribute.
request.setAttribute('id', id);
In the JSP file I am setting retrieving values from a resource file (application.properties) using <bean:message bundle="application.properties" key="property.1"> syntax.
I wanted to make t... | |
doc_14380 |
*
*Hibernate not creating Table automatically in spring boot using postgresql
*Unable to get Spring boot to automatically create database schema
*Spring Boot + Hibernate + Postgres - not creating tables
Still, auto-creating a table doesn't work!
I've used different versions of Hibernate, Spring, even implemented ... | |
doc_14381 | I want to require that all routes for /secure/* use https. This is done:
app.all("/secure/*", function(req, res, next) {
if (!req.connection.encrypted) {
res.redirect("https://" + req.headers["host"].replace(new RegExp(config.http_port, "g"), config.https_port) + req.url);
} else {
return next... | |
doc_14382 | We understand that Sitecore provides the Workbox where users can view a snapshot of the items and their workflow states. But since these can only be filtered by the workflow and not by the user in question, it can get a little overwhelming for the content authors. Please let us know if Sitecore provides any such mechan... | |
doc_14383 | '/api/browse=ia?filter=General'
These are my urls:
(r'^api/browse=([\w\s]+)$', 'webservice_browse_nofilter')
(r'^api/browse=([\w\s]+)\?filter=(\w+)$', 'webservice_browse')
The problem is that the wrong function is called. In this case I want to call the second function but instead the first is called. The problem is... | |
doc_14384 | It starts in the head tag:
<html wtx-context="8F1EE800-7352-408E-AC70-5297G5FD3F25">
It also appears in form elements and inputs.
Any information would be useful, such it's purpose and what it is thats inserting it and why?
A: Sorry, late answer. I browsed the web for this question too but didn't find anything useful... | |
doc_14385 | To be clear, the data set contains has two columns and about 100 rows of data. I want to create an array that consists of the first column of data being the x co-ordinates and the second column of data being the y co-ordinates.
import numpy as np
data = open("mydata.csv")
read = data.read()
def generatingArray(read... | |
doc_14386 | The following shown in the manual does not describe how to load a custom model:
# Load your usual SpaCy model (one of SpaCy English models)
import spacy
nlp = spacy.load('custom-danish-spacy-model')
# Add neural coref to SpaCy's pipe
import neuralcoref
neuralcoref.add_to_pipe(nlp)
# You're done. You can now use Neura... | |
doc_14387 | -bin/com/abc/A.class
-src/com/abc/A.java
-config/info.txt
How to address the file info.txt from A class?
Should we use "user.dir" property or "config/info.txt" so that it would work ?
I'll compile this into the jar and after that
the jar will be used from the servlet,
but I don't think that's important
cause this file... | |
doc_14388 | fmat A;
for(int i=0; i<elements+1; ++i)
{
for(int j=0; j<elements+1; ++j)
A << globalMatrix[i][j];
A << endr;
}
cout<<"MATRIX\n\n";
A.print();
fvec B(elements+1);
for(int i=0;i<elements+1;++i)
B=loadVec[i];
cout<<B;
A: The fmat class is not a stream, so you can't use the << operation in a loop... | |
doc_14389 | It is not so easy for me to clearly understand how CMS works but here is how I saw it:
1) Initial Mark.
Looking for root references. Since the collector is an oldgen collector it should only scan old generation.
2) Concurrent-Mark
When all the root references has been found it's time to start concurrent marking. All th... | |
doc_14390 | If I do not specify the end time, it deletes all instances as soon as I add it.
A: The following config works!
Instead of setting 'Scale to a specific instance count', use 'scale based on a metric', and set threshold which will never be reached wth min 0, max/default to desirable numbers.
| |
doc_14391 | I clicked on Update button to save the record after editing the row.Now if i refresh the page or press F5 GridView_RowCommand fired again.
How can we avoid this.Is there any mechanism to identify when user press F5 OR refresh the page.Is there any method in client side or in server side.
A: Not exactly the best "techn... | |
doc_14392 | Take this code:
from pyspark import SparkContext
from pyspark.sql import HiveContext
from pyspark.sql.dataframe import Dataframe
sc = SparkContext(sc)
hc = HiveContext(sc)
hc.sql("use test_schema")
hc.table("diamonds").count()
the last count() operation returns 53941 records. If I run instead a select count(*) from ... | |
doc_14393 | *
*I have a Python script that creates some GUI widgets and this explicitly was created in Linux and runs fine.
*But I wanted to run the same script in Windows as well without much change. But the script has the following command call to another script to run from a particular directory.
os.system('$PROOT/.loc_bin/r... | |
doc_14394 | here is the code-snip i use (the css class is a flex-construct only):
<div class="aufinfo_item_pdf" data-id="<%$image->get_id()%>">
<object class="aufinfo_item_pdf_obj" data="/company_images/article/<%$image->get_id()%>" type="application/pdf">
<p>not possible to show - download at: ... link</p>
... | |
doc_14395 |
*
*Yes, it has to do this as part of the expression. I do not have access to the code that will be processing this.
*Yes, it needs to be one expression.
*It needs to work with PHP's regex flavor. I'm pretty sure it's being evaluated using preg
To give an idea of what I'm trying to do, I have a set of URLs I'm tr... | |
doc_14396 | We would like to make a specific cell to take the whole row place, so that this row will have one cell in it ,in the width of the screen .
problem is, when you do that, it works, but than you have to push all the other cells to the next position, so for cell 4 to take a full width:
0 1
2 3
4--
5 6
How can you push all... | |
doc_14397 | Here are couple of examples of the redirects.
redirect_to(user_account_path(user, anchor: params[:tab]), notice: "Your account has been updated" })
redirect_to(root_path, notice: "Your account has been deactivated.")
redirect_to user_account_path(anchor: "networks"), notice: "Your primary network has been changed."
... | |
doc_14398 | views.py
class GetDataGroups(generics.ListAPIView):
serializer_class = DataSerializer
def get_queryset(self):
queryset = (
Data.objects.values("item1")
.annotate(count=Count("item1"))
.order_by()
)
return queryset
serializers.py
class DataSerialize... | |
doc_14399 | $stmt->prepare("INSERT INTO TABLE (one, two) VALUES (:one, :two)");
$stmt->execute([1,2]);
surprisingly, it works, as well as more familiar
$stmt->execute(["one" => 1, "two" => 2]);
I would have expected this code to throw an error, which it does, but only when PDO emulation mode is turned off - i.e. when native prep... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.