id stringlengths 5 11 | text stringlengths 0 146k | title stringclasses 1
value |
|---|---|---|
doc_23493600 | npm install -D @angular/cli
npm i --save-dev @nativescript/schematics
But they did not work for me.
I really do not know the problem of this dependency and why always the problems is @schematics for me
I am running:
Angular 10.0.1
npm 6.14.5
nativescript 6.7.4
Thanks for any help
enter image description here
A: ... | |
doc_23493601 | What I had before grid:
I want my layout to look like:
Where the colors are component type and the letter marks different props. The surrounding black square marks the parent component wanted size.
What I actually get with grid is:
My code is:
<section id="dashboard">
<div id="dashboard-title"></div>
<app-st... | |
doc_23493602 | function whatever(arg) {
eval(arg) + '_group' = [];
}
The purpose is to have only 1 function instead having three with basically the same content but with different variable names.
At the end I want to have something like:
a_group = [];
b_group = [];
Doing this way, I'm getting the error:
ReferenceError: Invalid le... | |
doc_23493603 | <div class="row">
<article>Article One</article>
<article>Article Two</article>
<article>Article Three</article>
</div>
<div class="row">
<article>Article Four</article>
<article>Article Five</article>
<article>Article Six</article>
</div>
Below is my PHP. This is what I currently have, however an extra ro... | |
doc_23493604 | The widget is a table that displays some rows from a table (Model) "Xyz"; some of the rows (according to user permissions) are editable (the user can change their value).
What is the best way to implement such a (simple) thing (I'm a newbie with CakePHP)?
In particular:
*
*in which file should I put the presentation... | |
doc_23493605 | Heres a shortened version of my code
public class DataAccessHelper : DataContext
{
public static DataContext db;
public Table<CronJob> CronJob;
public Table<SongCronJob> SongCronJob;
public DataAccessHelper(string connection) : base(connection) { }
}
[Table(Name = "cron_jobs", )]
[InheritanceMapping(... | |
doc_23493606 | <link rel="stylesheet" href="css/main.css" type="text/css">
<link rel="stylesheet" href="css/min480.css" type="text/css">
<link rel="stylesheet" href="css/max480.css" type="text/css">
In Safari (Mac and Windows) the styles from the second (and third) CSS file are not being applied. However, its working fine on Chrome,... | |
doc_23493607 | $(document).ready(function(){
setTimeout(function() {
$('.bxslider').bxSlider();
}, 5000);
});
I've tried various suggestions from various websites but none is working for me....
This is the result I am getting
| |
doc_23493608 | Basically we split them according to our main entities in the solution. Those entities can work independently quite well but there's still some dependencies between them, which involves update a set of microservices when an entity from another microservice is modified.
We tried to tackle this challenge through differen... | |
doc_23493609 | If the join result gives me 3 results, the string that the group_concat multiply the group_concat total three times...
code:
cb.builder.function("group_concat", String.class, cb.joinDocumentWithSigners.get("email")),
The join select with DocumentSigners:
The criteria result:
marinafake@contratos.com,testemunha_fake@... | |
doc_23493610 | All I could find on my search was how to make specific elements inside the image opaque, but I couldn't find anything regarding the background.
I know how to make the circle itself opaque/transparent, but not the background.
What do I need to add to make everything behind the circle opaque?
This is how the picture look... | |
doc_23493611 | This is assuming I do not have filters/ids.
I just want to view all of the instances of a resource (not created via terraform)
If that is not possible,
How do I view all the resources with the filter of same tag.
data "aws_eip" "by_tags" {
tags = {
Env = "DEV"
}
}
Terraform errors with
Error: multiple Elastic... | |
doc_23493612 | I have an ArrayList that looks like such:
[0] Document 1
[1] Document 1
[2] Document 2
[3] Document 3
[4] Document 3
[5] Document 3
[6] Document 4
I need to use Bubblesort to get a distinct list that looks like this (sorted by the number of occurences each document had in the original list):
[0] Document 3
[1] Documen... | |
doc_23493613 | Can you suggest how this can be done? I have no constraints on the assignment other than that it be partial.
A: Z3's partial model mode are just for models of functions. For propositional formulas there is no assurance that models use a minimal number of assignments. On the contrary, the default mode of SAT solvers i... | |
doc_23493614 | Fail: Execution of ‘hadoop fs -mkdir rpm -q hadoop | grep -q "hadoop-1" || echo "-p" /apps/hive/warehouse /user/hive && hadoop fs -chmod 777 /apps/hive/warehouse && hadoop fs -chmod 700 /user/hive && hadoop fs -chown hive /apps/hive/warehouse /user/hive’ returned 1. mkdir: Failed on local exception: com.google.protobuf... | |
doc_23493615 | {
id: 1,
country: {
code: 'GB',
name: ''
}
}
The country code is stored in the database, but the name is not. However, there is another application that requires the country name rather than the code....
So, when editing this model I have a dropdown that has a list of countries that has bot... | |
doc_23493616 | use overload
'&{}' => \&_some_sub;
sub some_sub {...}
If I dump the symbol table of the package that created the object in question I see the following:
[
"new",
"import",
"((",
"(&{}",
"ISA",
"__ANON__",
"BEGIN",
]
Does finding (&{} in the symbol table always mean that a sub deref methd exists? an... | |
doc_23493617 | When I go through the LLVM's API, I have a naive question:
what does the "materialize" mean in llvm GlobalValue.h
in the doxygen:
http://llvm.org/doxygen/classllvm_1_1GlobalValue.html#ac1b5643f40dd3c7b92a548027eb13de0
it says:
Error GlobalValue::materialize ()
Make sure this GlobalValue is fully read.
But, what d... | |
doc_23493618 | String Str1 = "A C";
String Str2 = "A B C";
Str2.Contains(Str1); //It will return False ,Contains append % at Start and End of string
//Replace space with %
Str1 = "%A%C%";
Str2 = "%A%B%C%";
Str2.Contains(Str1); //Want it to return True ,
We do have Contains,StartsWith,EndsWith methods for comparison, But what my r... | |
doc_23493619 | commons.js
export const Images = new FS.Collection("images", {
stores: [new FS.Store.GridFS("images", {path: "~/Descargas"})]
});
server.js
import '../imports/api/commons.js';
| |
doc_23493620 |
A: Marmlade compiles against old version of iOS SDK. I guess it is 4.1 or 4.3
iPhone 5 screen is not supported right now. Marmalade can't distribute iOS SDK. They have frameworks with stubs functions.
c:\Marmalade\6.0.6\s3e\deploy\plugins\iphone\sys_libs\System\Library\Frameworks\
So if they used 4.1 and now they wil... | |
doc_23493621 | Tried following https://developers.arcgis.com/javascript/latest/guide/get-api/index.html#using-bower-for-local-builds but no use. No help from sample application https://github.com/Esri/jsapi-resources.git
*
*Bower installs arcgis-js-api
*I setup a dojoConfig file
*npm install
*bower install
*grunt build => FAIL... | |
doc_23493622 | from langdetect import detect
from google_trans_new import google_translator
#simple function to detect and translate text
def detect_and_translate(text,target_lang='en'):
result_lang = detect(text)
if result_lang == target_lang:
return text
else:
translator = google_translator()
... | |
doc_23493623 | The number may be used in some other formulas. Is it right way to round this number suppose to ten decimal places to zero '0'?
It's all right if this number will be used just in addition operation but it will give wrong result in multiplication operation.
How right way to do it?
UPD
Why is it need to me? I realized ... | |
doc_23493624 | Function CalcComm(salesdate As Date, salesamount As Double) As Double
If sales_A < 10000 Then
Commission = salesamount * 0.03
ElseIf salesamount >= 10000 And salesamount < 25000 Then
Commission = salesamount * 0.04
ElseIf salesamount >= 25000 Then
Commission = salesamount * 0.06
Else: Commission = salesamount * 0.06
E... | |
doc_23493625 | Now we have new requirement to develop an API. We developed through API Gateway. But this API also should be in same domain, for example https://domain/API should hit API Gateway.
Is this possible to configure in load balancer to forward requests to API Gateway? Or any other approach to achieve this?
A: I think u want... | |
doc_23493626 | Are there any possibilities to do it instead of knowing QPainter size?
EDIT: simple width() and height() works!
A: You have to look at the size of the QPaintDevice attached to the QPainter
painter->device()->width();
| |
doc_23493627 | My desired final output is a simple list, as below:
Selected Entities: {list that's reactive based on entities selected in checkbox input}
My problem is that I do not know how to get the "Selected Entities:" part to only show up once. I have tried several variations, including trying to use the paste function in the ui... | |
doc_23493628 | I suspect the error is the mail app though
function onOpen() {
var submenu = [{name:"Report", functionName:"responseMech"}];
SpreadsheetApp.getActiveSpreadsheet().addMenu('Generator', submenu);
}
function responseMech(){
var response = Browser.inputBox('Report Generator', 'Please enter the ... | |
doc_23493629 | Database is MySQL, language is PHP.
A: select hour(somedate), count(*) from yourtable group by hour(somedate)
If you need all three:
select month(somedate), day(somedate), hour(somedate), count(*) from yourtable group by month(somedate), day(somedate), hour(somedate)
| |
doc_23493630 | Try moving the declaration to before the first use, or renaming the local variable so that it doesn't hide a name from an enclosing scope.
I have also tried calling the overlayEntry.remove function directly to the onPressed fuction by it gives a similar error that overlayEntry can't be referenced before it is declared... | |
doc_23493631 | https://bl.ocks.org/larsenmtl/e3b8b7c2ca4787f77d78f58d41c3da91
everything works fine but at the end:
d3.select(this).select("text").text(y.invert(pos.y).toFixed(2));
I changed it to
d3.select(event.currentTarget).select("text").text(y.invert(pos.y).toFixed(2));
the weird thing happened, the event.currentTarget point... | |
doc_23493632 | Obviously one solution is to simply reference every single library from the Windows application however we would like to avoid any unnecessary referencing.
How can we include additional files into our build folder?
This is a C# project.
A: You can always use the pre-build or post-build events in the project settings t... | |
doc_23493633 | When I try to allocate 8bytes (16bytes work), my program crashes at the third 8byte-allocation with the error Exception thrown: read access violation. this->**head** was 0xFFFFFFFFFFFFFFF7.
When I run the code outside my other project in isolation it works as expected. But I'm guessing that I might have some undefined ... | |
doc_23493634 | But now while testing i found that if i stop the location services geofence stops working as EXPECTED. Further when i start the location services again my previously added geofence should again start working but no notifications are generated and it seems the geofence are automatically removed once the location service... | |
doc_23493635 | id total_amount date_order
1 12.000 2018-09-01
2 10.000 2018-09-01
3 5.000 2018-09-03
4 2.000 2018-09-05
I have query SUM data group by date:
select SUM(total_amount) as 'total', DATE(date_order) as 'date'
from Order
where date_order >= '2018-... | |
doc_23493636 | var todolist = from i in _context.ActPlan
where i.Expected_Date > DateTime.Now
select i;
But i want to retrieve list of the items that are planned for the upcoming 45 days only (all items between the current date and till the upcoming 45 days) but certainly not all future ... | |
doc_23493637 | I would like to know the cropping amount so I can find the actual zoom level.
The value of CaptureRequest.CONTROL_ZOOM_RATIO does not change when stabilization is on or off.
Is it possible to find the amount of horizontal and vertical image cropping for the active stabilization mode?
Or are there any alternatives to CO... | |
doc_23493638 | Unfortunately none of the plugins are loaded or working.
From what I can see the following import needs to be added to app.module.ts and should import all available plugins.
// Import all Froala Editor plugins.
import 'froala-editor/js/plugins.pkgd.min.js';
I can also see the default toolbarButtons option is honoured ... | |
doc_23493639 | public string GetSubscriptionCode()
{
return String.Format(Name.ToLower().Replace("", "-"));
}
Than when I want to call that method on the view i am getting an error that there is no such method in my model:
<div id="@Model.GetSubscriptionCode()"></div>
Any ideas?
Update:
Ooops, I mixed up my ... | |
doc_23493640 | gives bash script to create sail container for latest laravel 8 version.
I took this script and tried to customize it for 7.* version, all same except this:
docker run --rm
-v $(pwd):/opt
-w /opt
laravelsail/php80-composer:latest
bash -c "composer create-project laravel/laravel my-app \"7.*\" && cd my-app && php ./... | |
doc_23493641 |
strong text
**I am using Broadcast Receiver in Incoming Call.But My question is that Receiver did not work after application kill.
A: I assume you mean application is force-killed. Then this is expected behavior. Please refer this discussion for clearer understanding - BroadcastReceiver doesn't receive anything aft... | |
doc_23493642 | has the developer I tried writing to my timeline with the code below through a web service and I was able to write to my timeline, my question is this: must I create an action and object that must be submitted for approval before other users can use my app to write to their timeline? Because permission is not granted w... | |
doc_23493643 | set @arbitraryMin = 'two weeks ago';
set @myDesiredMinimumTime = 'thisMorning';
select distinct order, box from db.table
where scantime >= @arbitraryMin
having min(scantime) >= @myDesiredMinimumTime
Essentially, we have a system where it is possible that there are multiple scans for a distinct box/order combo. I onl... | |
doc_23493644 | Thx in advance
I am using http://sourceforge.net/projects/phlickr/ class to work with it:
$flickr = new Flickr($this->FLICKR_CONSUMER_KEY, $this->FLICKR_CONSUMER_SECRET);
$flickr->authenticate('read');
$oauth_token = $flickr->getOauthData(Flickr::OAUTH_REQUEST_TOKEN);
$oauth_token_secret = $flickr->getOauthData(Flickr... | |
doc_23493645 | echo trim($s, " "); //out put:xyz
$ss = " xyz pqrs" ;
echo trim($ss, " "); //out put:xyz pqrs
// i want out put:xyz pqrs
Hi Friends I got recently trim($search_string, " "); function .it is removing last and first word spaces but word middle end user given two spaces or more spaces how to remove those spaces we w... | |
doc_23493646 | stream = BinLogStreamReader(connection_settings=mysql_settings,
server_id=1,only_schemas='tpch',
log_file='mysql-bin.000001',log_pos=1
)
I have the parameters log_file='mysql-bin.000001',and log_pos=1,because I have no idea where the e... | |
doc_23493647 | For the subject, we must install two programs "Oracle SQL Developer" and 'Oracle Database Express Edition". There is a Mac version Oracle SQL Developer but only Windows or Linux for Oracle Database Express Edition. I tried to install the latter with Docker but keep running into issues. Mainly when I start it there are ... | |
doc_23493648 | Say I have an Object class that contains only a map<fs::path, fs::path>, as well as the required serialize function for cereal:
struct Object
{
map<fs::path, fs::path> _map;
template<class Archive>
void serialize(Archive & archive)
{
archive(_map);
}
friend ostream& operator<<(ostream&... | |
doc_23493649 | Can I make the id field unique (so that Drupal would prevent me from inputting the same id more than once by mistake)?
A: You could try the field validation module. It allows you to set a field as unique on per content type basis.
Alternatively, if you have access to/are a developer, then it's quite simple to alter th... | |
doc_23493650 | I have an accordion with several list items and the divs which expand when each list item is clicked on. I'm using the accordion with some ajax functionality which actually removes the a list item when an action is committed, but I don't need to explain that, the most important thing to know is that elsewhere on the pa... | |
doc_23493651 |
*
*asPredicate
*asMatchPredicate
I am trying to understand the difference between the two and when I would want to use one over the other?
A: *
*Pattern.asPredicate will return true if any part of the input string matches the Regular expression. You should use this method if you're testing some larger body of text... | |
doc_23493652 | I am modifying some codes from an existing program.
Before the program begins, they initialize all the dropdown list and store it in a session.
Is it okay to store the list of my dropdown menu in a session?
Note: the list is from the database.
SAMPLE CODE:
HttpSession session = request.getSession();
... | |
doc_23493653 | names = ['bar', 'chocolate', 'chips']
weights = [0.05, 0.1, 0.25]
costs = [2.0, 5.0, 3.0]
unit_costs = [40.0, 50.0, 12.0]
I have treated these lists as "columns" of a table and wish to print them out as a formatted table that should look something like this:
Names | Weights | Costs | Unit_Costs
----------|------... | |
doc_23493654 | When I search the database for rows between dates, it wasn't pickup up rows on the last day so I added a time to my BETWEEN query: WHERE date BETWEEN '2021-01-01 00:00:00' AND '2021-01-31 11:59:59' to include rows on last day.
As soon as I add the time part for the Between query for the date/time, it appears to load th... | |
doc_23493655 | I am using VS2010 under Windows 7 and have compiled the squirrel libraries and sqrat using the unicode character set with debug configuration.
The error I get is in \sqrat\sqratclass.h, line 81:
error C2664: 'Sqrat::Class<C>::InitClass' : cannot convert parameter 1 from 'const char *' to 'const Sqrat::string &'
doe... | |
doc_23493656 | I need to get same results as this query:
var test = this.DbContext.Countries.Select(t => new
{
t.Id,
t.ISOCode,
lookup = t.Translates.Where(t2 => t2.LangISOCode=="ENG").Select(t2 => t2.Title).FirstOrDefault()
}).ToArray();
I get this far:
this.DbContext.Countries.Select("new(Id,ISOCode)").ToDynamicArrayAs... | |
doc_23493657 | i am unable to play video from my project folder...
i'm trying to make an app with 3 to 4 static videos which will play on device without internet connection
but i unable to do this
<div class="modal transparent full screen-player" ng-click="closeModal()">
<video ng-src="img/test.mp4" class="centerme" controls="con... | |
doc_23493658 | I want the first column to have a fixed width, and that the second column to use the rest of the space. My problem is that, when the right column has a long text and I resize the size of my browser window (as if I were using a cellphone, for example), the right column is moved down.
This is the intended behavior:
-----... | |
doc_23493659 | export STANFORD_MODELS="/home/milenko/stanford-ner-2018-10-16/classifiers/english.all.3class.distsim.crf.ser.gz"
export STANFORD_MODELS="/home/milenko/stanford-ner-2018-10-16/classifiers/english.conll.4class.distsim.crf.ser.gz"
export STANFORD_MODELS="/home/milenko/stanford-ner-2018-10-16/classifiers/english.muc.7class... | |
doc_23493660 |
A: Use built-in date functions unix_timestamp(string date, string pattern).
The unix_timestamp covert a string date to unix_timestamp as int, which is comparable.
Assume your table name is t and the time column is tt.
select max(unix_timestamp(tt, 'yyyyMMdd')) from t
would find the max unix_timestamp for you, which ... | |
doc_23493661 | *
*I need a open source web crawler developed in java with incremental crawling support.
*Web crawler should be easily customized and integrated with solr or elasticsearch.
*It should be an active one which is developing further with more features.
*Aperture is one of a good crawler, it has all features i mentioned... | |
doc_23493662 | As a test case, I have used the following list as a corpus of words.
words= ['A', 'A', 'A']
vect = TfidfVectorizer(min_df =0)
dtm = vect.fit_transform(words)
df_tf_idf = pd.DataFrame(dtm.toarray(), columns=vect.get_feature_names())
However, I get the following error
ValueError: empty vocabulary; perhaps the documen... | |
doc_23493663 | The offending HTML and CSS:
<html>
<head>
html {
width: 100%;
height: 100%;
margin: 0;
}
body {
margin: 0;
width: 100%;
height: 100%;
position: relative;
background-color: #CCCCEF;
}
... | |
doc_23493664 | <?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
<config>
<filepath>/mnt/sdcard/Audio_Recorder/anonymous22242.3gp</filepath>
<filename>anonymous22242.3gp</filename>
<annotation>
<file>anonymous22242.3gp</file>
<timestamp>0:06</timestamp>
<note>test1</note>
</annotation>
<annotation>
<file>anonym... | |
doc_23493665 | When in combobox 1 (=Rownumber = 1) AA is selected then at runtime combobox2 has to be filed with some value.
This value is comming from a DataTable.
When some value is selected in combobox2 (Also RowNumber = 1), then at runtime combobox3 (also RowNumber = 1) has to be filled with some value also comming from a DataTa... | |
doc_23493666 | Node:
let s3 = new AWS.S3();
s3.config.update({
accessKeyId: process.env.VIDEO_ACCESS_KEY,
secretAccessKey: process.env.VIDEO_SECRET_KEY
})
let videoId = await Video.createVideo()
let params = {
ACL: "public-read",
Bucket: process.env.BUCKET_NAME,
ContentT... | |
doc_23493667 | models/userStore.js
index.js
I am exporting user information in index.js by using following command.
const UserStore = require('./models/UserStore');
It is working fine in my local machine. When i upload in ec2 , i am getting following error.
module.js:341
throw err;
^
Error: Cannot find module '../models/User... | |
doc_23493668 | namespace Vibranium;
enum GameObject_Type:uint { STATIC = 0 }
table GameObjectDatabase
{
gameobjects:[GameObjectsTemplate];
}
table GameObjectsTemplate
{
id:int;
name:string;
prefab:string;
type:GameObject_Type;
position_x:float;
position_y:float;
position_z:float;
rotation_x:floa... | |
doc_23493669 | My Resource group contains an AppServicePlan, an AppService, SQL Server & SQL Database, a KeyVault & SignalR.
Locally everything works, the AppService is running, AppServicePlan is Ready (1App/0Slots),
Connected Services for SignalR & SQL are configured (in the menu you get when right-clicking WebProject > Publish). Ke... | |
doc_23493670 | I've tried a lot of solution but nothing function in my app.
After rotaion, when I start a new activity, it set defaul locale.
Please help me, I'me desperate and i'm tried a lot of solution! :(
This is my Locale Activity:
ImageButton inglese = (ImageButton) findViewById (R.id.inglese);
ImageButton italiano ... | |
doc_23493671 | The application is an MVC application that has 3 layers, and is being run through Swagger:
Rest
Services
DAL
In the service layer DependencyConfig, I do the following in the Register Method, the context is registered:
container.RegisterWebApiRequest<DbContext>(() => new LocalContext("name=DefaultConnection"));
So f... | |
doc_23493672 | <script language="javascript" type="text/javascript">
/* Visit http://www.yaldex.com/ for full source code
and get more free JavaScript, CSS and DHTML scripts! */
<!-- Begin
function s(num, val) {
amount = num * 1; // amount is the num or NaN
sum = (!num ? 0 : num) * val; // the sum for that bill or coin
if (isNaN(am... | |
doc_23493673 | <html>
<body>
<!--External table-->
<table border="1px">
<tr>
<td>
//price and quantity fields
<input type="text" name="price" label="Price" id="Pri">
<input type="text" name="quantity" label="Quantity" id="Qty">
</td>
... | |
doc_23493674 | I am writing my code in Pyspark.
try:
df_final.write.partitionBy("col1","col2","col3").mode("append").format("orc").save(output)
exception:
spark.stop()
I would like to stop spark after sometime in the above code.
Is there a way to gracefully shutdown the spark session after sometime??
A: I would suggest use the of... | |
doc_23493675 | new XElement(n + "Linestring", new XElement(n + "Coordinates", lat+","+lon))))));
code:
protected void Page_Load(object sender, EventArgs e)
{
//String[] values = {"12.1", "2.1","3.1","2.1" };
String values = "12.1,2.1,3.1,1.1";
String[] latLon = values.Split(',');
SqlConnection sq... | |
doc_23493676 | <text transform="matrix(1 0 0 1 581 207)" font-family="'Arial'" font-size="120">TEXT</text>
In order a plugin to work I need to create "x" and "y" attributes referring to the two last values of the matrix() . i.e 581 and 207
How to get the values in order to do something like jQuery(this).attr("x", *theValue*) ?
A: T... | |
doc_23493677 | #!/bin/bash
npm test |& grep -v '[HPM]'
if [[ $? -ne 0 ]]; then
...
When trying to run this script locally I get this error:
test.sh: line 3: syntax error near unexpected token `&'
test.sh: line 3: `npm test |& grep -v '[HPM]''
A: The |& syntax is using a non-standard token which is recognized by bash but not all ... | |
doc_23493678 | https://oauth.vk.com/authorize?client_id={clientId}&redirect_uri={redirectUri}&scope=327680&response_type=token
Standalone application.
Trying to fulfill the request groups.getRequests
https://api.vk.com/method/groups.getRequests?group_id={groupId}&access_token={accessToken}
I get the answer:
{"error":{"error_code":1... | |
doc_23493679 | include '../../config/settings.inc.php';
include '../../config/defines.inc.php';
include '../../config/config.inc.php';
$api=$_REQUEST['api_key'];
$install=$_REQUEST['installtion_id'];
$percentages=$_REQUEST['dep_per'];
$package=$_REQUEST['dep_plan'];
$res = Db::getInstance()->insert('pay4late... | |
doc_23493680 |
import numpy as np
import matplotlib
matplotlib.use('macosx')
import matplotlib.pyplot as plt
im = np.random.rand(2856, 4290)
light_curve = im[1000, :]
fig = plt.figure(1, figsize=(10,10))
ax1 = plt.subplot(2,1,1)
ax1.imshow(im, cmap='gray', origin='lower')
ax2 = plt.subplot(2,1,2)
ax2.imshow(im, cmap='gray', origin... | |
doc_23493681 | Shortly i need uniqe db context with every request.
private static AppContext _db;
public static AppContext Create()
{
//i need uniqe instance every request.
return _db ?? (_db = new AppContext());
}
A: i've solved it with ninject
_kernel.Bind<AppContext>().ToSelf().InSingletonScope();
| |
doc_23493682 | I can retrieve the values I need from the dropdown list data item, and i can set the values in the grid's edit row using the dropdown list.
The following code works fine as long as A, B, C, and D are editable... BUT... these values should not be editable. The values in these cells should be driven strictly by the valu... | |
doc_23493683 | Obviously this depends on two things: 1) The customer's name entered correctly on the database record and 2) The user entering the customer's name correctly in the search box.
What I'd like to do is have the user enter some text, the system then return the necessary data if there is a match or (more importantly), show ... | |
doc_23493684 | I know that an asynch AJAX is non-blocking. However, what I don't know is what happens to the AJAX request if the user leaves the page before the request is completed. Can someone help me with this?
If it matters, the service is a C# service.
A: When a client leaves the page, AJAX calls will be aborted. The server wil... | |
doc_23493685 | Configuration c = new Configuration();
c.configure("hibernate.cfg.xml");
SessionFactory sf = c.buildSessionFactory();
Session s = sf.openSession();
//Transaction t = s.beginTransaction();
//some code
//t.commit();
A:
Database, or system, transaction boundaries are always necessary. No communication with the... | |
doc_23493686 | ref.child("dinosaurs").orderByChild("height").get().addOnCompleteListener(...);
I kept on wondering why it's not sorting until I realized that childEventListener was used in the documentation. It should've been:
ref.child("dinosaurs").orderByChild("height").addChildEventListener(...);
What is the difference between t... | |
doc_23493687 | var myObj = (function () {
// Private member variables
var privateX;
function setPropX (value) {
privateX = value;
}
function getPropX () {
return privateX;
}
function init() {
privateX = "Initial value privateX";
}
init();
// Public API
return {
// Methods
"setPropX": set... | |
doc_23493688 | I have also tried an OUTMODEL and INMODEL code with similar results.
proc logistic data=train plots(only)=(effect oddsratio);
class Gender Geography;
model Exited(event="1") = &cat &interval / selection=stepwise clodds=pl slstay=.05 slentry=.05;
score data=valid out=churn.churn_pred_sw;
run;
The only warning that I re... | |
doc_23493689 | Note : Using Bitnami-ORO-CRM in Windows
A: You should run message consumer as a background process. The easiest way to do so is:
bin/console oro:message-queue:consume --env=prod
See the installation guide reference https://oroinc.com/orocrm/doc/current/install-upgrade/installation-quick-start-dev/crm#configure-and-ru... | |
doc_23493690 | NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:url]];
NSError *error;
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
A: NSJSONSerialization Class have a method to do exactly this... (EDIT: no it doesn't...)
NSData *data = [NSData dataWithContent... | |
doc_23493691 | n is 2, the sequence will be 112
n is 3, sequence is 112123
n is 5, sequence is 112123123412345
I did come up with a solution
n=5
seq=1
for (i in 2:n){
seq=c(seq,rep(1:n,len=i))
}
I am wondering if there is a way can do it without for loop?
A: Here is one possibility:
n<-5
unlist(lapply(1:n,function(x) 1:x))
## [... | |
doc_23493692 | When i am trying to connect to same site with powershell it is giving below error:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
</head>
<body onload="document.forms[0].submit()">
<noscript>
<p>
<strong>Note:</strong> Since your browser does not support... | |
doc_23493693 | For live prices Im using Bitstamp websockets API. Here is example usage with jQuery - run this snippet, is really live.
var bitstamp = new Pusher('de504dc5763aeef9ff52')
var channel = bitstamp.subscribe('live_trades')
channel.bind('trade', function (lastTrade) {
$('p').text(lastTrade.price)
})
<s... | |
doc_23493694 | Hierarchy is shown here:
https://www.dropbox.com/s/nba8e5t7dvti7os/hierarchy.png
I want to change height of my inner view at runtime based on content (by updating constraint constant) and based on this calculate cell/row height. So, if I have tall content, my row expands, if I have short content, my row becomes smaller... | |
doc_23493695 | I have an SQL Database that has multiple relationships to tables within that database. I've created a DataContext for this database and create a repository of functions used to call it's data.
My question is, because of the relationships (Multiple Linked tables).
Should I create my own class object to hold the results... | |
doc_23493696 | {
_apnsStream.AuthenticateAsClient("gateway.sandbox.push.apple.com", certificates, System.Security.Authentication.SslProtocols.Ssl3, false);
}
I am getting this error "A call to SSPI failed, see inner exception" at the above line while using Moon-Apns dll in my .net web service... can any one suggest me to solve t... | |
doc_23493697 | class MyModel(models.Model):
start = models.TimeField()
finish = models.TimeField()
penalty = models.IntegerField(blank=True, default=0) # penalty in minutes
And the following queryset annotation in admin
def get_queryset(self, request):
qs = super().get_queryset(request)
qs = qs.annotate(
... | |
doc_23493698 | I am opening a new script with the name 'm_0a4'
FitnessFunction = @m_0b4;
NumberOfVariables = 1;
[x,fval] = ga(FitnessFunction, numberOfVariables);%Here I minimize the difference y
I am opening a second new script naming it 'm_0b4'
function y = m_0b4(x)
prompt = 'write it down';
i = input(prompt) %the input value
y = ... | |
doc_23493699 | If I put single link:
https://example.com/file.rar
Replace with
[url=https://example.com/file.rar]Example[/url]
If I put many parts:
https://example.com/file.part1.rar
https://example.com/file.part2.rar
Replace with
[url=https://example.com/file.part1.rar]Example Part 1[/url]
[url=https://example.com/file.part2.rar]... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.