id stringlengths 5 11 | text stringlengths 0 146k | title stringclasses 1
value |
|---|---|---|
doc_23522900 | VBCustomScript
inside xslt file but i get the following error:
Error (0x80004005): Namespace 'extra-functions' does not contain any functions.
please any help?
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:x="http://www.w3.org... | |
doc_23522901 | Get video file stream and Writing bytes using outputstream in while loop,
But received bytes is zero only until the while loop complete.
public class VideoHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
System.Net.WebRequest wreq;
System.Net.HttpWebResponse wresp;
... | |
doc_23522902 | import pandas as pd
from bitmex_websocket import BitMEXWebsocket
ws = BitMEXWebsocket(endpoint="https://testnet.bitmex.com/api/v1", symbol='XBTUSD', api_key=None, api_secret=None)
df = pd.DataFrame(ws.market_depth())
df.head()
symbol id side size price
0 XBTUSD 15500000000 Sell 1003 1000000.0
1 X... | |
doc_23522903 | What I want to do is grab some variables from a file, and store each variable and its data to a map.
In other words, I want to 'extract' a map from a text file.
As an example, the file would look like this:
username: michael
password: foo123
email: barfoo@gmail.com
My question is, how do I convert the above file into... | |
doc_23522904 | As ERB is integrated into the ruby stdlib, I guess their performance has been improved these last three years but I don't know if has been improved enought to surpass to Erubis.
| |
doc_23522905 | First, I get the entire collection of users from firestore database. Then for each user, I create a forEach loop, checking each contact in my list of phone contacts for a match. If there is a match, it creates a new list of "androidContactsInApp". It works fine when there are a small amount of users, but when I test... | |
doc_23522906 | When the user select a value, you do two things:
*
*Update the URL by adding a query parameter. This way you can pass the URL to someone else to see the same result
*You call a function to filter the table
My question/problem comes here.
If a user pass the URL with the parameter. In the init function of your compon... | |
doc_23522907 | public void move_up(View v){
gameview.sprite.move(Dir.UP);}
The problem is that it only works when the button is released, and it's executed one time. I want the method to be executed while the botton is pressed but I can't figure out how to do this.
A: I'm assuming by the name of your method that you're adding the o... | |
doc_23522908 | When writing an int, in js, I used:
function writeInt(num) {
let arr = new Uint32Array([
(num & 0xff000000) >> 24,
(num & 0x00ff0000) >> 16,
(num & 0x0000ff00) >> 8,
(num & 0x000000ff)
]);
buf.push(Buffer.from(arr));
}
The integer is received in little endian, and while I don't understand bitwise ... | |
doc_23522909 |
A: In Objective-C, a trampoline is an object returned by a method that exposes some kind of message interface. When messages are received, it bounces the message on to another object.
Example One:
Return a proxy of a service client. When methods are invoked on the proxy, it first checks if the user has permission to ... | |
doc_23522910 | or error('not an HTTP upload', $uploadForm);
If I have the above and upon validation if the error is true what does the error mean?
A: The errors codes are listed here: http://php.net/manual/en/features.file-upload.errors.php
| |
doc_23522911 | In on create, I wrote this code:
SharedPreferences BannerPrefs = getSharedPreferences("BannerPref", 0);
BannerLink = BannerPrefs.getString("BannerLink", "");
BannerUrl = BannerPrefs.getString("BannerUrl", "");
WebView wv=(WebView)findViewById(R.id.imv);
wv.setOnTouchListener(new OnTouchListener... | |
doc_23522912 | import mysql.connector
from datetime import datetime
import requests
import json
import math
import os
import logging
# Use logging.info() to output info to the console
logging.basicConfig(level=logging.INFO)
# Connecting to the MySQL Docker image
cnx = mysql.connector.connect(user='test', password='test', host='db',... | |
doc_23522913 | I would like to be notified every time a user adds, remove or edit a Media Item (Song, Artist or Album item).
I have still not found a way to do that.
A: You can use notification MPMediaLibraryDidChange to observe the library changes.
Be sure to call beginGeneratingLibraryChangeNotifications() first.
For reference
ht... | |
doc_23522914 | I am using VS2015 so in my errorlist all the sonar errors are listed as warnings but these errors are not on my dashboard there are only very few errors are listed on my dashboard previously it was working fine and I have also not made any changes.
Configuration details are as follow:
SonarQube - 5.3
MSBuild.SonarQube.... | |
doc_23522915 | wrapper | --> Wrapper Started as Console
wrapper | Launching a JVM...
jvm 1 | Wrapper (Version 3.2.3) http://wrapper.tanukisoftware.org
jvm 1 | Copyright 1999-2006 Tanuki Software, Inc. All Rights Reserved.
jvm 1 |
jvm 1 | 2021.01.11 19:06:57 INFO app[][o.s.a.AppFileSystem] Cleaning or creating temp d... | |
doc_23522916 | ||
doc_23522917 | My Windows Server 2016 server has a D: drive. The server is an AWS instance.
This is with native Docker installed and not the "Docker for Windows" that has been around for a while.
A: We got it to work. Essentially, we're adding a symbolic link in the registry.
Add this to the dockerfile:
RUN powershell -NoProfile ... | |
doc_23522918 | and the problem in /line10 when I press the X button it keeps deleting the first row.
The code in Fiddle
function render(){
for (let i = 0; i < allMovie.length; i++) {
var tr = document.createElement('tr');
tr.setAttribute("id", "mainTR");
table.appendChild(tr);
var td1 = document.createElement('td');... | |
doc_23522919 | My computer has 2 disks, SSD 256GB, 1TB HDD.
And I partitioned that like following
- SSD Area
/boot 500MB
swap 16GB
/ Rest of SSD
- HDD Area
/home Whole HDD
Now my IDE and Workspace are loacated in /home directory.
I think it's not good to use disk efficiently.
I guess I have to move my IDE and Works... | |
doc_23522920 | I would rather not post the code but all it really is is a comment stating the above, some class and method code and an assert line checking that i==Integer.MAX_VALUE.
Ive spent a few days working on this and ive come to the conclusion that I need to somehow use a Long to make a value that will wrap around to Integer.M... | |
doc_23522921 | #include <algorithm>
#include <string>
using namespace std;
void some_func() {
string s = "example *trin*";
string letters = "abcdefghijklmnopqrstuvwxyz";
// replace all '*' to 'letter of alphabet'
for (int i = 0; i < 25; i++)
{
//replace letter * with a letter in string which is moved +1 each loop
replace(s.b... | |
doc_23522922 | I am just wondering because the onClick extends from String. If I click on the onClick the Code I get is this one:
var CommonAttributeGroupFacade.onClick : String
get() = attributeStringString.get(this, "onclick")
set(newValue) {attributeStringString.set(this, "onclick", newValue)}
So I think onClick has a ge... | |
doc_23522923 | AddButton.qml:
Item {
Button {
text: "ADD"
width: 100
height: 50
}
}
Which I add to the main QML file like this:
main.qml:
Item {
id: root
width: 800
height: 600
AddButton {
id: addButton
}
}
This works fine. However, as soon as I try to put the button i... | |
doc_23522924 | > x = data.frame(a=c(1,2,3),b=c(5,6,7))
> y = data.frame(x=c(1,1,1))
> x
a b
1 1 5
2 2 6
3 3 7
> y
x
1 1
2 1
3 1
The result I want is,
>
a b
1 2 6
2 3 7
3 4 8
How can I do this?
A: We can make the dimensions same and then get the sum
x + rep(y, ncol(x))
# a b
#1 2 6
#2 3 7
#3 4 8
Or another option is swe... | |
doc_23522925 | But if I send same data to microcontroller using any terminal application microcontroller returns SC as many times as I send data to it.
import time
import serial
import os
import sys
import signal
ser = serial.Serial(
port='/dev/ttyUSB0',
baudrate=9600,
parity=serial.PARITY_NONE,
stopbits=serial.STOP... | |
doc_23522926 | if(condition) __builtin_unreachable();
is being entirely stripped, and used as an optimization hint as long as condition can be guaranteed to not have any side effect.
So my immediate reaction to this is that I should create the following macro, and use it absolutely everywhere I would normally use assert(), since sid... | |
doc_23522927 | Can I try to use win32gui.SendMessage(handle, click, "Load"......) or a similar way to achieve this?
I can use rect x,y of toolStrip1 via win32gui.GetWindowRect, and roughly can do click button via x+40, x+80 accordingly, but it is not really good specially when the item position changes in the new version.
Here is t... | |
doc_23522928 | users.login(credentials,function(err, results) {
//On errors
if (err) {
res.render(routes.index, {
title: 'Login'
});
//On success
} else if (results[0]) {
//Set session data and redirect to start page
req.session.userdata = results[0];
req.session.userdata.email = req.body.email... | |
doc_23522929 | I am looping through all fields of form and using it in html template.
But, I need to ignore one field named captcha.
Original working code:
<body>
<h2>Form Submission Data</h2>
<table border="0" cellpadding="0" cellspacing="0" >
{% for name,value in post %}
<tr>
<td class="colname">{{ n... | |
doc_23522930 |
A:
I often think that people are over-eager to define configuration
files. Often a programming language makes a straightforward and
powerful configuration mechanism.
- Martin Fowler
If you are new to Dependency Injection, do not use XML (or web.config) for configuration. XML configuration is a very old techno... | |
doc_23522931 | I have a host named site-collection (subsite.domain.com) and the content query webpart sits on the default homepage of the site. The site is anonymously accessible and pulls from a list that is part of a subsite (the permissions on the list are managed at the item level, so the subsite and the list are anonymously acc... | |
doc_23522932 | So I have a form where I can add a user profile and then edit that profile. With componentWillReceiveProps I get the data in edit profile page and I can edit it, but with getDerivedStateFromProps I only get it, but I can't type anything in the input fields.
Can anyone tell me why?
State:
state = {
displaySocialInpu... | |
doc_23522933 | Api is tested and works fine.
Problem: Enter value in search bar and main Search method from servis is not called. That is reason why request is not sent.
I follow tutorial from angular official documentation: https://angular.io/tutorial/toh-pt6#search-by-name
And this not work.
Search Component:
export class SearchCi... | |
doc_23522934 | string stringValue = {"E":false,"T":1,"I":[],"M":"","S":false,"ST":1};
in string.
I have a value given as above and i want to store this value in a single string.
Please somebody help me.
A: You can escape double quote by back slash, you can find more about escaping string here
string stringValue = "{\"E\":false,\"T... | |
doc_23522935 | Here is my onBindDialogView:
AutoCompleteTextView editText = mEditText;
editText.setText(getText());
ViewParent oldParent = editText.getParent();
if (oldParent != view) {
if (oldParent != null) {
((ViewGroup) oldParent).removeView(editText);
}
onAddEditTextToDialogView(view, editText);
}
A: Is th... | |
doc_23522936 | However, on my development machine, when I install the app from the same pkg, it is not installed there. It is installed somewhere else - and I'm not sure where. It may be the last place where I compiled the app, but I am uncertain. Launch Pad is also uncertain, and most of the times the app does not appear there after... | |
doc_23522937 | The problem I'm having here is a client select 1 record and update it, but if there is another client running the same select query the db will return the same record selected before and rewrite.
How do I avoid this? Is there anyway I can select a record and let no other touch that record?
A:
How do I avoid this. Is ... | |
doc_23522938 | How can I configure the copied repo so that I can begin pushing and pulling changes normally?
| |
doc_23522939 |
A: You can put an iframe in your modal. An html iframe is used to display an external webpage on another, so just put an iframe in your modal, for example, <iframe src="/somepage.html"></iframe>. You can style this iframe, (i.e. width, height) using CSS.
A: i think you can open the popup modal using boostrap.
And put... | |
doc_23522940 |
here is the code which i wrote in index.ios.js:
var QRreader = React.createClass({
getInitialState: function() {
return {
text: 'http://facebook.github.io/react-native/',
record:{"name":"hussian","place":"vskp","age":"23"}
};
},
render: function() {
return (
... | |
doc_23522941 | If I create a bufferedstream on top of a file and then seek to an offset I get a block of bytes back
If I move the debugger back to the seek and re-seek I get an extra two characters
I ve triple checked this
Can there possibly be a bug with this class ?
If I reseek back to position I expect to get the same - The file... | |
doc_23522942 | When the script is launched from the controller:
Phantomjs.run('./public/javascripts/test.js')
The rails server hangs while the script is running, waiting for it to finish.
The phantomjs script, 'test.js' looks like this:
var page = require('webpage').create();
page.viewportSize = { width: 1920, height: 1080 };
page.op... | |
doc_23522943 | <c:if test="${student.studentPictureId != null}">
<a href="javascript:showImage('<c:out value="${student.studentId}"/>','<c:out value="${student.studentPictureId }"/>
</c:if>
I would like to make the code more generic
instead of calling
student.studentPictureId
I would like to call a generic function with... | |
doc_23522944 | react-navigation : why 'routes' of undefined ? https://reactnavigation.org/docs/routers
const SimpleApp = TabNavigator({})
const Simple = StackNavigator({
Home: { screen: SimpleApp },
Login: { screen: Login },
})
const defaultGetStateForAction = Simple.router.getStateForAction;
Simple.router.getStateForAction... | |
doc_23522945 | ORIGINAL CODE BLOCK:
@FXML
private void onNewClanCreation(ActionEvent event) throws IOException {
Parent root = FXMLLoader.load(getClass().getResource("ClanCreationPanel.fxml"));
Stage stage = new Stage();
stage.setScene(new Scene(root));
stage.initOwner(((Node) event.getSource()).getScene().getWindow());
stage.setResi... | |
doc_23522946 | I used this code to access certificate in the path "Certificates - Current User --> Personal --> Certificates
NativeLibrary crypt32 = NativeLibrary.getInstance("Crypt32");
Function functionCertOpenSystemStore =
crypt32.getFunction("CertOpenSystemStoreA");
Object[] argsCertOpenSystemStore = new Object[] { 0, "MY"}... | |
doc_23522947 |
A: Changing the value would surely be a better option. Deleting the record also takes resources.
| |
doc_23522948 | So I have 2 divs, one with anchor tags, then main content div. In the main content div I have the following script to hide differen't divs within the content div to hide and show active anchor links.
function showonlyone(thechosenone) {
var newboxes = document.getElementsByTagName("div");
for(var x=0... | |
doc_23522949 | My (example) code is:
for(comparison in c("A_N_vs_T", "A_N_vs_B", "A_N_vs_BT", "A_N_vs_Nprobes",
"B_N_vs_T","B_N_vs_B","B_N_vs_BT","B_N_vs_Nprobes")){
DO SOME OPERATIONS
assign(paste0("Norm_counts_",comparison,"$N_mean"), rowMeans(eval(parse(text=paste0("Norm_counts_",comparison)))[,c(1,2,3)],na.... | |
doc_23522950 |
*
*Imports: otherPackage and Depends: methods in myPackage's DESCRIPTION file
*import(otherPackage) in myPackage's NAMESPACE file
*Also tried adding importMethodsFrom(otherPackage,"fun")
The only way I found it to work is if I replace Imports: otherPackage with Depends: otherPackage, but we all know that it is rec... | |
doc_23522951 | tbody tr:nth-child(2n) td, tbody tr.even td {
background: none repeat scroll 0 0 #E5ECF9;
}
If I open it in my IE it won't work. Any advice?
I am using IE 8.
A: I like the answer above, but alternate row colours doesn't seem to work if a document isn't refreshed.
Try jQuery too:
$("tbody tr:even td").css("ba... | |
doc_23522952 |
What’s wrong with using a HashMap in a multithreaded environment? When get() method go into an infinite loop?
In my opinion, it's not a problem to use HashMap inside a multi-threaded environment, as long as our application is not accessing/reading threads which are modifying the created HashMap, rather than simply ac... | |
doc_23522953 | If i put mMediaPlayer=new MediaPlayer();inside onClick() method of holder.img1.setOnClickListenerabove issue does get resolved but then clicking on multiple play buttons will start playing multiple tracks at same time which i don't want..
Here is the code .. holder.img1 is for play icon and holder.img2 is for ... | |
doc_23522954 | NSDictionary *oneDict = @{
@"code": @"123"
@"name": @"car"
@"date": creationDate
}
these dictionaries are stored in a NSArray.
I need to extract the dictionary with the most recent date from that array.
I can discover the most recent date by doing this:
NSArray *extractDates =... | |
doc_23522955 | but on the production server, I want any of those to be emailed to me instead.
Is there a way to do this?
A: Due Laravel uses the Monolog library internally, I think it is a better solution to use the intended log handlers. So every uncatched exception and manual calls of Log will be send to your mail address.
if you'... | |
doc_23522956 | I could use [(ngModel)]="row.property" to populate the input's value and have the model bound to that object, but I don't want that because I want the user to be able to cancel making changes. If the input is bound to the object, the model will change even if the user clicks "Cancel".
So, setting value="{{row.property}... | |
doc_23522957 | I have tried doing this in the following ways:
df2 = df.query('ride_type != "Extremely Long"')
df2 = df[df['ride_type'] != 'Extremely Long']
However, when I run .value_counts() I get the following:
df2.ride_type.value_counts()
>>> Short 130474
Long 129701
Medium 129607
Very Long ... | |
doc_23522958 | I guess for this to work - the workstations would have to have git installed.
A: Git is not made for managing software installed in workstations! Of course it can be used for maintaining configuration synchronized between workstations, but then you'll need to develop the software for handling changes, installing stuff... | |
doc_23522959 | Given the fluent interface of the WebClient, the same mocking approach isn't really practical. I have spent some time using WireMock, which is great, but unfortunately there seems to be a bug where occasionally the WireMock tests will overrun or hang, and as such I'm considering alternatives.
Does anyone have any othe... | |
doc_23522960 | I am trying to use react-native's Asynchronous storage to get the name inside the componentDidMount() function. I believe that the value is not being set inside the onSubmit() method when it is being called. I tried removing the await keyword in the async function. I read other the documentation and can't find where I ... | |
doc_23522961 | [1,2,3,5] - true
[1,2,2,4] - false
Header for this function is uniqueValues(X) X - mean list. I really don't know this language and if anyone can explain me how to create this function will be great. Thanks in advence for help
A: Not knowing Prolog, this is going to be a bit of a haul, but let's give it a shot. In Pr... | |
doc_23522962 | HTML code
<p-table [value]="userElement" dataKey="id" editMode="row" [tableStyle]="{'min-width': '50rem'}"
styleClass="p-datatable-responsive-demo">
<ng-template pTemplate="header">
<tr class="grid">
<th style="width:5%"l10nTranslate>UnderProcess.Actions</th>
<th style="... | |
doc_23522963 | When I convert id to data,
UTF 8 -> Size: 3 bytes Array: [224, 174, 164]
UTF 16 -> Size: 4 bytes Array: [2980]
Seems pretty simple UTF8 tooks 1 byte per code and UTF16 takes 4 bytes per code. But, If I use "தததத" using Swift programming language in macOS,
let tamil = "தததத"
let utf8Data = tamil.data(using... | |
doc_23522964 | My question is that can we read array containing some other type of objects. xml file is like this:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array
name="difficulty_level_names">
<item>
<name>IELTS</name>
<type>1</type>
</item>
<item>
... | |
doc_23522965 | a = ['a','b']
b = [1,2,3,4]
I'd like to produce this:
c = ['a1','a2','a3','a4','b1','b2','b3','b4']
So I basically want to join every element of b to each element in a.
I'd like an approach similar to this:
[x+str(y) for x in a and y in b]
Thanks in advance!
A: a = ['a','b']
b = [1,2,3,4]
c = [x+str(y) for x in a f... | |
doc_23522966 | I like this tutorial: http://www.williammalone.com/articles/html5-canvas-javascript-bar-graph/
But I yet to figure out how to create stacked bar chart from regular bar chart.
I've simplified my code so it is easier to read:
var Charts = function Charts(opts) {
opts.title = opts.title || {};
opts.subtitle = opts.sub... | |
doc_23522967 | What's strange about it is that the relevant frame is when it parsed the ec.what() which is a function that basically create a string message ...
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 P 0x104919660 boost::system::error_code::what() const (in P_arm64.dsym) + 528 + 251488
1 P 0x104919654 boost::... | |
doc_23522968 | My question is what can I hang a PhoneStateListener off that will allow me to receive an event about signal strength when (or shortly after) I ask for it.
Is the GSM signal strength not delivered as a broadcastable event?
(I am trying to avoid having to put this listener in a service)
Thanks.
A:
My question is what ... | |
doc_23522969 | Why does the symmetry test fails here for medium-size-random matrices?
It always works for small matrices (20,20 etc.)
import numpy as np
features = np.random.random((50,70))
autocovar = np.dot(np.transpose(features),features)
print((np.transpose(autocovar) == autocovar).all())
I always get 'FALSE' running this code. ... | |
doc_23522970 | I have the code:
Process.Start(@"C:\Program Files\Seagull\BarTender 2021\BarTend.exe /F=C:\Labels\test.btw /P");
But gives the output
The system cannot find the file specified
Everything is there, spelled correctly. It seems like a simple mistake but not sure where it is, since the documentation is very minimal
I ha... | |
doc_23522971 | Question 1: In the following code snippet, will the compiler be smart enough to free the user data (in the heap, implicitly pointed to by s) at the end of the function? I think the answer is yes, just want to confirm.
void dummy() {
string s;
s.append("hello");
//more append
}
Question 2: in the follo... | |
doc_23522972 | I have the following lines:
FILEGROUP [PAYMENT_MGMT](NAME = [PAYMENT_MGMT], FILENAME = '$(DefaultDataPath)$(DatabaseName)_PAYMENT_MGMT.ndf', FILEGROWTH = 102400 KB)
LOG ON (NAME = [SQL_log], FILENAME = '$(DefaultLogPath)$(DatabaseName)_log.ldf', SIZE = 5012 KB, MAXSIZE = 2097152 MB, FILEGROWTH = 102400 MB) COLLATE Slo... | |
doc_23522973 |
and saying
which is odd, since this says otherwise.
I verified the md5 of the download, so that's not the issue.
Any bright ideas?
A: I suspect that you have another version of commons-codes classes in your classpath, before the commons-codec jar you installed.
Make sure the "Link with Editor" icon button at the top... | |
doc_23522974 | For example my document looks like this:
"_id" : ObjectId("60e5ae42fcc92f14c3a41208"),
"userId" : "xxxx",
"projectCreator" : {
"userId" : "xxx|xxxx"
},
"hashTags" : [
"Spring",
"Java"
],
"projectCategories" : {
"60d76ef0597444095b8ab4b2" : "Backend",
"... | |
doc_23522975 | But is the following an dereferencation?
struct example{
int a;
float b;
};
void test(){
example* p_e;
cudamalloc(&p_e,sizeof(example));
float* db = &p_e->b; // is this line valid?
}
It works on my computer, but is this valid?
edit:
With it works, I meant, that it holds in my testrun that:
reinterpret_cast<void... | |
doc_23522976 | to save-graph
nw:save-graphml "mygraph.graphml"
end
to load-graph
ask turtles [ die ]
nw:load-graphml "mygraph.graphml"
end
But it's very slow, specially for big graphs. I tried to simply assign the turtles and links to other variables:
globals [saved-turtles saved-links]
to save-graph
set saved-turtles tu... | |
doc_23522977 | public Collection getOrderReportByUserName(String userName, Integer scripID, String orderStatus, String orderType)
{
String strQuery = null;
Collection<TradeStock> ts = em.createQuery("Select t from TradeStock t where t.userName.userName = :userName").setParameter("userName",userName).getResultList(... | |
doc_23522978 | According to the configuration, I would like to create an instance (RegisterInstance\Type) at runtime.
I found only samples for how to do it by a configuration file.
I want to recieve the type from my configuration service.
All the types which I can get from the service are inherit from the same interface.
How can I d... | |
doc_23522979 | When i use the connection string of the service bus namespace everything is working fine.
But when i use the connection string of the explicit topic i get following exception:
javax.jms.JMSSecurityException: InvalidSignature: The token has an invalid signature. TrackingId:bafd2af8-a6df-4cd6-8516-c8a976f30ead_B11, Syste... | |
doc_23522980 | Loan numbers are like 0001, 0023, 0045 so I want to find out whether there is loan number length is lower than 4 numbers or greater than 4 numbers
Is there easy way to find out this?
A: SELECT * FROM tbl_loans WHERE LENGTH(loan_number)<>4;
More info about the Length MySQL function (and other string functions):
http:... | |
doc_23522981 | I have an algorithm that produces 9,731,643,264 of these items, and want to see how many of these are unique. I speculate that at most 1/36th of these will be unique but can't be sure.
At this size, I can't really do this in memory (as I only have 4 gigs), so I need a way to persist a list of these, do membership test... | |
doc_23522982 | import numpy as np
def plot_2D_boundary(plot_range, points, decisionfcn, labels, values =[0]):
x = np.arange(plot_range[0], plot_range[1], .1)
I'm calling this function from another file in a Jupyter notebook i.e.
import numpy as np
plot_2D_boundary([-6,6,-6,6],[class_1,class_2],classify,[1,-1])
For some reason,... | |
doc_23522983 | I have an Autofac Module which hooks up to the IComponentRegistration.Activated event. It looks for activated instances of certain classes and registers them in some manager class.
This registration should be limited to the lifetime of the affected objects, of course. So the module needs to know when the object is disc... | |
doc_23522984 | likes: fields.ManyToManyRelation["User"] = fields.ManyToManyField(
"connect.User", related_name="liked", through="like_user"
)
comments: fields.ReverseRelation["Comment"]
The problem I'm having is now I can't find a way to filter by amount of likes and comments, as you can't filter by ManyToMany fields or Reverse... | |
doc_23522985 | Meal
sequelize.define('meal', {
mealId: {
type: DataTypes.INTEGER,
primaryKey: true,
autoIncrement: true
},
quantity: {
type: DataTypes.DECIMAL,
allowNull: false
},
period: {
type: DataTypes.INTEGER,
allowNull: false
}
})
Food
sequelize.d... | |
doc_23522986 |
*
*New installation (npm create astro@latest), the basic version, with no typescript (I do not know if its necessary)
src/components/Card.astro
---
export interface Props {
items: Array<string>;
}
const { items } = Astro.props as Props;
---
<ol>
{items.map((item) => (
<li>{item}</li>
))}
</ol>
src/pages... | |
doc_23522987 | doctype html
html
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
script(type='text/javascript' src='../public/javascript/myjavascript.js')
body
block content
Now if I include a function from myjavascript.js in index.js, it is not executed, even though the call is present in... | |
doc_23522988 | To the user, it must appear as if both buttons were the same button, appearing in more than one place in the hierarchy (in reality Swing does not allow this.)
I can get half way there by creating a single ButtonModel and assigning the same model to both buttons. This synchronizes their armed/checked/selected states et... | |
doc_23522989 | status.php
<?php
// array for JSON response
$response = array();
// include file koneksi.php
include_once("connect.php");
$query = mysql_query("SELECT * FROM status order by id_status desc");
if (mysql_num_rows($query) > 0) {
$response["data_status"] = array();
while($baris = mysql_fetch_a... | |
doc_23522990 | e.g. Are there any types in the standard library for which !x would behave differently from x == nullptr.
Note: I'm aware this is very similar to many other questions on SO, but believe it still warrants it's own question. I've given my justification for why here: Are questions about NULL sufficiently different from qu... | |
doc_23522991 | class Table1
public string Id1 { get; set; }
public string Field { get; set; }
public string Id2 { get; set; }
public virtual Table2 Table2 { get; set; }
class Table2
public string Id2 { get; set; }
public string Field { get; set; }
I need to search all records from Table1 where Table1Field is in the other table li... | |
doc_23522992 |
here selval is value of a dropdown option. dropdown options and the jsp's which i am loading
have the same names. that way i am using jquery's load() to load the jsp file into a div.
here problem is there are multiple div's which generate dynamically with name documentProperties and
a number attatched to it for id uni... | |
doc_23522993 |
*
*Write a SELECT query:
*
*Find all ingredients (parts, wdt:P527) of pad thai, recursively. So, also include parts of parts and parts of parts of parts, etc.
*Find all things that have at least one ingredient in common with the pad thai. Here also make this recursive, so include parts of parts, etc.
*Include on... | |
doc_23522994 | <head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
border: 1px solid red;
}
header ... | |
doc_23522995 | snapInteraction = new ol.interaction.Snap({
source: Source.stationSource
});
because of no event i can not get which point is snaped
| |
doc_23522996 | When pasted into bootply it works fine http://www.bootply.com/tMvXXUvlz6
limited edition live example of the broken version also available here http://quirell.ngrok.io/tagged/life#
head.html:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel='stylesheet' type='text/css'>
<link href=... | |
doc_23522997 | typedef struct {
unsigned short bar : 1;
} foo_bf;
typedef union {
unsigned short val;
foo_bf bf;
} foo_t;
How do I correctly assign a value to this bitfield from an type e.g uint16_t?
uint16_t myValue = 1;
foo_t foo;
foo.bf.bar = myValue
Running PC-Lint, this turns into a MISRA error:
Expression assi... | |
doc_23522998 | Event event = requestManager.getEventById(comment.eventId);
Intent intent = new Intent(NOTIFICATION_ACTION).putExtra(EventFragment.EVENT, event);
builder.setContentIntent(PendingIntent.getBroadcast(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
The broadcast opens different activities, when the ... | |
doc_23522999 | In sample i find ADX Com Add-in under Extensibility New Project->other project types->Extensibility->ADX Com Add-in.but For me it is not available.
What should i do to enable this?
should i install another package or some thing like this to have this item in my new project menu .
does it refer to my vs version or the... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.