id stringlengths 5 11 | text stringlengths 0 146k | title stringclasses 1
value |
|---|---|---|
doc_25100 | ||
doc_25101 | I tried this but it doesn't work.
<body>
<input type="text"></input>
<button>click</button>
<script>
var input = document.querySelector("input");
var button = document.querySelector("button");
button.addEventListener("click" , clickHandler , false);
var valori = [];
var comp = [];
function clickHandler()
{
n = input... | |
doc_25102 |
A: Browserify ws module relies on C++ code built with node-gyp. No, you cannot use browserify to convert it to client-side Javascript. (Unless ws has some conditional compilation for builds under browserify.)
Anyway, let's think about it in a realistic way. Client-side Javascript interacts with the world via a limited... | |
doc_25103 | $user = new User([
'id' => 1,
'eos_id' => '832355',
'user_name' => 'yish',
'email_id' => 'test@test.com'
]);
$this->actingAs($user, 'api');
after that when I check as auth('api')->check() it always returns false.
EDIT
COntroller method that i want to te... | |
doc_25104 | http://bl.ocks.org/EE2dev/raw/cd904f10097b9921f1cc/
In that code I create an SVG element and set the size with this line:
var chart = d3.select("body")
.append("div").attr("class", "chart")
.append("svg")
.attr("width", outerWidth) // outerWidth = 960
.attr("height", outerHeight) // outerHeight = 500
.append(... | |
doc_25105 | now i was curious to know why the below doesnt work please:
(this bit of code compares two points: a & b, each with two points, a north-east (ne) and south-west (sw) and their x and y plots)
if ((a->x_ne <= b->x_ne && a->y_ne <= b-> ne) &&
(a->x_sw => b->x_sw && a->y_sw => b-> sw)) {
return true;
... | |
doc_25106 | My sample code is :
db.select("SELECT id from table1 ")
.getAs(String.class)
.collectInto(new HashSet<String>(), HashSet::add)
.zipWith(db.select("SELECT id from table2 ")
.getAs(String.class)
.collectInto(new HashSet<String>(), HashSet::add),... | |
doc_25107 | I am facing 2 problems at the moment:
*
*I dont know how to position the sub sub menu properly. It should appear next to the sub menu on the same height as the previous menu item and list downwards.
*I don't know how to set that the sub sub menu only expands if I hover the corresponding sub menu item.
The code I ... | |
doc_25108 | ||
doc_25109 | The entire data that goes into the text file is one big table(comma separated instead of space). My problem is How do I remember the column into which a piece of data goes in the text file?
For eg. Assume there is a column called 'col'.
I just put some data under col. Now after a few iterations, I want to put some othe... | |
doc_25110 | mycon.Open();
adap = new SqlDataAdapter("SELECT * FROM Employee; Select * from Shift; select * from Has_Shift", mycon);
adap.TableMappings.Add("T1", "Employee");
adap.TableMappings.Add("T2", "Shift");
adap.TableMappings.Add("T3", "Has_Shift");
adap.Fill(ds);
DataRow newRow = ds.Tables["T1"].NewRow();
newRow["Name"] ... | |
doc_25111 | I have a project, where I use a multitude of colours, and it is getting difficult to keep track of which colour is which, so it would be nice to have a visual guide.
My general code for colours in the Resource Dictionary is:
<Color x:Key="BackgroundLight">#efefef</Color>
<SolidColorBrush x:Key="BackgroundLightBrush" C... | |
doc_25112 | My purpose is to use multicast as a synchronization method over local area WiFi: send a dummy multicast packet to multiple receivers; since they receive that packet near simultaneously, they can compare their receive times to synchronize their clocks.
This works really well with 3 or more devices (and loopback disabled... | |
doc_25113 |
A: Well, I ended up with some hybrid solution. I used MapBox and Open Street Maps for offline map functionality together with Google Play services that allowed me to add geofencing functionality. Somehow I was thinking that geofencing requires to use Google Maps and that was obviously not correct.
| |
doc_25114 | public class UploadingService extends Service {
public UploadingService() {
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
for(int i = 0; i < mArrayUri.size(); i++){
*********
//firebase uploading codes
************
/... | |
doc_25115 | This example on Wikipedia shows what I'm meaning by virtual memory mirroring.
Say the first 14 blocks below are the pages in my giant chunk. I'd like to virtually map pages 6 and 7 to another two consecutive locations.
[0][1][2][3][4][5][6][7][8][9][10][11][12][13].......[6][7][6][7]
Mike Ash gives a rundown of what I... | |
doc_25116 | src
typings
types.t.ds
In the tsconfig.json, I have included it as
"include": ["src/typings/**/*.d.ts"]
My type definition is the following
declare namespace App {
interface HTMLProps<T> {
customFunction?: (event: MouseEvent) => void;
}
}
I have two questions
*
*Am I including it correc... | |
doc_25117 | var testSchema = new Schema({
foo: { type: String, required: true, trim: true },
bar: {
fooBar: { type: String },
barFoo: { type: String }
}
});
And I must validate values of bar based on foo values, something like this:
testSchema.path("bar").validate(function(bar){
... | |
doc_25118 | CREATE TABLE SALESS (id int, product int, salesdate DATETIME, amount float)
INSERT INTO SALESS VALUES
(1, 1, '2020-10-10', 500),
(1, 1, '2020-11-10', 300),
(1, 1, '2020-12-10', 200),
(1, 2, '2020-10-10', 300),
(1, 2, '2020-11-10', 1000),
(1, 2, '2020-12-10', 200)
and my query is
select product, year(salesdate) 'year'... | |
doc_25119 |
This document enabled extended features in Adobe Reader. The document has
been changed since it was created and use of extended features is no longer
available. Please contact the author for the original version of this
document.
I googled a bit but all the posts talk about "enabling" extended features, however... | |
doc_25120 | Before, I would have just used gdb info malloc-history <xxx> to start debugging, but I am having trouble finding a parallel command in LLDB.
I saw this thread that said to use Instruments, but when I do I still get the crash but I can't figure out how to tell exactly where the app is crashing from in Instruments.
I j... | |
doc_25121 | I have a sample LinkedList, which is a very basic class for me to learn C++ with.
At the moment i'm trying to add new nodes to my linked list using a class etc, and I encountered a very odd bug.
Here's my LinkedList.h:
struct Node {
Node* next;
int value;
};
class LinkedList {
private:
Node* root;
public:... | |
doc_25122 |
A: In the Android SDK, you call setVRModeEnabled(false) on the CardboardView object.
In the Unity SDK, you set VRModeEnabled = false on the Cardboard.SDK object.
| |
doc_25123 | How I can do it?
A: At runtime you could achieve a similar effect by Wolf = Fox. This would allow you to access all the objects via the Wolf namespace as well as the Fox namespace.
If you need to do it in the code, then search-and-replace is your friend.
| |
doc_25124 | In short, after loading my resouce DLL's I need to call sysutils.ResStringDeleteAllModules in order to flush the cached resource strings. Unfortunately this routine is NOT in the interface section, and modifying and recompiling sysutils.pas itself won't do it for me as I use runtime packages.
So I'm looking for a more-... | |
doc_25125 |
A: As Nick pointed this may be (most likely) due to DropBox type of folders. This is happening even after the sync is paused. My solution is to catch exceptions and add a delay of 1 second. Not the most efficient but will do the work giving opp. to the sync to finish. And this is happening < 0.1 % of time taking 1 sec... | |
doc_25126 | I used the following code to create and connect socket:
package com.example.bluetooth;
import java.io.IOException;
import java.util.UUID;
import android.os.Bundle;
import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothSocket;... | |
doc_25127 | I am using following code to get the dataset
SqlCommand cmd = new SqlCommand();
SqlDataAdapter da = new SqlDataAdapter();
DataSet ds = new DataSet();
try
{
con.ConnectionString = ConfigurationManager.ConnectionStrings["connString"].ConnectionString;
con.Open();
cmd = new SqlCommand("sp_GetData", con);
... | |
doc_25128 | it did not work.the code in the Hammer.js
(function(Hammer) {
/**
* ShowTouches gesture
* requires jQuery
* show all touch on the screen by placing elements at there pageX and pageY
* @param {Boolean} [force]
*/
Hammer.plugins.showTouches = function(force) {
// the circles u... | |
doc_25129 | The first test passes, but the second does not (with both 2.2.3 and 2.3.0-RC2):
import org.specs2.mutable._
import java.net._
import akka.actor.{Actor, ActorRef, ActorSystem}
import akka.io._
import akka.testkit.TestActorRef
object System {
implicit val system = ActorSystem("SocketListenerTests")
}
import System._... | |
doc_25130 | <%@ Register namespace="Content" tagprefix="edit" %>
<edit:MyEditor runat="server" Width="100%" Height="250px"/>
I am able to see the editor in my aspx page.
The problem comes when I give an ID to the control
<edit:MyEditor ID="htmlEditor" runat="server" Width="100%" Height="250px"/>
I get an error in the designer fi... | |
doc_25131 | public class LinkedContact
{
public int LinkedContactID { get; set; }
public Nullable<int> ContactID { get; set; }
public Nullable<int> ContactTypeID { get; set; }
public Nullable<bool> Deleted { get; set; }
public virtual Contact Contact { get; set; }
public virtual ContactType ContactType { g... | |
doc_25132 | class feed(models.Model):
location = models.OneToOneField('feedlocation')
class feedlocation(models.Model):
areaHash = models.CharField(max_length=100,default='')
Then I used the follow code to find out the 'feed' on the same areaHash.
Feed.objects.filter(location__areaHash__istartwith='*****')
The I got thi... | |
doc_25133 | I have shared example spec which looks like
sharedExamples_spec.rb
shared_examples "upload jar" do |msg|
it "shared examples group" do
sleep(10)
p "hello there :2 #{msg}"
end
end
And in other spec file
require 'sharedExamples_spec.rb'
describe "something" do
before(:each) do
@spec... | |
doc_25134 | However, when I instigate builds on any of the branches other than master, I get the following:
[Pipeline] {
[Pipeline] stage
[Pipeline] { (git checkout)
[Pipeline] git
> git.exe rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
> git.exe config remote.origin.url file:///C:/... | |
doc_25135 | The problem is: trying to return the array via onPostExecute I'm getting an arguments error; it won't accept the array. How do I use the onPostExecute method to return the value feeds? I have tried to change the result of doInBackground but that wouldn't accept an array either.
Here is the interface called in MainActi... | |
doc_25136 | <form #empForm="ngForm" novalidate>
<div>
<label>Role</label>
<select name="role" [(ngModel)]="user" (ngModelChange)="get1($event)" (change)="get($event)">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
</div>
</form>
And in the .ts,
Since the sel... | |
doc_25137 | At the moment I'm using this function for default blocks
editorToggleBlockType = (blockType) => {
this.onChange(
RichUtils.toggleBlockType(
this.state.editorState,
blockType
)
);
}
then I can apply custom class using blockStyler
blockStyler = (block) => {
if (block.getType... | |
doc_25138 |
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table width=100%>
<tr>
<th colspan="8">sigle row of 8 cols</th>
</tr>
<tr >
<td colspan="2">2 cols </td>
<td rowspan="3" colspan="6" > 6 cols</td>
</tr>
<tr>
<td... | |
doc_25139 | $time='Y-m-d';
strtotime(date('Y-m')."-1 month");
$area=array(
0=> "Assembly &Test ESP",
1=> "Hermetic ESP",
2=> "Machine Shop ESP",
3=> "Maintenance",
4=> "Mining ESP",
5=> "Punch Press ESP",
6=> "Weld Fab ESP",
7=> "Winding ESP",
8=> "DMI",
9=> "Shelby Maintenance",
10=>"Shelby Machine Shop");
... | |
doc_25140 | EDIT- I tried adding data in RoutesServiceProvider file:
public function map()
{
$this->mapApiRoutes();
$this->mapWebRoutes();
$this->mapModuleWebRoutes1();
$this->mapModuleWebRoutes2();
//
}
/**
* Define the "web" routes for the application.
*
* These routes all receive session state, CSRF p... | |
doc_25141 | @RequestMapping(value = "/downloadCSV")
public void downloadCSV(HttpServletResponse response) throws IOException {
Student s2 = new Student(11, "Sachin", 30);
Student s3 = new Student(12, "Vikas", 40);
Student s4 = new Student(10, "Harkirat", 20);
List<Student> std = Arrays.as... | |
doc_25142 |
A: You'll need to use "EventKit" for that:
http://developer.apple.com/library/ios/#documentation/DataManagement/Conceptual/EventKitProgGuide
A: Use EventKit framework
Have a look at this demo: http://developer.apple.com/library/ios/#samplecode/SimpleEKDemo/Listings/Classes_RootViewController_h.html#//apple_ref/doc/ui... | |
doc_25143 | -(void)getTimeZoneFromLatLong
{
CLLocation *location = [[CLLocation alloc] initWithLatitude:self.parentVC.currentCity.latitude.doubleValue longitude:self.parentVC.currentCity.longitude.doubleValue];
CLGeocoder *geoCoder = [[CLGeocoder alloc]init];
[geoCoder reverseGeocodeLocation: location completionHandler... | |
doc_25144 | 17
100
19
18
on a .txt file, but i always get a FileNotFoundException. It will output the result
0000
if i run the code below:
import java.io.File;
import java.io.FileNotFoundException;
import java.util.*;
public class umm {
public static void main(String[] args) throws FileNotFoundException {
// TODO... | |
doc_25145 | The problem I submit an email address on the first form, it creates two objects - one with the email address in the form and the second is blank. When I submit an email address in the second form, it submits as expected one object, one email address.
From this, I can only conclude that the second form is being submitte... | |
doc_25146 | I've got a function that does this,
function[Oarray] = shuffleCellArray(Iarray);
len = length(Iarray{1});
width = length(Iarray);
perm = randperm(len);
Oarray=cell(width, 0);
for i=1:width;
for j=1:len;
Oarray{i}{j}=Iarray{i}{perm(j)};
end;
end;
but as you can... | |
doc_25147 | I want To create a graphic representation of a seating chart (could be in a wedding venue or in cars...). I used a splitted panel, in the splittedPanel1 i put the buttons to create the cars, and inside the splitted panel2 i want to put the graphic representation. Inside SplittedPanel2, I've created a panel and a pictur... | |
doc_25148 | class Aluno{
escola: string;
constructor(public nome: string){
this.escola = "";
}
}
class Pessoa{
morada: string;
constructor(public nome: string){
this.morada = "";
}
}
function ePessoa(p: Pessoa | Aluno): p is Pessoa{
return (<Pessoa>p).morada !== undefined;
}
function eAluno(p: Pessoa | Aluno)... | |
doc_25149 | #if ACAD
using Autodesk.AutoCAD.Runtime;
using _AcGe = Autodesk.AutoCAD.Geometry;
using _AcAp = Autodesk.AutoCAD.ApplicationServices;
using _AcDb = Autodesk.AutoCAD.DatabaseServices;
using _AcEd = Autodesk.AutoCAD.EditorInput;
using _AcGi = Autodesk.AutoCAD.GraphicsInterface;
using _AcClr = Autodesk.AutoCAD.Colors;
us... | |
doc_25150 | My idea is to classify by course, later by quarter and later the subject.
In this photo I'm trying to do 2 levels (course+subject) and I want to have all the subjects of the first course like the first one (SAE).
SAE2 is in a bad place and I don't know how to put it below SAE.
I'm using Bootstrap but I have some CSS. ... | |
doc_25151 | dataset1: clusters11
cluster_id clusters
1 A,B,C
2 A,B
3 B,C
4 C,D,E
5 B,C,D
6 D,E,F
7 A,D,F
8 B,G,H
9 B,C,F
10 G,H,M
11 A,H,N
12 B,C,M
dataset2: transactns11
unique_id skills
221 A,B,C
223 A,B
224 B,C
225 C,D,E,F
226 B,C,D,M
227 D,E,F,A
228 A,D,F
229 B,G,H
230 B,C,F,A
231 G,H,M
232 A,H,N
233 ... | |
doc_25152 | async fn test() -> bool {
let sleep1 = sleep(5);
let sleep2 = sleep(1).await;
let sleep_arr = vec![sleep(2), sleep(2)];
join_all(sleep_arr).await;
sleep1.await;
return true;
}
async fn sleep(sec: u64) -> () {
use async_std::task;
task::sleep(std::time::Duration::from_secs(sec)).await;
}... | |
doc_25153 | int main(int argc, char **argv)
{
int size = NFILES;
int index = -1;
file * files = malloc(size * sizeof(file));
listFilesRecursively(argv[1], &files, &size, &index);
if (index != -1) {
int N = atoi(argv[2]);
if(N==1) qsort(files, index + 1, sizeof(file), compPathname);
else if(N==2) qsort(files, index + 1, s... | |
doc_25154 | But I had many validation error.
I found on the internet, it’s maybe one plugin which can cause this error, so I had checked all my plugins and finally I discovered that it’s NextGen gallery which break my validation.
I contact the support but no response.
ERRORS :
> The mandatory attribute 'amp-custom' is missing in ... | |
doc_25155 | I'm trying to set the toolbar background to a custom image.
I'm also using storyboards.
How do I go about that?
Do I edit UIToolbar in the UI Kit framework? Do I need to change something in Storyboard?
Thanks,
A: You can use UIToolbar's built-in -setBackgroundImage:forToolbarPosition:barMetrics: method:
// portrait
[y... | |
doc_25156 | The following is my script:
function pythagoras() {
function solvepy(form) {
var a = parseFloat(form.a.value);
var b = parseFloat(form.b.value);
c.value = Math.sqrt(a * a + b * b);
}
function pythagoras(form) {
var aInput = document.getElementById("a");
var ... | |
doc_25157 | AttributeError: 'dict' object has no attribute 'int'.
I tried to check type of __builtins__ at python console and it showed type as module whereas in web2py it is treating it as a dict. Please let me know how do I make it work.
A: __builtins__ is an implementation detail. What you want is the confusingly similarly-n... | |
doc_25158 | Count Vowels in String Python
Here is my code which counts occurance of any vowels in a string,
name = "maverick dean"
vowels = 'aeiou'
x = list(map(name.lower().count, 'aeiou'))
As you can see I used list to put each value of a map in a list.
Which gives this output,
[2, 2, 1, 0, 0]
My desire output is
[ "a:2", "e:... | |
doc_25159 |
To get the accumulator output.
Now I am trying to get the following:
What would be the best way to get the following table?
A: The answer was to use the function explode in spark.
| |
doc_25160 | # Create a YAML Document
$RawYaml = @'
integration_name: com.monitor.sql
variables:
Content:
vault:
http:
url: https://vault.service.consul/v1/xyz/mssqlnr
headers:
X-Vault-Token: $(env:VAULT_TOKEN)
'@
$RawYaml | out-File C:\Users\Public\Downloads\config.yaml
I did refer to ... | |
doc_25161 | (1.23d).ToString("£0.00");
I would normally format a currency like this:
(1.23d).ToString("C");
If the machine's locale is set to the UK (which it is) then is there any difference between these two approaches? Can I just do a big find and replace across the solution?
A: According to Standard Numeric Format Strings, ... | |
doc_25162 | I want to convert
select * from asdasd where bla in ("1,2,3")
to
select * from asdasd where bla in ("1","2","3")
A: This type of task in tedious in many databases, but fortunately Postgres has great strings and array features, which make it quite easy to do what you want.
You could turn the string to an array, and t... | |
doc_25163 | This is my code:
return $http({
url: 'http://servername/names.nsf?login',
data: {
'username': 'myusername',
'password': 'whateverpassword',
'redirectto': '/path_to_db.nsf/$icon'
},
method: 'POST',... | |
doc_25164 | Suppose, i have 3 activemq brokers(A, B, C), each having (say) two queues (X,Y) operating.
Every activemq broker has same queues ie. X & Y.
Every activemq broker queues have a dedicated consumer. which consumes messages only from their respective broker's queue.
Now, I want to load balance requests to my 3 queues load... | |
doc_25165 | $maintable = Category::orderBy('id', 'DESC')->get();
$subcategory = Subcategory::all(['id', 'subcategory']);
$subtable = Subcategory::orderBy('id', 'DESC')->get();
return view('admin.news.create', compact('maincategory', $maincategory, 'maintable','subcategory',$subcategory,'subtable'));
am getting error on this
retur... | |
doc_25166 | Example
12:00:00 am - job1 running
12:00:30 am - job2 running ( I am sure that data is present by this time for job1)
-----
12:10:00 am - job1 running
12:10:30 am - job2 running ( I am sure that data is present by this time for job1)
I tried 'interval' as trigger and minutes set to 10 and seconds to 30 but it leads to... | |
doc_25167 | Here is my example:
int main(){
int p[3]={1,2,3};
int (*ptr)[3] = &p;
int **ptr2 = &p;
printf("%d\n",(*ptr)[0]);
printf("%d\n",**ptr2);
return 0;
}
p is of type 3 element integer array.
&p is of type pointer to 3 element integer array.
ptr is of type pointer to 3 element integer array.
ptr2 is of type d... | |
doc_25168 | I have a requirement to increase resource limits for all deployments in the cluster; and I'm aware I can increase this directly via my deployment YAML.
However, I'm thinking if there is any way I can increase the resources for all deployments at one go.
Thanks for your help in advance.
A: There are few things to point... | |
doc_25169 |
A: You don't call controllers via cron... Use a shell instead and don't instantiate the controller inside the shell. If you think you have to it's an indicator for a pretty bad application architecture and you should refactor your code.
See this question CakePHP 2.3 - cron dispatcher and answer.
| |
doc_25170 | private static final Logger log = LoggerFactory.getLogger(BulkApiService.class);
@Autowired
public ElasticSearchConfig elasticSearchConfig;
private static String FOLDER_PATH = "src/main/resources/allFiles";
public void loadAllDataUsingBulkApi() {
Client client = elasticSearchConfig.client();
... | |
doc_25171 | I'm using it to make a game, where you need to make combinaisons of object (ex: a bottle of beer with lighter)
But in some case items are closer so if I drag and drop, the drop event handle multiple times..
There is a way to make the handle just happen one time ? Or detect only the closest object on multiple hover ?
E... | |
doc_25172 | I need to return this file JQuery and downloadable file in a Browser.
Calling API and store the file(any type) in the Project Directory:
var response = _httpClient.GetAsync(documentURL).Result;
HttpContent content = response.Content;
string currfile = System.Web.Hosting.HostingEnvironment.MapPath(string.Format("~/downl... | |
doc_25173 | Example:
python3 main.py --make_it source target option1 itsargs option2 itsargs moreofitsargs option3 evenmoreargs option4 213 andevenmoreags
A: The standard way (Posix conformant) is to use a prefix character (normally '-') to introduce optional arguments. But you can change that prefix character.
So a simple trick... | |
doc_25174 | I have a table with information such as CourseID, Semester, GPA
I need to find all the CourseID's that have the same GPA(and some more fields) as CourseID='999'
I would also like a solution with AND without nested SELECT
Thanks!
So I have to find all the courseCode that has the same GPA and FailPerc as (Code 999, Year... | |
doc_25175 | $SheetName = "2018"
$objExcel = New-Object -ComObject Excel.Application
$objExcel.Visible = $false
$WorkBook = $objExcel.Workbooks.Open($FilePath)
$WorkSheet = $WorkBook.sheets.item($SheetName)
$cell=$worksheet.Columns.Item(299).Rows.Item(194)
I would like to test if $cell has enabled border around.
| |
doc_25176 | I want to display image on screen for frame by frame.
But in my source, only first frame is drawn on screen and ignored all of next frames.
How do I do to redisplay for realtime?
My image displaying Source :
- viewDidLoad : init display first screen
- ChangeImage : change display next screens
- setPixelColorR:G:B:X:Y: ... | |
doc_25177 | >>> SequenceMatcher(None,"86418648","86488648").ratio()
0.5
The ratio returned is 0.5, which is much lower than I expected because there is only one character different in the two strings.
It seems that the ratio is calculated based on matching blocks. So I tried to run SequenceMatcher.get_matching_blocks():
>>> Seque... | |
doc_25178 | I have a scenario, where I want to query all manager and member links from AAD without providing the user and group objectID respectively. This is currently supported in DQ channel, i.e. I can do something like this using MsGraphSDK:
MsGraphClient.Users.Delta().Request().Select("manager")
OR
MsGraphClient.Groups.Delta... | |
doc_25179 | First: The column had a size of 1.4GB so i set the column to null => Update XX set BYTACOLUMN = null.
Result => The column have the same size 1.4GB. This is a litte bit confused. How can i reset the size of the column?
Second: Oke, the size is 1.4GB. Let's try to drop the column -> ALTER TABLE XX DROP COLUMN XX.
Result... | |
doc_25180 | SELECT * FROM MYCARD T1
WHERE T1.IDMONEY = 5 AND T1.IDCARD = 80
AND EXISTS (
SELECT IDCARD, YEAR, MONEY
FROM MYCARD T2
WHERE T2.IDCARD = T1.IDCARD
AND T2.YEAR = T1.YEAR
AND T2.MONEY = T1.MONEY
GROUP BY T2.IDCARD, T2.YEAR, T2.MONEY
HAVING COUNT(T2.IDCARD) > 1
)
AND T1.ID not in ( -- THIS... | |
doc_25181 | 91.8s
95.7s
93.8s
97.6s
94.6s
94.6s
107.4s
I have tried to no avail the server and client VM, the serial and parallel gc, large tables and windows and linux. These are on 1.6.0_14 JVM. The computer has no processes running in the background. So I asking what may be causing these large variations or how can I find out ... | |
doc_25182 |
A: Did you take a look at this code: http://statmath.org/calculate_area.pdf
# Calcuate the area under a curve
#
# Example Function y = x^2
#
# This program integrates the function from x1 to x2
# x2 must be greater than x1, otherwise the program will print an error message.
#
x1 = float(input('x1='))
x2 = float (input... | |
doc_25183 | I'm using:
-(void) drawRect: (CGRect)rect {
///code...
}
A: -setNeedsDisplay: is a method from NSView, UIView doesn't have the (pretty much useless) boolean flag. You must call setNeedsDisplay instead. So call (from your view controller):
[[self view] setNeedsDisplay];
No parameter...
A: Try:
[self.view setNee... | |
doc_25184 | public int Compare(object x, object y)
{
var rowView1 = x as DataRowView;
var rowView2 = y as DataRowView;
var row1 = rowView1.Row;
var row2 = rowView2.Row;
var row1Id = Convert.ToInt32(row1[0]);
var row2Id = Convert.ToInt32(row2[0]);
if (SortDirection ==... | |
doc_25185 |
A: you can set BLUZ_DEBUG cookie on page /system/bookmarks or in path_to_project/public/index.php find
$debugKey = getenv('BLUZ_DEBUG_KEY') ?: 'BLUZ_DEBUG';
if (isset($_COOKIE[$debugKey])) {
putenv('BLUZ_DEBUG=1');
}
end replace to
putenv('BLUZ_DEBUG=1');
see https://github.com/bluzphp/skeleton/wiki/Module-System ... | |
doc_25186 | I know that :after is a pseudo-class pseudo-element that places another element after the one preceding the pseudo-element, but I'm having trouble understanding what's going on here.
Can someone help me understand how this works? Here is the relevant HTML and CSS:
HTML:
<div class="wrapper">
<a class="underline animate... | |
doc_25187 | In my case, it's a local file. I would need to detect the original width and height of the input source video (an h264 f4v).
Thanks
A: You need to listen for a MediaPlayerStateChangeEvent.MEDIA_PLAYER_STATE_CHANGE event on the VideoPlayer before accessing this property. For some strange reason you need to wait until... | |
doc_25188 | When I display a modal form from an MDI child, all MDI children are blocked. How can I create a dialog that only blocks input on its parent?
A: You can disable the opening Form instead of making the modal child truly modal..
You can try this: Open the 'modal' children with
this.Enabled = false;
FormDlg yourModalChild... | |
doc_25189 | Then I'm piping the response to sed and trying to extract the json part that I'm interested in.
I'm struggling with getting the sed to cut the lines correctly.
The Html looks simplified like this:
<div>
<div>
<div class="session" data-session='{
"centerId": "175",
"myid": "2121"
}' data-state=""
>
<div>
<div>
<div... | |
doc_25190 |
A: Try to hide the field in the same activity and then whenever you want to make some working just make it visible or else access them without making visible like hidden data's in activities.
| |
doc_25191 | Do you know what's the best way to do it?
Thanks,
Rafa
A: Problem solved by :
1) add jszip script to your page
2) Goto OBJMTLLoader.js (about line 33) and place these 10 lines to uncompress the zip (assuming that the file.zip contains only the file.obj) inside the loader.load function
loader.load( url, function ( tex... | |
doc_25192 | Exception AttributeError: "'NoneType' object has no attribute 'population'" in del of <main.Robot instance at 0x104eb7098>> ignored
this is my code,
class Robot:
population = 0 #class variable, number of robots
def __init__(self, name):
self.name = name
print ('(initializing {0})'.format(sel... | |
doc_25193 | Error: Class 'Drupal\mypackage\Services\Config\MyClassServiceConfig' not found
The PhpUnit class is under
modules\custom\mypackage\tests\src\Unit\mypackageUserAuthTest
Here is the code
class mypackageUserAuthTest extends UnitTestCase
{
protected $user;
protected $loginService;
public function setUp()
... | |
doc_25194 | // ItemConsumer.kt
try {
job = itemService
.connect()
.flowOn(Dispatchers.IO)
.catch { e ->
throw e
}
.onEach {
// Update UI for each item collected
}
.launchIn(viewModelScope)
} catch (e : Exception)... | |
doc_25195 |
A: Hi Ray team member here.
What ray train version are you using?
I don't think we currently have an end to end example to showcase how to do this. But you should be able to have something like tf.summary.image in your training function. Note this would log images per training worker.
| |
doc_25196 | def loss_function(y_pred, y_true):
return -tf.reduce_mean(tf.matmul(y_true, tf.math.log(y_pred)) + tf.matmul(1-y_true, tf.math.log(1-y_pred)))
For this, I am getting this error-
---------------------------------------------------------------------------
InvalidArgumentError Traceback (most rec... | |
doc_25197 | For some reason, the image (in .top-1-1) looks more faded when you hover the mouse over it.
How to fix this?
HTML
<div class="top-1-1"><a href="experiences.aspx">
<img src="images/myexperience.png" width="111" height="23" alt="My Experience" /></a>
</div>
CSS
.top-1-1 {
float: left;
width: 111px;
... | |
doc_25198 | So, I have a List(called steps) which is returned from an API and we get the steps list like this :
[Heat a large skillet over medium heat; add rice and lentils. Cook and stir until toasted and fragrant, 3 to 4 minutes. Rinse., Place rice-lentil mixture, 1 tablespoon ghee, and salt in a rice cooker or pressure cooker;... | |
doc_25199 |
You don't have permission to access
/cmplatform/web/bundles/clanmovilcommon/css/bootstrap.min.css on this
server.
What I need to change in my /etc/httpd/conf/httpd.conf to fix that problem? It's related to .htaccess problem or what?
A: This error is due to the user that you are currently logged in as not having ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.