id stringlengths 5 11 | text stringlengths 0 146k | title stringclasses 1
value |
|---|---|---|
doc_23533200 | Thanks!
A: You can use a Data URI Scheme to convert the JSON to an "URL" which can be then downloaded, i.e.
/* Firstly you'll need a javascript library which can encode data to base 64
* http://archive.plugins.jquery.com/project/base64 - jQuery Plugin
* http://www.webtoolkit.info/javascript-base64.html - Collection... | |
doc_23533201 | <VBox fx:id="box" spacing="15" styleClass="sectionStyle">
<StackPane>
<TablePagination fx:id="pagination" StackPane.alignment="CENTER"/>
</StackPane>
</VBox>
nothing appears. But when I do it in code like this:
pagination = new TablePagination(itemTable,items);
StackPane pane = new StackPane();... | |
doc_23533202 | private void doSomething(Object a, Object b){
var myLocalVar = deriveValFrom(a);
if (null == myLocalVar){
myLocalVar = deriveValFrom(b);
}
LOG.debug(() -> String.format("settled on value %s", myLocalVar));
}
The code above does not compile, since myLocalVar is neither final nor effectively final.
c... | |
doc_23533203 | I would like to have my web.config entries customizable per user/machine/environment.
I could have my configurable/changeable entries marked in the web.config and would like those entries overridden by the respective user/environment file and would like to have an order that decides which entries should trump the other... | |
doc_23533204 | TypeError: this.attrs.container is undefined
[Break On This Error]
this.attrs.container.appendChild(this.content);
Please help me out in this..
A: https://github.com/ericdrowell/KineticJS/wiki/Change-Log
What you really have to do is go through this change log and look at what you have in your code vs what's in th... | |
doc_23533205 | if (currentToken) {
$('#fcm_id').val(currentToken);
sendTokenToServer(currentToken);
updateUIForPushEnabled(currentToken);
} else {
// Show permission request.
console.log('No Instance ID token available. Request permission to generate one.');
// Show permission UI.
... | |
doc_23533206 | Sometimes I need to retrieve some rows ordered by date_time DESC, but also need them sorted randomly if there are an exact two or more rows with the exact same time.
This is my query:
SELECT * FROM ads ORDER BY created_at DESC, RAND()
But, I test it and always give ve the same order, even if I manually edit three fiel... | |
doc_23533207 | but i don't get from where it can be change as I don't have xml files
Can anyone please help me to find this?
A: I had to do the same thing in Magento go, so what I did was changed the blocks' position using theme editor and increased the width of main column using css.
A: Go to \app\design\frontend\default\your them... | |
doc_23533208 | Now I have heard of the Service that android has but since my class is already extended, I cannot extend it with Service. Do you know of any solution that I can do to solve this small problem.
Currently my code is as follows:
public class MainActivity extends DroidGap {
public void onCreate(Bundle savedInstanceStat... | |
doc_23533209 | fig, ax = plt.subplots(figsize=(16,8))
y1 = sns.lineplot('game_seconds_remaining', 'home_wp', data=vb, color='#4F2683',linewidth=2)
y2 = sns.lineplot('game_seconds_remaining', 'away_wp', data=vb, color='#FB4F14',linewidth=2)
x = plt.axhline(y=.50, color='white', alpha=0.7)
ax.fill_between(x, y1, y2, where=(y1 > x), c... | |
doc_23533210 | Is it possible to call adb command to click on this view?
I know it's possible to make it click on a specific coordinate, but is it possible to use the ID instead ?
I ask this because I do know that the "Layout Inspector" tool (available via Android Studio) and the "View hierarchy" tool (available via "Android Device ... | |
doc_23533211 | Here is the code snippet:
import {Chart as ChartJS} from 'chart.js';
import { Bar } from 'react-chartjs-2';
import React, { useEffect, useReducer } from 'react';
import Layout from '../../components/Layout';
import { getError } from '../../utils/error';
ChartJS.register(
CategoryScale,
LinearScale,
BarElement,
... | |
doc_23533212 | I thought I'd give wkhtmltopdf (via node-wkhtmltopdf) a try, but it expects a URL.
My current thought (which isn't great) is to expose the HTML via express since I'm already exposing a REST API with this server. While doing this isn't rocket science, it seems pretty complicated to just hand something content from me... | |
doc_23533213 | I have installed IIS Express.
The win7 system is up-to-date.
when I go to tools -> options, I don't see the web options.
any idea?
A: You need VS 2010 sp1 to use 'IIS Express' with Visual Studio. Please check if you have VS 2010 SP1 installed or not.
| |
doc_23533214 | SELECT field1, field2,...fieldN table_name1, table_name2...
[WHERE condition1 [AND [OR]] condition2.....
So I want this search query. Anybody know how to get the final sql query please ?
A: You can get all the files related to the search here in this folder app/code/core/Mage/CatalogSearch/ . Magento search save quer... | |
doc_23533215 | For example if there was a list of 3 reds in the column and 2 blues in the same column it would need to be incremented as red1, red2, red3 and blue1, blue 2. I've been searching but so far have not found anything that works how I need it to.
I have sorted the column and just need to add a number that increments by 1 f... | |
doc_23533216 | I'm trying to create a column layout that has two parts, left and right.
The left side will show console output, the right will contain all the controls (joining channels, commands etc).
I'm having issues creating the two columns. I have a JPanel that is the whole width and height of the window and has a border of 10 p... | |
doc_23533217 | Version #1: my main thought was answering the question (what can/does a customer do?)
Version #2: here I was thinking that methods relating to orders such as(view order, cancel order...) should be defined in the class order too.
A: Cohesion is about related responsibilities and clear purpose. The more different, un... | |
doc_23533218 | I am doing something like:
sudo mkdir /mnt/postgresql
sudo mkdir /mnt/postgresql/space
sudo chown -R postgres:postgres /mnt/postgresql
Then, as the posgres superuser (sudo -u postgres psql), I am using the following command :
CREATE TABLESPACE myspace LOCATION '/mnt/postgresql/space';
I get the following error:
ERROR... | |
doc_23533219 | dropbox.com/s/fpw3obrqcx8ld1q/GrandAverage.RData?dl=0
The part of the code if have to use for this I am using is given below:
set <- GrandAverage[, 5:7];
Beh.Parameters <- function (lambda, alpha, temp) {
u = 0.5 * set$Gain^alpha + 0.5 * lambda * set$Loss^alpha
GambleProbability <- 1 / (1 + exp(-temp * u))
log... | |
doc_23533220 | One of the three protocols to solve the critical section problem is Progress:
Progress is : If no process is executing in its critical section and some processes wish to enter their critical sections, then only those processes that are not executing in their remainder section can participate in deciding which will ente... | |
doc_23533221 | $old_agreement = new \PayPal\Api\Agreement();
$old_agreement->setId("I-G0JJ5A9KMR--");
$agreementStateDescriptor = new \PayPal\Api\AgreementStateDescriptor();
$agreementStateDescriptor->setNote("Cancel the agreement");
try {
$old_agreement->ca... | |
doc_23533222 | {
"ok": true,
"result": {
"code": "694kyH",
"short_link": "shrtco.de\/694kyH",
"full_short_link": "https:\/\/shrtco.de\/694kyH",
"short_link2": "9qr.de\/694kyH",
"full_short_link2": "https:\/\/9qr.de\/694kyH",
"short_link3": "shiny.link\/694kyH",
"full_sho... | |
doc_23533223 | I have done so, but it says that the paragraph is missing, link is missing etc.
Image to be recreated is here
My code so far is this:
<!DOCTYPE html>
<html>
<head>
<title>This page definitely has a title</title>
</head>
<body>
<font face = "Times New Roman">
<h1> <font size="5">This is some text!A level 1 heading with... | |
doc_23533224 |
#include <iostream>
#include <fstream>
using namespace std;
int main(){
ifstream data_base;
data_base.open("database.txt", ios::out);
string name, a;
int b, c, d, e, test=0;
system ("cls");
cout<<"enter name "<<endl;
cin>>name;
while (data_base >> a >> b >> c >> d >> e){
if (name == a) test=1;
}
if (test!=1)
... | |
doc_23533225 |
This is my grid with some controls after it has been animated. Notice the improper rendering of the text and the rectangle. How can I solve this rendering?
UPDATE: Code request by Rachel:
<TextBlock Height="35.667" Margin="73.667,19,0,0" TextWrapping="Wrap" VerticalAlignment="Top" FontSize="32" Foreground="Black" Text... | |
doc_23533226 | ||
doc_23533227 | Document
public virtual string Name { get; set; }
public virtual string Description { get; set; }
public virtual User User { get; set; }
Documentmap
public DocumentMap()
{
Map(x => x.Name);
Map(x => x.Description);
References(x => x.User);
}
User
public virtual stri... | |
doc_23533228 | ADD
Copy files to the image at build time. The image has all the files so you can deploy very easily. On the other hand, needing to build every time doesn't look like a good idea in development because building requires the developer to run a command to rebuild the container; additionally, building the container can b... | |
doc_23533229 | By creating a separate package for these modules and uploading them on PyPI, I could mark such a package as a dependency for the packages I actually want to distribute. These convenience modules are, however, small and of limited use and interest, such that I don't think they warrant distributing as a separate package ... | |
doc_23533230 | of course, i put nextLine and nextInt, i just want to ask how to make netBeans stop and ask me the input.
A: You will see something called output (window) in bottom --> There you will see prompt for input.
If output window is not available there, goto Window menu--> Select output--> ouput
(or) Ctrl+4
A: because you n... | |
doc_23533231 | The permissions on my default compute engine service account are very broad, I would like to create a new service account with much more restricted permissions, e.g. only access to BigQuery, and only read write to certain datasets. How can I set up or change the notebook instances to only have the permissions of this n... | |
doc_23533232 | The standard suggestion is to add this:
namespace System.Runtime.CompilerServices
{
public sealed class ExtensionAttribute : Attribute { }
}
This the approach suggested by more than one Microsoft employee and was even featured in MSDN magazine. It's widely hailed by many bloggers as having 'no ill effects'.
Oh, exc... | |
doc_23533233 | structure(list(id1 = c(1, 2, 3, 4, 4, 4, 4, 4, 4, 4), id2 = c("a",
"b", "c", "d", "e", "f", "g", "h", "i", "j"), b1 = c(NA, NA,
NA, 1L, 1L, 1L, 1L, 1L, 1L, 1L), b2 = c(1, NA, NA, NA, NA, NA,
1, 1, 1, 1), b3 = c(NA, 1, NA, NA, NA, NA, NA, NA, 1, 1), b4 = c(NA,
NA, 1, NA, NA, NA, NA, NA, 1, 1)), .Names = c("id1", "id2", ... | |
doc_23533234 |
class TestCategory(MPTTModel):
name = models.CharField(max_length=100)
parent = TreeForeignKey('self', on_delete=models.CASCADE, null=True, blank=True, related_name='children')
is_active = models.BooleanField(default=True)
created_at = models.DateTimeField(auto_now_add=True)
update_at = models.Date... | |
doc_23533235 | Basically what I want is to use osx + netbeans for this project but it seems to reference java3d methods that are not included in the outdated version of java3d in the mac 1.6 JDK. My first attempt at resolving this issue was to include the java3d 1.5.2 libraries as external jars for the project but it seems netbeans i... | |
doc_23533236 | docker run -d ubuntu:12.04
docker inspect {{containerhash}} | grep ID
// "ID": "d846ae242838de66f12414fbc8807acb3c77778bdb81babab7115261f4242284"
sudo lxc-attach -n d846ae242838de66f12414fbc8807acb3c77778bdb81babab7115261f4242284 -- /bin/bash
This no longer works because of the 0.9.0 switch to libcontainer.
How can w... | |
doc_23533237 | I have coded the first part of creating a map and displaying it and rotating with compass.
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManag... | |
doc_23533238 | [...]<body>
<p>Some Text</p>
<img src="path/nodejs.jpg?">
</body>[...]
And a basic node js function as request callback for server.
fs.readFile(filePath, function(err, content){
if (err) throw err;
// * console.log(content.toString());
var mime = require('mime').lookup(filePath);
re... | |
doc_23533239 | My code:
String userEnteredString = UserEntered.getText();
String userHomeLocal = Tutschedule.userHome;
FileReader dataFile = null;
try {
dataFile = new FileReader(userHomeLocal+"/Users/"+userEnteredString+".data");
} catch (FileNotFoundException ex) {
Logger.getLogger(LoginForm.... | |
doc_23533240 |
ImportError: cannot import name 'QGraphWidget'
I used QtDesigner to make a form and promoted a QGraphicsWidget. I know I did it correctly (I've done it at least 10 times to try and resolve the issue), but the error persists.
I'm using Windows 7, Anaconda, and PyCharm, but I tried running the code in other environment... | |
doc_23533241 | Here is $Arr1
Array
(
[0] => Windows
)
and here is $Arr2
Array
(
[0] => 5.0
)
How would I combine them so that $Arr[0] = "Windows5.0"?
array_merge($Arr1, $Arr2) Adds $Arr2 to be below $Arr1 which is not what I want
A: array_combine may work for you as long as each array is equal length and the keys are valid... | |
doc_23533242 | [OutputCache(CacheProfile = "MyProfile")]
public Result MyControllerAction()....
I have some text in matching view (Views/MyController/MyControllerAction.aspx) that needs to change with each page load, even though the returned page is cached. I think this is also called donut caching.
How can I accomplish this? And w... | |
doc_23533243 | I know that unique indexes and non-unique indexes have differences on performance.
But my question is, will there be any difference on performance if the column has both unique constraint and unique index, and just unique index without a unique constraint?
Another question is, does the column statistics have any affect... | |
doc_23533244 | <Shell.TitleView>
<Grid
Margin="0,0,0,0"
RowDefinitions="*"
ColumnDefinitions="*,*">
<local1:AutoFitLabel
x:Name="labelTitle"
Grid.Column="0"
Text="My page title"
TextColor="{StaticResource TextGray}"
FontSize="Title"
... | |
doc_23533245 | Can it be done by Facebook canvas? I have an access to a public web server where I can host my app and handle POST requests
A: Yes, canvas and page tab apps display external content in an iframe.
You’ll need your content to be available via HTTPS (because facebook.com is served via HTTPS, and so your iframed content ... | |
doc_23533246 | public class A{
Map map;
public getValue(String key){
return map.get(key);
}
public remove(String key){
synchronized(map){
map.remove(key);
}
}
}
A is a singleton. getValue is heavily accessed throughout the app by multiple threads. I am adding a new method, remove, that removes a key from the map. If r... | |
doc_23533247 | Clients gain access to the webapp via Client-Cert authentication. The username
extracted from the certificate is of the form "CN=..., OU=.., O=.., L=.., ST=.."
Since we are only interested in the value of CN we wrote a X509UsernameRetrieverClass, placed the jar in $TOMCAT_HOME/lib and
configured it in the JNDIRealm:
... | |
doc_23533248 | I know typescript supports decorators but I've been having a bit of trouble understanding them.
I created an easy test code to modify with lodash wired to make explaining the solution easier:
https://codepen.io/thinkbonobo/pen/XKyaKY?editors=0010
I'd like to memoize run so that it returns the answer without the forced ... | |
doc_23533249 |
ID Column1 Column2 Column3 Column4 Column5
001 A C D A B
002 A D A B A
003 B K Q C Q
004 A K E E B
I want to create a new column in a view which gives me the count of "A"s across the 5 source co... | |
doc_23533250 | I was able to get elasticsearch loaded into angular as a module and was following along with this sample repo: https://github.com/spalger/elasticsearch-angular-example/blob/master/README.md
When I tried to run the cluster.state call, I received the following error: Request header field Authorization is not allowed by A... | |
doc_23533251 | Thanx in advance.
A: You can mute the sound when your app starts and unmute when it finishes using AudioManager
@override
public void onResume(){
super.onResume();
// this mute the Sound
AudioManager mgr = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
mgr.setStreamMute(AudioManager.STREAM_SYS... | |
doc_23533252 | https://imgur.com/w0JmSyb
But... when I have downloaded the Bootswatch Lumen theme and then updated the CSS file referenced in the App_Start/BundleConfig.cs file and then rebuild and refresh, the menu at the top renders as the Application Title with an empty button which expands the menu items.
https://imgur.com/7463k... | |
doc_23533253 | Since May, 13th 2015 I'm finding a problem when using the list method.
If I programmatically create a file in the appfolder, I receive the response: 200 OK and the file created. If then I use the list method to list the files in the appfolder, the file just created is not listed. It happened with several files yesterda... | |
doc_23533254 | Now with Xcode 11.3.1 , i am trying to upgrade it but it gives me below error.
Any process to direct migrate without using Xcode 10.1
| |
doc_23533255 | <div class="content">
<h2>Question</h2>
<p class="author">bla bla <strong>אחת</strong></p>
<dl class="">
<dt><label for="vote_1">option1</label></dt>
<dd style="width: auto;"><input type="radio" name="vote_id[]" id="vote_1" value="1" /></dd><dd class="resultba... | |
doc_23533256 | *? I'm trying to turn off the hover for the current page in a navigation menu.
div.nav {
width: 100%;
padding: 6px;
height: 40px;
}
.nav li {
color: #FFFFFF;
display: inline;
list-style-type: none;
text-align: center;
text-transform: uppercase;
padding: 20px;
margin: 0px;
height: 40... | |
doc_23533257 | ╔═══╦════════════╦═══════════════╗
║ ║ col_1 ║ col_2 ║
╠═══╬════════════╬═══════════════╣
║ 1 ║ 106 ║ I am Alex. ║
║ 2 ║ 106 ║ I'm a student ║
║ 3 ║ 106 ║ I like apple ║
║ 4 ║ 1786 ║ Dog is a pet ║
║ 5 ║ 1786 ║ Jack is my pet║
╚═══╩════════════╩═══════════════╝
... | |
doc_23533258 | Thanks
A: Declare one static variable and increment the same inside your method. After that you can see the count.
Below is the sample code:-
static int i=0; //declare outside your method
-(void)yourMethod{
++i;
NSLog(@"%d",i);
}
| |
doc_23533259 | @Repository("userRepository")
public class UserRepositoryImpl implements UserRepository {
@PersistenceContext
private EntityManager em;
That is traditional - no problems here. Just assume I refer to @PersistenceContext as to @Autowired which is practically the same except for JPA. Now consider another example... | |
doc_23533260 | I've got an Ajax call sending some data using POST to the server:
$.ajax({
cache: false,
type: 'POST',
url: Config.API_ENDPOINT_REGISTRATION,
dataType : 'json',
data: info,
success: this.successHandler.bind(this)
});
Everything is behaving as expected in all modern browsers, except IE8 a... | |
doc_23533261 | I understand some of the syntax but I'm kind of stuck at the line of code beginning "On Error Resume Next" I don't know which function to use that Java uses.
This part is throwing me off
( Not sure what "Next" needs to be in Java )
any help would be appreciated
<% <!-- each string had DIM in front ex. DIM fEmptyReco... | |
doc_23533262 | I have been finding difficulty in creating one particular type of table structure as shown in the Image below.
The problem is how to have same rowspan for '1','2' and '6' , in this case it is equal to 2.
Any kind of help would be appreciated.
edit-1 I have succeeded with basic rowspan and colspan, but I am finding dif... | |
doc_23533263 | <template>
<modal-window v-model="show" v-on:keyup="keyHandler($event)" @ok="submit()" @cancel="cancel()" @closed="close()" ... >
...
</modal-window>
...
</template>
<script>
...
methods: {
keyHandler (event) {
console.log(event);
}
},...
</script>
I want handle ke... | |
doc_23533264 | http://www.stat.osu.edu/computer-support/programming/background-jobs
I am performing the loop:
for ((i = 1; i <= 5; i++)); do
echo $i>i.txt;
matlab -nodesktop -nodisplay <script.m &> dummy.out &
done
in the script there is a part :
fid=fopen( 'a:\folder\i.txt');'];
iter=str2double(fgets(fid))
myfunction(iter,a... | |
doc_23533265 | DBSnapshotIdentifier : rds:xyz-new-2015-08-17-03-43
DBSnapshotIdentifier : xyz-new-2015-08-17-04-43
DBSnapshotIdentifier : rds:abc-2015-08-17-03-43
My code:
foreach($line in $lines)
{
$del = $line -split ':' | Select-Object -Last 1
}
I am trying to read the entire string (left of :), it's reading the entire string in... | |
doc_23533266 |
A: A UITextView does not magically size itself to its text. A UILabel does! If you can use a label instead, use it. Otherwise, it is up to you to keep resizing the UITextView so that its height (or, if you're using self-sizing cells based on internal constraints, its height constraint) matches the height of its conten... | |
doc_23533267 |
Traceback (most recent call last):
File "/Users/alexanderniewiarowski/anaconda3/envs/fenics2018/lib/python3.6/site-packages/qtpy/QtWebEngineWidgets.py", line 22, in
from PyQt5.QtWebEngineWidgets import QWebEnginePage
ImportError: dlopen(/Users/alexanderniewiarowski/anaconda3/envs/fenics2018/lib/python3.6/site-pac... | |
doc_23533268 | I have added a AutoCompleteExtender to my webpage, and have implemented the webservice method for it to call. So far, so good.
Using Fiddler, I have checked that, when debugging, the webservice method is being called and is returning the results I'd expect to see.. but nothing gets rendered to the screen, there is no ... | |
doc_23533269 | My security group that is associated with my instance has:
ICMP Allow All
TCP 0-65535
TCP 22 (SSH)
TCP 80 (HTTP)
TCP 443 (HTTPS)
UDP 0-65535
I am running a Bitnami-Wordpress 3.2.1-0 Ubuntu AMI
My Question is: How do I host a simple file on my instance?
UPDATE: so I was able to login using SFTP by sim... | |
doc_23533270 | ||
doc_23533271 |
*
*Every single unit test should be self-contained and not depend on others.
*Don't repeat yourself.
To be more concrete, I've got an importer which I want to test. The Importer has a "Import" function, taking raw data (e.g. out of a CSV) and returning an object of a certain kind which also will be stored into a ... | |
doc_23533272 | OS running:(http://rcn-ee.net/deb/rootfs/precise/ubuntu-12.04-r4-minimal-armhf-2012-07-16.tar.xz)
A: The best way to do this is to use a function that gives you more control over the resulting process than system() does. However, this would be platform specific.
*
*For Windows, use CreateProcess() which returns a H... | |
doc_23533273 | I have many Mysql requests to do in Node, and it's done asynchronously.
In the following example, I would like to wait for the checkExists function to finish one way or another (and populate my input variable) before the function doStuffWithInput starts. I don't see any other way than pasting doStuffWithInput multiple... | |
doc_23533274 | import os
import dbf
x1 = '/home/beata/Documents/Bias_coorection/Power_pr/CNRM_pr_power1965'
x2 = '/home/beata/Documents/Bias_coorection/Power_pr/CNRM_pr_power1966'
x3 = '/home/beata/Documents/Bias_coorection/Power_pr/CNRM_pr_power1967'
x = [x1, x2, x3]
def conv(x):
file_name = os.path.basename(x)
dbf_file_na... | |
doc_23533275 | Why does the actorOf function NOT require a function input that has a Actor<_> as a parameter?
It appears that the actorOf2 function DOES require a Actor<_> parameter.
The context of how these functions are called are the following:
let consoleWriterActor = spawn myActorSystem "consoleWriterActor" (actorOf Actors.conso... | |
doc_23533276 | This is the input:
<View style={styles.inputContainer}>
<TextInput style={styles.input} placeholder="Email"></TextInput>
</View>
This is the style:
input: {
height: 50,
borderBottomColor: 'gray',
borderBottomWidth: 1,
marginVertical: 10,
}
This is how it looks:
https://i.stac... | |
doc_23533277 | Here is the first line of the game that we are doing.
SET /p quest1= 1. What was the Six-Million-Dollar Man's first name?
A: set /p a=what is 2 + 2:
if "%a%" NEQ "4" (echo sorry, the answer is 4)
A: @echo off
set /p quest1=" 1. What was the Six-Million-Dollar man's first name? "
echo %quest1%|find /i "Steve">nul
if ... | |
doc_23533278 | Scenario
One device is advertising, all others (8 devices in total) are discovering. On successful connection, I am sending simple Files of 20B, 200B and 33KB sizes for 30 secs straight to each connected device.
I am using android Samsung S6 SM-G920F devices with android version: 6.0.1 and playservices version 12.8.7... | |
doc_23533279 | AND ((@includeExpired = 0 AND lic.[DateExpiresUtc] > GETDATE())
OR
(@includeExpired = 1 AND lic.[DateExpiresUtc] <> GETDATE())
)
Which just looks ugly, I've tried just including a simpler version of the statement like:
(@includeExpired = 0 AND lic.[DateExpiresUtc] > GETDATE())
But when @includeExpired... | |
doc_23533280 |
*
*terraform v0.10.7
*google cloud platform
*various .tf files for creating backend, variables etc
issue:
i am able to create multiple vm instances and also multiple additional disks (boot_disk is working fine on each instance) but I want to be able to attach those additional disks to each vm accordingly without... | |
doc_23533281 | ||
doc_23533282 | Everytime I do an update plugin such as GitHub and restart the jenkins, Jenkins start crashing. when I try to access jenkins through URL in my browser, the error page shows up with some exception "class not found jenkins/model jenkins" . and then in order to make jenkins working again , I have to delete the plugin enti... | |
doc_23533283 | I'm trying to understand one thing in Oracle database Roles and privileges:
So, i am trying to create two Roles: Programmer and Manager.
The idea for Programmer role users, is to create and insert into tables.
The idea for Manager role users, is to have acess to Programmer role privileges, PLUS update records.
And i th... | |
doc_23533284 | .data
prompt1: .asciiz "Enter the array size \n"
prompt2: .asciiz "Enter integers to fill the array \n"
prompt3: .asciiz "Sorted Array: "
.text
main:
li $t0, 0
la $a0, prompt1
li $v0, 4
syscall
li $v0, 5
syscall
move $t0, $v0 #array size
add $t9, $t0, $t0
li $v0, 9
la $a0, ($t0)
syscall
move $s0, $v0 #array address ... | |
doc_23533285 | uninitialized constant IdeasController::Delayed
I have already started the delayed_job by using rake jobs:work. I have the following delayed_job code in SampleController.rb
Delayed::Job.enqueue(DelayedWorker.new({:model=>object.class.to_s,:object_id=>object.id,:meth=>:create_suggestion}))
delayed_worker.rb contains t... | |
doc_23533286 | $("#petrolGauge .fuelBar .slider").draggable({
containment: "parent",
axis: "x",
drag:function(){
updValues();
},
start:function(){
$(this).css("background-color","#666");
},
stop:function(){
//checkForm();
$(this).css("background-color","#AAA");
}
});
Th... | |
doc_23533287 | I am getting a call to another person using my java application (Already done & works fine).
Then I am playing a recording, for example "Please press 1 one to continue in english" (Already done & works fine).
Now I want to detect that person press one, As per my researches in google search I got that this can do using ... | |
doc_23533288 | When I try to compile anything, even simplest C program, I get the following build error:
1>------ Build started: Project: Project1, Configuration: Debug Win32 ------
1>Object of type 'System.ComponentModel.Composition.ExportFactory`1[System.IO.StreamReader]' cannot be converted to type 'System.ComponentModel.Compositi... | |
doc_23533289 | Some points are duplicates and this prevents the diagram from being drawn correctly. How can I remove duplicate points? And draw a diagram with X and Z axes?
Please download the coordinate file via the link below:
https://s21.picofile.com/d/8445324542/15c1902a-0828-4692-b0ce-a65651306111/Coordinates.rar
A: There are a... | |
doc_23533290 | here is my code .. all help is really appreciated :)
import java.util.Scanner;
public class Main{
public static void main(String[] args){
String carName;
String carType;
String engineType;
int limit;
Scanner in = new Scanner(System.in);
System.out.print("Enter the number of Cars you want to a... | |
doc_23533291 | $item_id = $each_item['item_id'];
$sql = mysqli_query($mysqli, "SELECT * FROM prod WHERE
id='$item_id' LIMIT 1");
while ($row = mysqli_fetch_array($sql)) {
$price = $row["prod_price"];
$stocks = $row["stocks"];
}
$sqlu = mysqli_query($mysqli, "UPDATE prod SET stocks = $stocks
WH... | |
doc_23533292 | var options = {
lang: 'deu',
};
var image = require("path").join(__dirname, 'lib/images/ocr-test-text.png');
var Tesseract = require('tesseract.js')
Tesseract.recognize(image, options)
.progress(function (info) {
console.log(info);
})
.then(function (data) {
console.log('done', data);
process.exit();... | |
doc_23533293 | When I run webpack I get this error
ERROR in ./src/js/components/header.jsx
Module build failed: SyntaxError: /home/hakeem/Documents/webapp/app/src/js/components/header.jsx: Unexpected token (46:39)
44 | return (
45 | <div className="col-lg-12">
> 46 | <li className='pull-left'><Link ... | |
doc_23533294 | here is the code
users = ratings.userId.unique()
items = ratings.movieId.unique()
user_id_input = Input(shape=[1], name='user')
item_id_input = Input(shape=[1], name='item')
embedding_size = 64
user_embedding = Embedding(output_dim=embedding_size,
input_dim=users.shape[0]+... | |
doc_23533295 | text-align: center;
position: absolute;
top: 200;
right: 100;
animation-name: textAnim;
animation-duration: 5s;
animation-delay: 2s;
}
@keyframes textAnim {
0% {opacity:1;}
90% {opacity:1;}
100% {opacity:0;}
}
You can see in the example vid. I attempt to fade the text with the code above but it just comes right... | |
doc_23533296 | Is this notice still valid in 2022?
The reason for asking this is that, currently my Apache is configured with prefork, and I use persistent connections.
However, it happens that at a certain time of day, on alternate days, the connections are no longer reused, creating hundreds of new persistent connections in less th... | |
doc_23533297 | dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.... | |
doc_23533298 | etc/nginx/sites-available
etc/nginx/sites-enabled
etc/nginx/conf.d
Do I really need these if I just want to work directly in the etc/nginx/nginx.conf file and remove the include lines that include these items in nginx.conf? Are these directories used for anything else that would mess things up if I delete them?
A: No... | |
doc_23533299 | Last 30 Days =
VAR _TodaysDate = Today()
VAR _StartDate = dateadd (Cutomer[FormSignedDTS], -30, Day)
return
calculate (distinctcount (Customer[CustID]), keepfilters (Customer[FormSignedDTS] >= _StartDate))
But it get the following error...
"a date column containing duplicate dates was specified in the call... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.