id stringlengths 5 11 | text stringlengths 0 146k | title stringclasses 1
value |
|---|---|---|
doc_5000 | Thanks
| |
doc_5001 | It works perfectly in Windows XP, but not on 64-bit Vista, where it fails with "Access denied". Looking into the server's access log, I can see that it gets Error 401 unauthorized, and no username seems to be transferred to the webserver.
In other words, it seems that the SOAP request does not include the username, if ... | |
doc_5002 | $string = "Time: 10:40 Request: page.php Action: whatever this is Refer: Facebook";
Then from something like this I want to achieve an array such that:
$array = ["Time: 10:40", "Request: page.php", "Action: whatever this is", "Refer: Facebook"];
I've tried the following so far:
$split = preg_split('/(:){0}\s/', $visi... | |
doc_5003 | I also have a simple string search query "query_str" (say).
How can i sort the ArrayList of book objects, based on search relevance of either book_title, book_author with "query_str"?
I am an application developer, not very experience with search ranking algorithms, but I found Lucene very interesting. The problem is, ... | |
doc_5004 | var result = [];
User.find(query, function(err, data){
result.push(data);
});
return result;
}
I try to push the data array into result, but keep getting an empty array back.
A: User.find() is async, so you can't just return the value immediately. You have two options to solve this problem:
Option 1:
Acc... | |
doc_5005 | My use case is that I am trying to have Java execute a batch script that needs JAVA_HOME to be set in the local environment. The environment that I am executing this on may not have JAVA_HOME set or even the java executable on the path, but I would assume that the JVM knows where its executable is located.
A: System.... | |
doc_5006 | I have three tables: Managers, Employees and C. Managers and Employees have a one-to-many relationship as such:
CREATE TABLE Managers (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255)
);
CREATE TABLE Employees (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255),
manager_id INT,
FOREIGN ... | |
doc_5007 |
A: As mentioned in the comments, so far it doesn't sound like you need a plugin, although we would need more information to be sure.
What I think you want to do is copy existing FileMaker data to another application. You say "The final goal is to export the data into an editor..." Which begs the question, why does the... | |
doc_5008 | {
public static void LogDebug(string debuglog)
{
Console.WriteLine($"[Debug] {debuglog}", System.Drawing.Color.Yellow;); //That $ passes the arg(string log) into the string function thus printing it into console
}
public static void InfoLog(string infolog)
{
... | |
doc_5009 |
<script>
$(function () {
//Date range picker with time picker
$('#reservationtime').daterangepicker({timePicker: true, timePickerIncrement: 30, format: 'MM/DD/YYYY h:mm A'});
//Timepicker
$(".timepicker").timepicker({
showInputs: false
});
});
</script>
... | |
doc_5010 | I found the following example but it does not seem to work:
SELECT TOP 5 obj.name, max_logical_reads, max_elapsed_time
FROM sys.dm_exec_query_stats a
CROSS APPLY sys.dm_exec_sql_text(sql_handle) hnd
INNER JOIN sys.sysobjects obj on hnd.objectid = obj.id
ORDER BY max_logical_reads DESC
Taken from:
http://www.sqlserverc... | |
doc_5011 | My code is the following:
const app = require('express')();
const bodyParser = require('body-parser');
var request = require('request-promise');
app.use(bodyParser.urlencoded({ extended: false }))
app.post('/jow', (req, res, next) => {
console.log(req.body['g-recaptcha-response']);
var options = {
method: '... | |
doc_5012 | da_test = xr.DataArray(rt, dims=['dtime', 'lat', 'lon'], coords={'dtime': tAxis, 'lat': Y,
'lon': X},)
da_test2 = xr.DataArray(rt1, dims=['dtime', 'lat', 'lon'], coords={'dtime': tAxis, 'lat': Y,
'lon': X},)
da_test3 = xr.DataArray(rt2, dims=['dtim... | |
doc_5013 |
*
*In an Xcode project add a new Cocoa Touch Class
*And select the "Subclass of" UIViewController Select "and also create XIB file"
*Then opening the .xib file there is only a UIView.
Any reason there is no UIViewController which would be the logical choice?
A: There is a connection. The connection is that th... | |
doc_5014 |
*
*Using .NET 2013 (C# / VB).
*Mail client is Outlook (2010+).
*Mail server is Exchange.
Questions:
*
*Is there a way from a .NET project to directly send an email using some kind of Outlook object?
*Can it be sent without showing a new window and having to press "send"?
*Will the mail be saved to "Sent It... | |
doc_5015 | confirmed, dispatched, recieved.
if passed pending it display pending with tick and if its confirmed on
dropdown it shows confimed with two ticks and dispatched with three ticks
and so on. Tried creating drop down which selects the all four values dont understand how
to implement tickmarks based on the text value and s... | |
doc_5016 | var request = new XMLHttpRequest();
request.open("GET", 'http://code.jquery.com/jquery-2.1.1.min.js');
request.onerror = function(error) {
alert(error.target.status)
};
request.send()
I will get the following expected error message in the developer console.:
XMLHttpRequest cannot load http://code.jquery.com/jquery... | |
doc_5017 | xx:xx:xx:xx/120
via jinja2 filter i would like to take only the IPv6 excluding the subnet. My output after rendering should be
xx:xx:xx:xx
I read all the filters from
https://jinja.palletsprojects.com/en/3.1.x/templates/
but with no success.
Any hint?
Thank you.
| |
doc_5018 | @interface TESTAppDelegate ()
@property (nonatomic, strong) NSMetadataQuery *query;
@end
@implementation TESTAppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(searchProgressed:) name:NSMetadataQueryGatherin... | |
doc_5019 | #define _GNU_SOURCE
#include <stdio.h>
#include <stdint.h>
#include <dlfcn.h>
void* malloc(size_t size)
{
static void* (*real_malloc)(size_t) = NULL;
if (!real_malloc)
real_malloc = dlsym(RTLD_NEXT, "malloc");
void *p = real_malloc(size);
fprintf(stderr, "malloc(%d) = %p\n", size, p);
retu... | |
doc_5020 | %python
display(flutten_df.printSchema())
display(flutten_df[flutten_df['url'].str.contains("www.ebay.com")])
it gives me this error:
AnalysisException: Can't extract value from url#75009: need struct
type but got string;
the schema is :
root
|-- web: string (nullable = true)
|-- url: string (nullable = true)
How t... | |
doc_5021 | Firstly, once I've pulled the XML file from the API, I'm using DataSet's ReadXML method to create DataTables. There happens to be 19 in total within the DataSet once ingested.
I understand that I can use DataRelation to link all of the tables, but it looks like the ReadXML method has already inferred some schema info a... | |
doc_5022 | (my code)
func getData() {
let context = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext
let request = NSFetchRequest<NSFetchRequestResult>(entityName: "Entity")
request.returnsObjectsAsFaults = false
do {
let result = try? context.fetch(request)
for dat... | |
doc_5023 | public class Supplier {
....
....
....
}
I have also Subcontractor class and Subcontractor is a Supplier:
public class Subcontractor:Supplier {
....
....
....
}
In my db I have Suppliers table with data and another table with id field which is act as foreign key to suppliers table and I have i... | |
doc_5024 | Exception in thread "main" java.lang.ExceptionInInitializerError
at model.DBManager.initEntityManagerFactory(DBManager.kt:11)
at controller.restapi.RestapiApplicationKt.main(RestapiApplication.kt:13)
Caused by: javax.persistence.PersistenceException: [PersistenceUnit: myPersistenceConfig] Unable to build Hi... | |
doc_5025 | Imagine I am setting up a new WordPress installation. I will create two new directories for my plugin and theme customization:
*
*wordpress/wp-content/plugins/myplugins/
*wordpress/wp-content/themes/mytheme/
I want to maintain these directories via Git. In Subversion, I would accomplish this by having trunk/myplug... | |
doc_5026 | How can I do this?? With lucene possible?? I know lucene can specify store. I don't know about folder.
-->company home
---->mainfolder1
------->doc1
------->doc2
---->mainfolder2
A: Looks like
+PATH:"/app:company_home/cm:mainfolder1//."
is what you want in your search expression.
The full glory details about Alfresco... | |
doc_5027 | Thank you
Tunnuz
A: Generally speaking never make something because some day you might be having to implement or do yadayada (it just makes life complicated and miserable Imho..). If you have a method that should only be used within its class, then make it private. If you ever have to extend it by inheritance than rec... | |
doc_5028 | So I have both sections, the projects-main-section and project-section-container (the expandable menu on the right) wrapped around a main container projects-main. I figured this would help to get the projects-main-section to grow with it, but no luck so far.
So, as the expandable menu grows in height, I want the projec... | |
doc_5029 | Ok, for the life of me, I cannot figure this out.
First and foremost, I'm using a DataTable to store the data, which is coming from an SQL server 2008 database, and I'm binding it to a DataRepeater.
I've tried changing the binding like this:
label1.DataBindings.Add("Text", history, "Value", true, DataSourceUpdateMode.N... | |
doc_5030 | I used this formula on onSelect of login button
If(LookUp('Account Name', Title = Username.Text, Password ) = Password, Navigate([@Screen1], ScreenTransition.Fade))
Here Account Name is my DataSource , Title and Password are columns in DataSource.
So how can i achieve this?
A: Let me see if I understand your question... | |
doc_5031 | driver.switch_to.frame(driver.find_element_by_css_selector("frame[name='nav']"))
driver.switch_to.frame(driver.find_element_by_css_selector("frame[name='content']"))
My goal is to get a function that takes an argument just to change nav or content since the rest is basically the same.
What I've already tried is:
def... | |
doc_5032 | Example:
Not valid: test@@test test,test test@te,st test@t.e,st
Valid: test@test test@te@st
Next pattern does exactly what I want (it checks whether a line contains @@ or , or . so the result is true/false):
/(@)\1+|[,.]/
but I don't like | sign here.
How can I fix it to use [ ] only? Or is there another way to do thi... | |
doc_5033 | ---- Show Server details
GO
SELECT
@@servername as ServerName,
@@version as Environment,
SERVERPROPERTY('productversion'),
SERVERPROPERTY ('InstanceName')
-- Show DB details
SELECT
name AS DBName ,
Collation_name as Collation,
User_access_Desc as UserAccess,
... | |
doc_5034 | FileUtils.copyInputStreamToFile(new FileInputStream(f1), f2);
copyInputStreamToFile is from apache.commons.io and will close the stream. I reason that this should close the InputStream in all usual situations, because if an exception happens when creating the InputStream there is nothing to close, and if one happens i... | |
doc_5035 | column_01.1
column_01.2
column_01.3
column_02.1
column_02.2
I can split these rownames with the following command:
strsplit(rownames(my_data),split= "\\.")
and get the list:
[[1]]
[1] "column_01" "1"
[[2]]
[1] "column_01" "2"
[[3]]
[1] "column_01" "3"
...
But since I want characters out of the first part a... | |
doc_5036 | This is my code (I wasn't expecting it to work but I just tried it anyways and it didn't):
class CustomSignUpForm(UserCreationForm):
email = forms.EmailField()
is_teacher = forms.BooleanField(label='I am a teacher')
class Meta:
if is_teacher == True:
model = Teacher
else:
... | |
doc_5037 | This is the given example that works
curl -X POST \
--header "Content-Type:application/json" \
-d @trace.json \
"https://api.mapbox.com/matching/v4/mapbox.driving.json"
This return me the accurate data.
What I am trying to achieve is the same but using vanilla PHP
function sendRequest() {
// initialise the ... | |
doc_5038 |
A: AJAX. That is all.
If you have any more specific issues, feel free to ask.
A: you could use the jQuery ajax function:
http://api.jquery.com/jQuery.ajax/
A: You can use an AJAX request (if I understood the question)
If your API is written in myapi.php, you can:
var word = "The Word";
$.ajax({
url: "myapi.php?a... | |
doc_5039 | Normally (i.e. for unstarred commands) I would do it like this:
\let\old@part\part
\renewcommand\part[2][]{
\old@part[#1]{#2}
… rest of definition}
That is, I would save the original definition of \part in \old@part and use that.
However, this doesn’t work for starred commands since they don’t define a single lexe... | |
doc_5040 |
*
*Generate and render the board
*Snake movement (with no eating and dying)
*Generate a fruit randomly inside the board
*Generate a fruit randomly again after being eaten
My issue now is to make the snake update and re-render itself inside the tick() every time it eats a fruit.
/**
* @returns {TickReturn}
*/
... | |
doc_5041 | I'm having difficulty in writing sql query according to the input provided by the admin. Firstly i have to check which inputs are provided by the admin and then i have to run query according to that. Values entered by admin are assigned to properties and then queries are build according to values present in properties.... | |
doc_5042 | Array (
[reply] => Array (
[recipient] => Array (
[@msisdn] => 1234123412
[@id] => 5b5f9635-15d7-44d8-b1e3-7015hj95c71c
)
)
)
So I want to get the @mssidn's and the @id's to use like this:
foreach($$$){
$sqldata .= '(' . $last_id . ',' . $msisdn . ',' . $id... | |
doc_5043 | how can I retrieve the objects from the vector.
How can I make sure to which derived class an object retrieved belongs.
class CricketPlayer:public SlumsMember
{
protected:
int runsScored;
int wicketsTaken;
int catchesTaken;
public:
CricketPlayer(int rNo,string n,double theGpa... | |
doc_5044 | Here is the cRUL command working in terminal properly.
curl -s --user 'api:key-...' \
https://api.mailgun.net/v3/DomainName/messages \
-F from='Excited User <mailgun@DomainName>' \
-F to=me@outlook.com \
-F subject='Hello' \
-F text='Testing some Mailgun awesomness!'
I can't make sense how I can ru... | |
doc_5045 |
A: Well, I believe this should work, if I understand your needs correctly:
const elementToObserve = document.querySelector("#parentElement");
const lookingFor = '#someID';
const observer = new MutationObserver(() => {
if (document.querySelector(lookingFor)) {
console.log(`${lookingFor} is ready`);
... | |
doc_5046 | JobA = some base dependencies. When that's compiled, I want to kick off both JobB and JobC.
When both JobB and JobC are complete I had a join trigger for JobD - to prevent JobE or JobF from kicking off when JobB or JobC complete.
The problem I have is that JobE or JobF kick off when either JobB or JobC complete.
Is thi... | |
doc_5047 | This is the handler mapping file:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:oxm="http://www... | |
doc_5048 | <?php
$message = "";
$found = $valid = false;
if ($_POST['username'] != "") {
$domain_pos = strpos($_POST['username'], "@");
if ($domain_pos === false) {
$username = $_POST['username'];
$domain = $_POST['domain'];
} else {
$username = substr($_PO... | |
doc_5049 |
A: You should be able to find this information in the device datasheet found on www.atmel.com
2.2.12 UCAP USB Pads Internal Regulator Output supply voltage. Should be connected to an external capacitor (1µF).
| |
doc_5050 | The problem is that the second child (<h4> tag) is not being contained within the Flex Box and appears to overflow.
My efforts thus far have resulted in the <h4> tag fitting but the object-fit: cover ceasing to work.
Is this possible to do?
#content {
margin-left: 18%;
margin-right: 18%;
/*border: 1px solid ... | |
doc_5051 | On my webpage I have code to get flashed messages for one set of messages:
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul class=flashes>
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
Ho... | |
doc_5052 | [
{
"time": "00:00"
"SumofDays": 100,
"schedule": "sch_1"
},
{
"time": "00:00"
"SumofDays": 100,
"schedule": "sch_2"
},
{
"time": "01:00"
"SumofDays": 200,
"schedule": "sch_1"
},
{
"time": "01:00"
... | |
doc_5053 |
Authorization Error
Error 400: redirect_uri_mismatch
The redirect URI in the request, http://localhost:3000/api/auth/callback/google, does not match the ones authorized for the OAuth client. To update the authorized redirect URIs, visit: https://console.developers.google.com/apis/credentials/oauthclient/${your_client_... | |
doc_5054 | from turtle import shape
import numpy as np
class stack:
def __init__(self):
self.stack = np.empty(shape=(1,100),like=np.empty_like)
self.n = 100
self.top = -1
def push(self, element):
if (self.top >= self.n - 1):
print("Stack overflow")
else:
s... | |
doc_5055 | <div class="form-group">
@Html.LabelFor(model => model.Season, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.DropDownListFor(model => model.Season, new SelectList(Enum.GetValues(typeof(Season)), new { @class = "form-control" })
... | |
doc_5056 | <?xml version="1.0"?>
<catalog>
<book id="bk101">
<author>Gambardella, Matthew</author>
<title>XML Developer's Guide</title>
<genre>Computer</genre>
<price>44.95</price>
<publish_date>2000-10-01</publish_date>
<description>An in-depth look at creating applications
with XML.... | |
doc_5057 | db.places.find({loc : { $near :[ -122.934326171875,37.795268017578] , $maxDistance : 50 } ,$or:[{"uid":"at"},{"myList.$id" :ObjectId("4fdeaeeede2d298262bb80") } ] ,"searchTag" : { $regex : "Union", $options: "i"} } );
A: By using the QueryBuilder you can create the query you wanted. I have created it as follows.
Quer... | |
doc_5058 | Receives the data and sorts it to the other functions:
function sortAndStore(data) {
var images = data.data,
pagLink = data.pagination.next_url;
var newImages = [];
for (i = 0; i < images.length; i++) {
var link = images[i].link,
standardRes = images[i].images.standard_resolu... | |
doc_5059 | server_date=2020-04-18T17:26:33.150;
current_date=2020-05-07;
var days=server_date - current date;
Json Api "CLMM_LAST_ACTIVITY_DT": "2020-04-18T17:26:33.150",
A: you can use difference method of dataTime.
following code help you more.
String server_date = "2020-04-18T17:26:33.150";
DateTime currentTime = DateTime.n... | |
doc_5060 | "repositories": [
{
"type": "vcs",
"url": "ssh2.sftp://example.org",
"options": {
"ssh2": {
"username": "composer",
"pubkey_file": "/home/composer/.ssh/id_rsa.pub",
"privkey_file": "/home/composer/.ssh/id_rsa"
}
... | |
doc_5061 | I do:
HttpResponse(img.image, content_type=magic.from_file(img.image.path, mime=True))
It is displaying image fine, however, it is not cached in browser. I tried adding:
location /image {
uwsgi_pass django;
include /home/tomas/Desktop/natali_reality/uwsgi_params;
expires 365d;
}
But it doesn't work. Is there... | |
doc_5062 | I referred to the developer page of Google but i got confused as this is my first project.
I haven't tried the Google APIs.Thanks!!!!
A: Google+ Sign-in for Android
https://developers.google.com/+/mobile/android/sign-in
There are also two other Java libraries that you might consider for this purpose:
https://github.co... | |
doc_5063 | Is there a way to create a core dump in cygwin for something like this? I have looked around and seen suggestions of using userdump.exe or winDbg, but I haven't used either and they both seem to be for .exe files and I'm running a python script.
UPDATE:
A file named "python2.7.exe.stackdump" is created with the followi... | |
doc_5064 | http://localhost/Symfony/web/app_dev.php/clearance/new?projectId=6
I want now to set projectId in the form to 6.
Here is my controller code
public function newclearanceAction(){
$request = $this->getRequest();
$id = $request->query->get('projectId');
echo $id; //this works, but how to send it to the for... | |
doc_5065 |
Is there a function in matplotlib that allows to save larger area than the standard area of the figure, so I can save my figure with the legend, like below?
A: bbox_inches='tight' should do the trick:
from matplotlib import pyplot as plt
plt.savefig('figure.png', bbox_inches='tight')
bbox_inches:
Bbox in inches. ... | |
doc_5066 | The DB starts with a login form that sets a TempVars!CurrentSecurity.Value based on the user logged in (as Admin or common User).
All the other forms have a Form_KeyDown event that will call a module where there is a function/sub that has to change the behavior of F11 (hide/show the navigation pane) depending from the ... | |
doc_5067 |
A: Assuming you are talking about shadowing with names, the Java Language specification says this
Some declarations may be shadowed in part of their scope by another
declaration of the same name, in which case a simple name cannot be
used to refer to the declared entity.
and gives this example
class Test {
... | |
doc_5068 | - (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
{
[[NSNotificationCenter defaultCenter] postNotificationName:localReceived object:self userInfo:notification.userInfo];
// Set icon badge number to zero
application.applicationIconBadgeNum... | |
doc_5069 | func checkButton() -> Bool { return !self.appReference.buttons["ButtonA"].isHittable }
How do I continuously ping this function every x seconds until the result is true or a defined timeout expires. I'm new to Swift, but I could achieve the same objective in Java using Awaitility.
Something like
var counter = 0
while ... | |
doc_5070 | <div>
<div>
% if( !$something ) {
<strong><% $title %></strong>
% }
</div>
</div>
Any idea how I can tell Vim to ignore the % at the beginning of the line and indent like it wasn't there?
I'm using https://github.com/aming/vim-mason to support the mixed Perl/HTLM syntax, but I don't thi... | |
doc_5071 | Fullcalendarextern.js (the part for the draggable events):
$(document).ready(function() {
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
$('#external-events div.external-event').each(function() {
var eventObject = {
t... | |
doc_5072 | One form that users input details of customer complaints - fields on this form include input of customer reference and defaults to first Customer in Customer list, selection of complaint type list box which also defaults to first in list and selection of financial year list box which defaults to current year. Users wa... | |
doc_5073 | How can I get a list of all of the urls in a website using Javascript?
A: Using collections
Links: document.links (href)
Images:
document.images (src)
Using DOM
document.getElementsByTagName('img')
Bookmarklet:
Live Demo
(function(){
var imgs = document.getElementsByTagName('img'),t=[];
for (var i=0, n=imgs.lengt... | |
doc_5074 | This is my service
public class LocationService extends Service implements
GoogleApiClient.ConnectionCallbacks,
GoogleApiClient.OnConnectionFailedListener,
LocationListener {
private static final String TAG = "LocationService";
// use the websmithing defaultUploadWebsite for testing and then check your
//... | |
doc_5075 | The problem is, I can't see what error gcc gave. It looks like stderr is either ignored or stuffed into a logfile somewhere.
I thought I might be able to discover the gcc/stderr output if I copy that command to a terminal window and run it, but it won't compile because some of the files on the command line were temp fi... | |
doc_5076 | alter database SSDPrototypeV3 set offline with rollback immediate
restore database SSDPrototypeV3
from disk = N'C:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\Backup\dustinepogi.bak'
alter database SSDPrototypeV3 set online
when i run this on my application, it successfully restores my db . but when i ... | |
doc_5077 | I want to extend this to match digits in parentheses followed by a space followed by a string which comes from a variable. I know that I can crate a RegExp object to do this but am having trouble understanding which characters to escape to get this to work. Is anybody able to explain this to me?
A: When you do not use... | |
doc_5078 |
A: <% include file="target.jsp" %> will inline the source of target.jsp into your page, and then the whole thing will then be evaluated as a single JSP. This is done at JSP compile time. This can be highly optimized by the container, and can have side-effects. For example, if you change the content of target.jsp, the ... | |
doc_5079 | This is really appreciated. Thanks!
A: The only* way to do client-less Lync in the browser is with UCWA. Right now,UCWA is only IM/P but voice/video is coming by the end of the year. Everything else (apart from Lync Web Access obv) requires the client to be on the machine.
*you could write a web proxy to a UCMA servic... | |
doc_5080 | http://www.goproblems.com/test/wilson/wilson-new.php?v1=0&v2=0&v3=0&v4=0&v5=2
PHP Source: http://www.goproblems.com/test/wilson/wilson-new.php.txt
However, I cannot seem to get the same numbers as in the php example.
Where the second 2 is the total ratings
Where the first 2 is the sum rating for a rating of 5 which I ... | |
doc_5081 | const punctuationCaps = /(^|[.!?]\s+)([a-z])/g;
A: You can match the D.C. part and use an alternation using the 2 capturing groups that you already have.
In the replacement check for one of the groups. If it is present, concatenate them making group 2 toUpperCase(), else return the match keeping D.C. in the string.
... | |
doc_5082 | pt is defined in the script with a default, I assume that's the best/only way to define a number.
screen plane_seat():
imagemap:
ground "plane.png"
hotspot(165, 800, 155, 221)
if pt == 1:
jump pbathroom_event
else pass
But the error I get is:
u'jump' is not a keyword argument or valid child fo... | |
doc_5083 | Currently when I refresh it checks all of my checkboxes, not just the one I checked.
Here is how my inputs are set up:
<input type="checkbox" name="filters" ng-click="includeBrand('Brand A')" />Brand A
and here is my function that should keep the same ones checked:
$(function () {
var data = localStorage.getItem("... | |
doc_5084 | RuntimeError: size mismatch, m1: [5 x 10], m2: [5 x 32] at /pytorch/aten/src/TH/generic/THTensorMath.cpp
I looked at similar questions but they are image related and suggest flattening the input, I tried them with no luck.
I'm using Python 3.6.8 and torch 1.1.0
code sample:
state = [[307, 1588204935.0, 1.0869, 1.08708,... | |
doc_5085 | My question is: How can we inherit this dashboard to customize it?
For example, I want to add a button which helps clone the dashboard to another user.
It seems that this dashboard is not a usual FormView.
A: You can't inherit dashboards in Odoo 8.because dashboards is work like views container not usual view if you w... | |
doc_5086 | self.tableView = ({
UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
tableView.translatesAutoresizingMaskIntoConstraints = NO;
tableView.scrollEnabled = NO;
tableView.allowsSelection = NO;
tableView.dataSource = self;
tableView.delegate = self;
tableView.backgroundCol... | |
doc_5087 | For example:
class User extends Model {
public function details()
{
switch($this->account_type) {
case 'staff': return $this->hasOne(Staff::class);
case 'student': return $this->hasOne(Student::class);
case 'parent': return $this->hasOne(ParentUser::class);
... | |
doc_5088 | Console.WriteLine(System.Security.Principal.WindowsIdentity.GetCurrent().Name);
Console.WriteLine(Environment.UserName);
Console.WriteLine(System.Security.Principal.WindowsIdentity.GetCurrent().User); //GUID
Console.WriteLine(Environment.GetEnvironmentVariable("USERNAME"));
...tries give me back the current user who r... | |
doc_5089 | The way I call the maintenance function is with a let. This seems like a weird way, to do this it requires creating an unused variable. Should I instead return a sequence with the call to admin:check-collections-exists being the first item in the sequence then the subsequent processing being the second element? Just lo... | |
doc_5090 | $ ./console tests/react-test.red
*** Runtime Error 32: segmentation fault
*** at: F6B4E33Eh
ldd console does not report missing libraries. The same binary works OK in 32-bit Debian.
What can be the problem?
When I add system/view/debug?: yes line to tests/react-test.red, there is some debugging info about View events... | |
doc_5091 | So I made a completely new program with only the necessary code and it does the same thing.
Can someone explain me why it does it and if we can resolve this problem?
import pygame
screen = pygame.display.set_mode((800,600))
pygame.display.set_caption('The Test Program')
running = True
update_counter = 1
while runn... | |
doc_5092 |
A: Assuming you have a predicate do/1 which either fails or succeeds, this would be the code:
do(f) :- fail.
do(t) :- true.
writeyesno(X):-
( do(X)
-> write("yes")
; write("no")
).
The block (a -> b ; c) is an if-then-else-block: if a, then b else c.
Queries (tested with SWISH):
?- writeyes... | |
doc_5093 | mvn package
After this i need to change config.properties in .jar file via command line
How can i do that?
A: https://docs.oracle.com/javase/tutorial/deployment/jar/update.html
Command line:
jar uf yourfile.jar dir{optional}/config.properties
| |
doc_5094 | The problem is while displaying a text output from ckeditor are shown as html tags in my website because of the effect of htmlentities() i used.This is the output i am getting in my website,
<p><strong><span style="color:#008080">Superhero</span></strong></p>
So the look of website is damaged.I want to show the ckedit... | |
doc_5095 | (1) Throughout our projects, we use over 100 "common" JARs (log4j, junit, commons-cli, etc.). Do we have to write the ivy.xml ("module descriptor") files for all of them, or are there generic ones I can find in the ibiblio (or other) repo? To force your users to write their own ivy files for each dependency sounds pret... | |
doc_5096 | I followed all the steps from the "Devise in an engine" guide on the devise wiki. The problem i'm running in to is that i can't use functions like 'current_user' and 'new_user_session_path' in the controllers of my main applications.
The error i'm getting in the main application is:
Showing .../main_app/app/views/shar... | |
doc_5097 | ||
doc_5098 | Here is the code I used.
In:
data_random1 = runif(100,1,100)
data_random2 = runif(100,1,100)
cd1 = data_grouped1
cd2 = data_grouped2
smth_ln = lowess(cd1,cd2)
dis = smth_ln$y - cd2
data_frame = data.frame(cd1,cd2,dis)
f = c()
y = c()
ifelse(data_frame$dis >= 0, f = c(f,data_frame$dis),y = c(y,data_frame$dis))
This gen... | |
doc_5099 | It is certainly possible with TreeViews:
myTreeView.BeginUpdate();
try
{
//do the updates
}
finally
{
myTreeView.EndUpdate();
}
Is there a generic way to do this with other controls, DataGridView in particular?
UPDATE: Sorry, I am not sure I was clear enough. I see the "flickering", because after single edit t... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.