id stringlengths 5 11 | text stringlengths 0 146k | title stringclasses 1
value |
|---|---|---|
doc_27900 | CREATE OR REPLACE PROCEDURE ESBEVENT.esb_dml_handler(in_any IN ANYDATA) IS
l_enqueue_options dbms_aq.enqueue_options_t;
l_message_properties dbms_aq.message_properties_t;
l_message sys.aq$_jms_text_message;
l_msgid raw(16);
l_xmlmsg SYS.XMLTYPE;
err_num NUMBER;
err_msg VARCHAR2(100);
BEGIN
BEGIN
l_message := ... | |
doc_27901 | which is here:
<pre>$active_group = 'default';
$query_builder = TRUE;
$db['default'] = array(
'dsn' => '',
'hostname' => 'http://mywebsite.space',
'username' => 'myuser',
'password' => 'mypassword',
'database' => 'theNameOfMyDatabase',
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconn... | |
doc_27902 | After that I want the page to smoothly scroll down to the next section.
I cant seem to find a good working snippet though.
I have tried to do it with Jquery .animate, but it won't work cause the page refreshes. I have tried to put the section to scroll to in the form action too, but that is instant, not smooth.
Some so... | |
doc_27903 | RentryDf=pd.DataFrame(index=tportDf.index.values,columns=tradesDf.columns)
RentryDf.loc[:,'TRADER']=tportDf.loc[:,'TRADER']
RentryDf.loc[:,'CONTRACT_VOL']=tportDf.loc[:,'DELIVERY VOLUME']
the second line has no problem setting to the string names of trader but the third line stays NaN. I have tried the two lin... | |
doc_27904 | mysite.com/story/34jkh4432jkdasddasdsadasdas3
For what reasons would it be beneficial if any to instead do something like:
mysite.com/story/34jkh4432jkdasddasdsadasdas3/the-story-title
Is it strongly recommended? (e.g. for helping SEO) (An obvious advantage i see is if the URL is shared, easier for people to know ro... | |
doc_27905 | here is my code
$file = fopen($target_file, 'r');
$counter=0;
while (($line = fgetcsv($file)) !== FALSE) {
if($counter!=0){
foreach($line as $key=>$value){
if($key == 4){
# Issue the call to the client.
$result = $mgClient->get("address/validate", array('address' => $value,'mailbox_v... | |
doc_27906 | name a b c d e f g
a 10 5 4 8 5 6 4
b 5 10 6 5 4 3 3
c - 4 9 3 6 5 7
d 6 9 8 6 6 8 2
e 8 5 4 4 14 9 6
f 3 3 - 4 5 14 7
g 4 5 8 9 6 7 10
I can get the 5 number of largest values by passing df['column_name'].nlargest(n=5) but if I have to return 50 % of t... | |
doc_27907 | #ifndef __visibilty_test__test__
#define __visibilty_test__test__
#include <iostream>
using namespace std;
class test{
public:
void print(string s);
};
#endif
and test.mm
#include "test.h"
using namespace std;
void test:: print(string s){
cout << s << endl;
}
now I want to call print functio... | |
doc_27908 | How can I achieve this?
Can I use ASP.NET core on top of WCF service or what is the best way to achieve it?
| |
doc_27909 | (shots <- structure(list(Team = c("One", "Two", "One", "One", "Two", "One", "Two"),
Goal = c("N", "N", "N", "Y", "Y", "N", "Y")), class = "data.frame",
.Names = c("Team", "Goal"), row.names = c(NA, -7L)))
Team Goal
One N
Two N
One N
One Y
Two Y
One N
Two Y
So I... | |
doc_27910 | For the development, I've used XCode 5.1 and trying my test over IOS 7 device.
I tried the same app to scan my android mobile as well as a device/hardware where bluetooth is enable.
Hardware/Device bluetooth working perfectly as my Android mobile able to scan as well as able to connect that device.
I'm waiting for sugg... | |
doc_27911 | child1 = pexpect.popen_spawn.PopenSpawn('python')
child2 = pexpect.Spawn('python')
child = child2
child.expect('>>>')
child.sendline('import numpy as np')
child.expect('>>>')
child.sendline('np.save("test", np.array([1,2,3]))')
child.expect('>>>')
child.terminate()
More specifically, on Windows the line child.expect... | |
doc_27912 | In my listener when this jms message is converted to Message
@JmsListener(id = "cis-listener", destination = "${amiga.service.jms.cis-listener.destination-fqdn}",
containerFactory = "containerFactoryListener")
public void receiveMessage(Message<Object> event) throws UnknownMessageException {
...
this attribute... | |
doc_27913 | What I'm trying to do is to add a padding-top to all the pages so that way my fixed header will not overlap the page container ( main content )
The media queries is not working and even the percentage and vh vw don't resolve this issue
Here's some screenshots :
View 2
View 3
header.site-header {
position: fixed;
... | |
doc_27914 |
*
*CCNode - Custom class (PanoController)
*-DrawerLayer - its only holder, of type CCLayer
*--rawImage - it is set as Doc root var with name : rawImage
I want to make rawImage to be instance of mySprite , not CCSprite as it is default.
So , The loader is like this for mySprite,
#include "mySprite.h"
class mySpr... | |
doc_27915 |
*
*I want to get my fortunes to show on the poping window.
*When I try this code first, It seems successful, But once. I had never change the code, but it does not work.
*I am trying to restart my computer, and I had twice but failed too.
*My computer is a system of Windows 10 X64
package systemTray;
import java... | |
doc_27916 | When simply building a .exe using Mono (Ubuntu Xenial), and running it with mono example.exe, calling it returns true, as it should. However, when using mkbundle to make a native Linux executable, and calling it with ./example, calling it returns false. Below is an example of the code I'm using:
if (RuntimeInformation.... | |
doc_27917 | Like so:
<endpoints>
<add messages="Domain.Messages.SubNamespaceA, Domain.Messages" endpoint="SubsystemA.input" />
<add messages="Domain.Messages.SubNamespaceB, Domain.Messages" endpoint="SubsystemB.input" />
</endpoints>
That doesn't work but is it possible somehow or will I have to use an implementation of IDete... | |
doc_27918 | @interface ViewController () <JWPlayerDelegate>
@property JWPlayerController *player;
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
[self createPlayer];
}
- (void)createPlayer
{
JWConfig *config = [JWConfig configWithContentURL:@"http://content.bitsontherun.com/videos/3XnJSI... | |
doc_27919 | This problematic line needs to be like this for scaffolding to work:
var entitySetVar = EntitySetVariable ?? (String.IsNullOrEmpty(entitySetName) ? entitySetName : (entitySetName.Substring(0, length:1).ToLowerInvariant() + entitySetName.Substring(1)));
And it has to be like this for the project to build:
var entitySet... | |
doc_27920 | this.setState({ compiling: true }, () => {
compileProject(this.state.project)
this.setState({ compiling: false })
})
A: Since JS is single-threaded a longer running computation will always block the UI thread. You can try to split the work into smaller chunks and schedule chunk computation with requestAnima... | |
doc_27921 | awk 'NR==FNR{a[$2]=$1;next}($1 in a){print a[$2] " " $2}' file1 file2
content of files are :
file1:
vidhu 1
gangwar 2
file2:
1 1
2 4980022
Expected Output:
vidhu 1
gangwar 4980022
But output is coming like that :
vidhu 1
4980022
Help me out to find this problem.
A: @try:
awk 'FNR==NR{A[$2]=$1;next} ($1 in... | |
doc_27922 | <appSettings>
<add key="KEY1" value="dev.cloud" />
<add key="url" value="https://www.[KEY1].com"/>
</appSettings>
I tried ${KEY1} like valumanifest.xml but this does not work in app.config.
am I missing something here ?
A: You have to use ConfigurationManager to read settings in the appSettings section.
For exampl... | |
doc_27923 | package gui;
import javax.swing.*;
import java.awt.*;
public class Gui extends JFrame {
public void Gui(){
setTitle("Gui");
setSize(640,320);
setVisible(true);
}
public static void main(String[] args) {
new Gui();
}
}
It is very easy code and I didn't find any problem with it, but someh... | |
doc_27924 | I have this method that search for item with a given id.
private void TreeView_OnSelectedItemChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
{
foreach (MessageFieldViewModel rowItem in Datagrid.ItemsSource)
{
if (_mainWindowModel != null)
_mainWindow... | |
doc_27925 | manager = new THREE.LoadingManager();
manager.onProgress = function () {
console.log('loading');
};
manager.onLoad = function () {
console.log('loaded');
};
manager.onError = function () {
console.log('there has been an error');
};
var textureLoader = new THREE.TextureLoader( manager );
var planetTexture ... | |
doc_27926 | tableview.reload()
this is not working and the app is crashing, then i tried calling
viewDidLoad()
this is also not refreshing the page. I dont want to use NSNotification
what am i doing wrong?
Can anybody please help
Thanks in advance
A: Are you sure your UITableView data source delegate methods are working proper... | |
doc_27927 |
*
*Just typing ¬ in the file format dialog
*The hex code (permutations of 0xC2AC , 0xC20xAC etc)
*The octal code 302 254 entered as permutations of \302254 etc
But whatever we try we get errors. Typing the delimiter straight it seems to think 0xC2 is the delimited and it gets confused by the second byte (0xAC). ... | |
doc_27928 | services.Configure<FormOptions>(o =>
{
o.ValueLengthLimit = int.MaxValue;
o.MultipartBodyLengthLimit = int.MaxValue;
o.MemoryBufferThreshold = int.MaxValue;
});
in controller
[HttpPost]
[RequestSizeLimit(314572800)]
public async Task<IActionResult> UploadFile([FromForm(Name = "file")]IFormFile file, int s... | |
doc_27929 |
The pulls API endpoint show who has been requested to review but I can't see when.
"requested_reviewers": [
{
"login": "tamlyn",
...
},
],
Any ideas?
A: You're looking for the GitHub Timeline API. See the docs for the Timeline API here.
Request:
curl \
-H "Accept: application/vnd.github+jso... | |
doc_27930 | def function(group_by_df, features_df=None):
# actions to perform to group_by_df e.g
feature_max = group_by_df.column.max() # This is a series object with index the same as group_by_df
if features_df is not None:
features_df['feature_name'] = feature_max
else:
features_df = feature_max.t... | |
doc_27931 | I've "cloned" a Redux store I've created before and simplified it.
I've tried first in just one state, reducer, selector and action, then I've tried creating a tree (like my older project) but nothing changed. I've checked the package.json and I see I've the same Redux, React, ReactRedux, Typescript, ecc... version.
im... | |
doc_27932 | Is this an incompatibility between PaperJS and ReactJS or am I instantiating PaperJS incorrectly? I'm calling paper.setup(canvas) in the componentDidMount function of the react component which contains the canvas element. Is that the correct place to do this?
I've included code snippets below.
Note: For some reason th... | |
doc_27933 | return Response.status(Response.Status.OK)
.entity("<p aat:\"\">sh</p>")
.type("text/html")
.encoding("ut-8")
.build();
and looking at the browser, I see what it is converted into if it was text/html
< p aat:""="">sh< /p>
But, while returning as application/jso... | |
doc_27934 | Name ID DATES R
1 @0CC 71476 20000704 11
2 @0CC 71476 20001204 11
3 @0RM 49960 20000131 2
4 @0RM 73565 20000919 1
5 @0RM 59451 20001023 1
6 @0RM 44457 20001214 1
7 @0TL 48061 20000627 31
8 @0TL ... | |
doc_27935 | Possible Duplicate:
HEAD and ORIG_HEAD in Git
By default we see two branches in git:
origin/master
origin/HEAD
I wonder, what is head used for?
A: It's a pointer to the current commit.
Since it represents a commit you can can use it with most of git's commands.
Examples:
Show the latest commit with it's diff:
git s... | |
doc_27936 | driver.find_element_by_xpath('//*[@id="_cs_foreigninfo"]/div/div[2]/div/div[1]/div[1]/div[2]/div[1]/div/div/ul/li[2]/div/a/span').click()
A: You can try with below xpath :
//div[@class='radio_check _radioBtn ']//a
Code 1 :
driver.find_element_by_xpath("//div[@class='radio_check _radioBtn ']//a").click()
Code 2 :
We... | |
doc_27937 | The worksheet the user uses (i.e., "Particulier") retrieves data from several other sheets; one of these sheets is a price list (i.e. "Toestelprijzen Start") that needs to be updated every once in a while: Every week I receive a new price list with new product prices which I use to update the old prices in the Excel to... | |
doc_27938 | MainController.storyboard : error : 2019-11-19 19:53:33.159 ibtoold[9510:345883] [MT] DVTAssertions: ASSERTION FAILURE in /Library/Caches/com.apple.xbs/Sources/IDEInterfaceBuilder/IDEInterfaceBuilder-15505/InterfaceBuilderKit/ImageCatalog/Library/IBUIColor.m:105
MainController.storyboard : error : Details: nsColor sh... | |
doc_27939 |
I have made some progress with the following code however it pulls undesired values too:
let
Source = Excel.CurrentWorkbook(){[Name="Table3"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Input", type text}, {"Desired OutPut", type any}, {"Bonus", type text}}),
#"Added Custom" = Table.A... | |
doc_27940 | Some project I'm trying to use is using socket.io-client, but I'm used to using plain old socket.io, and it dons't really lay it out in the documentation.
A: The main difference I'm aware of is that with the socket.io-client library you can connect your server to another server serving socket.io events.
For example, ... | |
doc_27941 | Heroku and the like are really appealing because I would like to just do a git push.
Perhaps there are ways to support remote deploy through a jenkins plugin?
My build machine is a mac mini.
A: You could always leverage a release tool like webistrano to do your deploys. We often use webistrano or Capistrano to do our... | |
doc_27942 | $HIVE_HOME/bin/schematool –initSchema –dbType derby
to initialize Derby,and the error is as below:
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/usr/local/hive/lib/log4j-slf4j-impl-2.10.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/usr/local... | |
doc_27943 | class Program
{
IPAddress ipadd;
int port;
TcpListener tcplistener;
public async void startListeningForConnection(IPAddress ip = null, int dport = 23000)
{
if (ip == null)
{
ip = IPAddress.Any;
}
if (dport <= 0)
... | |
doc_27944 | constructor() {
super();
this.state = {
task: {
line: 'fjj jfjjf fj fffj fjjfj jffj f',
position: 0,
mistakeAtCurrentPosition: false
}
};
...
}
Now I have a key press handler and so when user pressed it correctly I'd like to change
{
task: {
... | |
doc_27945 | CREATE PROCEDURE getdata
AS
SELECT *
FROM mytable
Now i want insert the output into a temporary table. I can do like
INSERT INTO #TempTable
EXEC getdata
But i have to create a table beforehand for this. How can I achieve something like below (without creating table before)
select * into #temp exec getdata
I have tr... | |
doc_27946 | I researched about the incorrect image being displayed and I think I have to cached the image that was loaded. Is that the standard way to do this?
I'm quite proficient in Android and I'm pretty sure the fresco/picasso library do this already which I think is not in iOS.
Can someone point me to the right direction?
Tha... | |
doc_27947 | We would like to get a Subversion client log file, which contains information what command was send to the server, what response came back and so on. Is there the possibility to switch on logging to get that information on the client?
I found tons of information what to do with subversion logs, but that does not help h... | |
doc_27948 | highlight normal ctermbg=#e0e0e0
but will have no problem at all when doing (e.g.):
URxvt.color10: #e0e0e0 <- Xresources
highlight normal ctermbg=10
?
Bonus question is: Can I add color-scheme tag to this vim related question, when its description is
A color scheme is a set of colors used by an IDE
?
A: urxvt... | |
doc_27949 | After getting a token I'm able to retrieve my hubs, then my projects, but when it comes time to retrieve issues in a project I am getting a 403 forbidden.
Trying to retrieve issues with the following URL:
https://developer.api.autodesk.com/issues/v1/containers/[issue_container_id]/issues
where [issue_container_id] is... | |
doc_27950 | import random
import sys
from nltk.corpus import wordnet
print('Enter your passage')
Passage = sys.stdin.readline()
PassageList = Passage.split(' ')
wordCounter = 0
syns = []
def maxInt(list):
i = 0
for x in list:
i += 1
return i
for x in PassageList:
syns = wordnet.synsets(PassageList[wordCounter]... | |
doc_27951 | Although somewhat successfull on client-side, I'm now wondering whether there is some way to simulate a similar behavior at the server. As I cannot really kill the previous request, only disconnect from it, it will still run to the end and consume valuable resources. If the user clicks on 20 elements, he will only see ... | |
doc_27952 | I am configuring it inside the Global.asax.cs
My dependency injection chain is configured using Autofac.
This is the way I am calling the recurring job
RecurringJob.AddOrUpdate<RunnerClass>(nameof(RunnerClass.MyMethod)+"_"+DateTime.UtcNow.ToString("yyMMddHHmmss"), r => r.MyMethod(), "* * * * *", queue: "specialqueue");... | |
doc_27953 | /dev # dd if=/dev/XXXX | nc HOST PORT
32768+0 records in
32768+0 records out
16777216 bytes (16.0MB) copied, 4.134436 seconds, 3.9MB/s
[no promt]
When I try to write the output to /dev/null the command terminates after some seconds perfectly.
/dev # dd if=/dev/XXXX of=/dev/null
32768+0 records in
32768+0 records out
1... | |
doc_27954 | EDIT
Thanks for the comments, sorry about the previous lack of clarity at the end of a long tiring day. The problem:
private void SetMultiDimensionalArray(Array array)
{
for (int dimension = 0; dimension < array.Rank; dimension++)
{
var len = array.GetLength(dimension);
for (int k = 0; k < le... | |
doc_27955 | This work but a plain to write an array:
$scope.candidats=[];
for (i=0;i<omegaCandidats.length;i++){
if (omegaCandidats[i].dateRdv==date){
$scope.candidats.push(
{
"id" :omegaCandidats[i].id,
"prenom" :omegaCandidats[i].prenom,
"nom" :omegaCan... | |
doc_27956 | function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
}
reader.readAsDataURL(input.files[0]);
}
}
Is this right?
A: if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onloa... | |
doc_27957 | <a disabled="disabled"><img alt="First" src="/Content/Images/Grid/disabledFirst.png"></a>
And I run following expect on this html
expect($(element)).toBeDisabled()
where element is the selector for above html. The expect fails. Further investigation lead to following code in jasmine-jquery-1.3.1.js
toBeDisabled: fun... | |
doc_27958 | In short, my application is leaking memory.
I have a Flowpanel containing multiple instances of a UserControl which in tern contains two Picturebox controls and a Label and a ToolTip.
My Usercontrol is immutable and each instance contains some status information and a couple of images which are from Properties.Resource... | |
doc_27959 | gem install compass
And this error appears.
Building native extensions. This could take a while...
ERROR: Error installing compass:
ERROR: Failed to build gem native extension.
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby -r ./siteconf20140818-5119-rfb64z.rb extconf.rb
mkmf.rb can't find head... | |
doc_27960 | This is my toast :-
toastr.success('Successfully', 'Registered',{timeOut:2000});
My controller has the following line of code to set the userName:-
session.setAttribute("userName",userName);
where userName has fullName as its attribute.
A: First you should put message to Model or ModelAndView, such as
model.put... | |
doc_27961 |
.hexagon1 {
position: absolute;
left: 50%;
transform: translate(-50%);
width: 106px;
height: 61.20px;
background-color: #02cd68;
margin: 30.60px 0;
top:44px;
cursor: pointer;
transition: box-shadow 0.2s ease-in-out;
}
.hexagon1:hover {
box-shadow: 0px 0px 40px #02cd68;
}
.hex... | |
doc_27962 | How can i display grid view selected item in textbox in WPF? Is it possible to do it only using WPF or must do inside the program code or both?
Control A with
<UserControl x:Class="PayrollSystem.Controls.EmployeeDetailControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
x... | |
doc_27963 | telefony_list, osoby_list and email_list contains all objects pushed from generic ListView.
<tbody>
{% for osoba in osoby_list %}
<tr>
<td>{{osoba.id}}</td>
<td>{{osoba.imie}}</td>
<td>{{osoba.nazwisko}}</td>
<td>{% tel.telefon for tel in telefony_list if tel.osoba_id == osoba.id... | |
doc_27964 | If anything doesn't work as advertised, you're completely on your own. No error messages, no help in trouble shooting, not even an acknowledgement that something might not work.
Point in case: Add to homescreen
I've got everything set up: https, service worker, etc., but it's not working.
Tutorials like this https://de... | |
doc_27965 | I have html:
<div class="input alpha grid_4">
<label for="enterEmail">Email Address<label>
<input id="enterEmail" name="enterEmail" type="text" />
<span class="validMark"></span>
</div>
How I want it after the json rendering:
<div class="input alpha grid_4">
<label for="enterEmail">Email Address <a class="toolTip" hr... | |
doc_27966 | I've tried this:
SELECT
monthdates,
sum(10) OVER (
PARTITION BY monthdates ORDER BY monthdates ASC rows between unbounded preceding and current row)
FROM mytable;
..which is wrong because I want this:
+------------+-----+
| monthdates | sum |
+------------+-----+
| 2018-01-01 | 10 |
| 2018-01-01 | 1... | |
doc_27967 | Ottawa
kanata
but it will not return: santa barbara
or: barbaras
I am having this issue using Oracle client 18c, managed or unmanaged.
The result is fine if I use Sql Developer from Oracle.
Thanks.
| |
doc_27968 | public function index($url)
{
$companyName = explode("/", $url);
if(Auth::check())
{
$company = Company::where('name', '=', strtolower($companyName[count($companyName) - 1]))->first();
// If sortby not empty
$sortby = "created_at";
//assume desc (most recent)
$sor... | |
doc_27969 | I'm trying to get users who bought some products in DESC order.
both products.userIDs and orderTime are indexed
db.collection.find({$or:[{'products.userIDs':{$in:usersArray}} , {'item.userIDs':{$in:usersArray}}]})
.sort({orderTime:-1})
.explain();
without sort it docs examined are 22
with sort docs examined are 1602
h... | |
doc_27970 | This is my current code;
shadowColor: '#000000',
shadowOffset: {
width: 0,
height: 0
},
shadowRadius: 50,
shadowOpacity: 1.0,
elevation: 1
This produces a shadow that is only visible on the bottom of the navigation bar but not on the top. Is there a way to place a negative shadowOffset so that the ... | |
doc_27971 | for example I have the following class and creating an object:
class MyClass():
class_variable = 10
def __init__(self):
self.object_variable = 5
object = MyClass()
I can access the class_variable in two ways:
object.class_variable
myClass.class_variable
I cannot see any difference as these two possi... | |
doc_27972 | Ext.define('App.view.cube.MainView', {
extend: 'Ext.panel.Panel',
....
layout: 'card',
...
dockedItems: [{
xtype: 'panel',
items: [{
// a drop down containing 2 choices
}]
}],
items: [{
xtype: 'tabpanel',
itemId: 'mmtabs',
activeTab... | |
doc_27973 | does anyone know to do it?
Array
(
[address_street] => Level 01, No 1, First Avenue Bandar Utama
[address_zip] => 47800
[address_city] => Petaling Jaya
[address_country] => Malaysia
)
Thanks in advance.
A: You can use implode or do the following:
$mystring = $myarrayname['address_street'] . "<br /... | |
doc_27974 | public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('title', TextType::class)
->add('tags', EntityType::class, [
'class' => Tag::class,
'multiple' => true
])
;
}
This FormType gen... | |
doc_27975 | // DTO
public class RequestrDto
{
public string Name { get; set; }
public ICollection<int> CityIds { get; set; }
}
// ENTITY
// PLACE
public class Place
{
public int Id { get; set; }
public string Name { get; set; }
public List<City> Cities { get; set; }
}
// CITY
public class City
{
public in... | |
doc_27976 | When using Processing.js, I routinely set the color value of a specific pixel on the canvas.
set(x, y, color);
Very easy as you can see. In my situation, for each y-value, any value for x may have a slightly different color value (or not at all).
When I look at Kinetic.js, I see that everything is an object and... | |
doc_27977 | Transactions and Receipts. Transactions contain the amount billed and Receipts contain the amount paid. My report needs to show:
LastName | FirstName | Company | Location | Total | 30 | 60 | 90
---------------------------------------------------------------------
Tom | Clark | Microsoft | Washington | $300 | $... | |
doc_27978 | My request header was like below
User-Agent: Fiddler
Host: management.core.windows.net
x-ms-version: 2011-10-01
Also as per this link this is due to authentication, if i am correct then how can i pass certification info with get request and able to get 200 (OK) status and result?
Thanks in Advance.
A: Try making the ... | |
doc_27979 | LeadingSpace from CellView to ContentView = 0
TrailingSpace from CellView to ContentView = 0
But when I preview this on the IPAD the CellView is not filling the ContentView.
I've set the ContentView background colour to Pink and the CellViews Background Colour to Red and here is the result:
Any ideas why the CellVi... | |
doc_27980 | I am using opencv 2.3.1 and ubuntu 11.10.
A: Basically, all you need to do is set a ROI (Region of Interested) in the video frame and then perform the operation to copy an arbitrary image to that specific position in the video frame.
I've demonstrated how to do something similar in this thread, where the user selects ... | |
doc_27981 | Here is my TSV table:
It is supposed to look like this:
So I need R to count the number of semicolons ";" in each cell in column "taxonomy" and if the number is smaller than 6 I need R to add the required number of semincolons to make it six semicolons per cell.
I am new to the bioinformatics field so any help would ... | |
doc_27982 | // act
ViewResult result = controller.Index() as ViewResult;
// assert
Assert.IsInstanceOfType(result.Model,typeof(List<Architect>))
this line
Assert.IsInstanceOfType(result.Model,typeof(List<Architect>))
throws two errors
*
*Argument1: cannot convert from object to System.Type
*The best overloaded method match ... | |
doc_27983 | If HasMethod( "StdLib.DLL", "ReadFileE" ) Then
...
End If
Is there a way to do this from, say, VBScript or JScript? If not, where do I go to get the information I need?
A: After Googling around not quite finding what I wanted, I remembered the Edanmo site which got me thinking about TLBINF32.DLL, downloading Micr... | |
doc_27984 | I want to find all user documents from the Users collection that are following "A famous club". How can I find those? and Which way is the fastest?
More info about 'what do I want to do - Edge collections'
Users collection
{
"_id": "1",
"fullname": "Jared",
"country": "USA"
}
Clubs collection
{
"_id"... | |
doc_27985 | To avoid multiple login of the same user I have used a signin column in the table which will become 1 after signin and 0 after signout. I have used session state to signout the user if he closes the browser window without signing out.
<system.web>
<sessionState mode="InProc" timeout="15" cookieName="student"/... | |
doc_27986 | Please give guidance on this!
A: onItemClickListener write code to download any file,
int count;
try {
URL url = new URL("YOUR_URL");
URLConnection conection = url.openConnection();
conection.connect();
int lenghtOfFile = conection.getContentLength();
InputStream input = new BufferedInputStream(u... | |
doc_27987 | [{"receive_date":"2013-11-04","responses":"2"}]
JSON :- https://api.myjson.com/bins/gdpu7
receive_date should be X-axis and responses should be Y-axis. I am loading the remote JSON data and passing it into Highcharts. But, what is the recommended way to assign X-axis receive_date key and assign Y-axis responses key.
... | |
doc_27988 | I've ended up with 4 duplicate responses after trying different things. These responses are now conflicting with each other and I can't delete them. Editing them doesn't stop the reported conflict nor does the option to delete them appear.
A: Wait for some time(because wit takes long time to update the stories) and go... | |
doc_27989 | Right now I have it very simple.. there is no logic.. so the user would put in order=100 for one item and order=200 for another.. and the one with the lower value would get listed first. Is there a more elegant way of doing this? I am thinking of something like "move up" and "move down". etc. I am trying to make adm... | |
doc_27990 | array[0] then array[1] then do something with each half?
I am populating the array for a select list and want to run through the list half at a time, due to website timing out.
When selecting all of the accounts at once, either manually or through ruby watir-webdriver script website times out.
This is how I was doing i... | |
doc_27991 | Can anyone help me out with this?
Here's the alarm provided by Expo Calendar Expo Alarm
The events are being created fine but I want an alarm to trigger at a given time.
Is this possible?
Here's a reproducible Expo snack Expo Calendar Snack
thanks in advance
A: The 'alarms' property is an array of Alarm objects
This o... | |
doc_27992 | # Rational.jl
# ...
Rational{T<:Integer}(n::T, d::T) = Rational{T}(n,d)
Rational(n::Integer, d::Integer) = Rational(promote(n,d)...)
Rational(n::Integer) = Rational(n,one(n))
//(x::Rational, y::Integer) = x.num // (x.den*y) <--- HERE!
# ...
See how the // function is implemented and then used with infix notation? Ho... | |
doc_27993 |
However, I got the following syntax error:
I assume the symbols quoting Relationship Type is the backtick `
May I ask how to correct the syntax errors here?
A: This is probably only a typo error in the book or maybe an old-syntax style. You should put parenthesis in from and to variables:
load csv with headers from... | |
doc_27994 | CertificateFactory cf = CertificateFactory.getInstance("X.509");
InputStream caInput = mcontext.getAssets().open("idashboard.cer");
Certificate ca = null;
try {
ca = cf.generateCertificate(caInput);
System.out.println("ca=" + ((X509Certificate) ca).getSubjectDN(... | |
doc_27995 |
create type dbo.UDT as table (FirstName varchar(50) null, LastName varchar(50) null)
I've create a stored procedure that has this UDT as a parameter:
create procedure dbo.InsertIntoMyTableUsingUDT (@udt dbo.UDT readonly)
as
begin
set nocount on;
insert into dbo.MyTable (FirstName, LastName)
select FirstNa... | |
doc_27996 |
And I have a table in my database called 'recipes' which will contain meal names and the number of the various ingredients required to make them.
When a user chooses inputs using the drop down boxes and submits it via the POST function, I want to be able to sum the total ingredients required for all the meals they ha... | |
doc_27997 | I have a container which contains a pi-hole (ad blocker) and I would like to point my DNS query to it.
So I got an OpenVPN container which configuration is :
push "dhcp-option DNS 172.200.0.10"
But for it to be working, I have to declare a network and fix an ip address (in this case 172.200.0.10) in my docker-compose ... | |
doc_27998 | What's happening is that all of the ON clauses are being dynamically generated from a form; this statement below should be returning about ~1500 rows; it returns 32000.
I'm not sure if providing my table associations will be helpful; I have the sense that I'm just generally missing the point somewhere, but if more info... | |
doc_27999 | In an existing Eclipse solution I have a library project which is used as a Android Dependency in the main app project. That means that if I edit this library, and compile, the main project is updated with the latest from that library.
I'm trying to do the same in Android Studio. That means not importing a library, but... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.