id stringlengths 5 11 | text stringlengths 0 146k | title stringclasses 1
value |
|---|---|---|
doc_34200 | I am fetching data from simple queries on a PostgreSQL database.
Here's the Heroku App -->
https://fyle-fullstack-app.herokuapp.com/ and API's --> https://fyle-fullstack-app.herokuapp.com/api/branches?q=bangalore&limit=100 and postgres dump--> https://github.com/snarayanank2/indian_banks
The fact is 2-3 requests with s... | |
doc_34201 | script2.sh #launch another script
sudo reboot #reboot computer
script2.sh
# disown myself from script1
pkill script2.sh # hence preventing the reboot
# continue doing other stuff, even after the parent is dead
If possible, how is this done?
A: You don't need to disown the child script:
$ cat parent.sh
#!/usr/bin/... | |
doc_34202 | This dialog inherits from QMainWindow. Its keyPressEvent() method prints out a message when a combination of Alt + A keys are pressed.
The blue square is QLabel. By an intention it should print the message too but only when Alt + Z keys are pressed. But QMainWindow blocks QLabel's KeyEvents. Even if after the mouse cur... | |
doc_34203 | It's possible or not ?
If yes, how to be ?
Please share your experience.
Thanks a lot :)
A: Use Google Docs Viewer https://docs.google.com/viewer/
Example
https://docs.google.com/viewer?url=https://dl.dropbox.com/u/16123/upload/loremipsum.docx
A: Only on client side: no. On server side with PHP: yes (it'll output as ... | |
doc_34204 | Background: I recently wrote an application where I used protobuf for communication between sockets.
My application spawn different threads and these threads should have the possibility to communicate with each other.
This has been done by pushing objects (instances of classes) to a ''std::queue''.
So, I basically one... | |
doc_34205 | Data
Date Start End Area ID Stat
1/1/2022 2/1/2022 3/1/2022 NY 222 Y
2/1/2022 3/1/2022 4/1/2022 NY 111 Y
1/1/2022 2/1/2022 3/1/2022 CA 333 Y
2/1/2022 3/1/2022 4/1/2022 CA 100 Y
Desired
Da... | |
doc_34206 | I have used below code to generate data for each column
Location = ['USA','India','Prague','Berlin','Dubai','Indonesia','Vienna']
Location = random.choice(Location)
Age = ['Under 18','Between 18 and 64','65 and older']
Age = random.choice(Age)
Gender = ['Female','Male','Other']
Gen... | |
doc_34207 | Thanks A Lot!
https://imgur.com/a/uapK2u7
A: capture of your blueprint image
in your GetDatas Function,
looping Deck array, you are trying to swapping (i) and (i-1)
but this logic could be dangerous if i == 0, it would try to access array[-1] and cause crash.
| |
doc_34208 | At the moment my employer provides Visual Studio.Net 2003, which will compile no version of Numpy later than 1.1.1 - every version released subsequently cannot be compiled with VS2003.
What I'd really like is some other compiler I can use, perhaps for free, but at a push as a free time-limited trial... I can use that ... | |
doc_34209 | import Cookies from "js-cookie";
import { v4 as uuidv4 } from "uuid";
const setUserCookie = () => {
if (!Cookies.get("UserToken")) {
Cookies.set("UserToken", uuidv4(), { expires: 10 });
}
};
export default setUserCookie;
I tried this for now, but I don't know if this is correct, I don't think it tests the fu... | |
doc_34210 | from typing import TypeVar, Generic
T = TypeVar('T')
class Box(Generic[T]):
def __init__(self, content: T) -> None:
self.content = content
Box(1) # OK, inferred type is Box[int]
Is it possible to infer types of a class member? Let's say I have different types of athletes' stats:
from abc import ABC
fro... | |
doc_34211 | Code:
RSAPrivateKey pk = (RSAPrivateKey) ks.getKey("CS2", "fihjo".toCharArray());
Signature s = Signature.getInstance("SHA1withRSA");
s.initSign(pk);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(baos);
String message = "Hi Sign ME!!!";
oos.writeObject(messag... | |
doc_34212 | Example:
Date BreakField Group (this is the field I need)
2018-07-01 0 1
2018-07-02 0 1
2018-07-03 0 1
2018-07-04 1 0
2018-07-05 0 2
2018-07-06 0 2
A: You can use difference of row_numbers to define the group :
selec... | |
doc_34213 | Please tell me step-by-step procedure how to copy and build the projects in vs2010 ultimate.
A: 1 Open Visual Studio
2 Access to File
3 Create New Solution
4 Access to Solution Explorer ( Shortcut CTRL + ALT + L)
5 Right click on solution and select Add existing project
6 Browse to your project (Extension .csprog) and... | |
doc_34214 | I have a PHP script that needs to call a program in shell and get its output.
That program uses a shared library, so I need to set up the $LD_LIBRARY_PATH environment variable. As that program is used system wide, that setup is done on /etc/environment as follows:
/etc/environment file:
LD_LIBRARY_PATH=/path/to/my/sh... | |
doc_34215 | Please let me know the reason for the error.
import java.util.Scanner;
public class main
{
public static void main(String args[])
{
int c,d;
Scanner s = new Scanner(System.in);
System.out.print("Enter the first number : ");
c = s.nextInt();
System.out.print("Enter the sec... | |
doc_34216 | public void onCreate(Bundle icicle) {
super.onCreate(icicle);
getWindow().setFormat(PixelFormat.TRANSLUCENT);
setContentView(R.layout.main);
//init components for use
mVideoView = (VideoView) findViewById(R.id.video);
text = (TextView)findViewById(R.id.textView1);
//Get URI data from Vide... | |
doc_34217 | event.preventDefault();
<div className="chat_footer">
<InsertEmoticonIcon />
<form>
<input value={input} onChange={(e) => setInput(e.target.value)} placeholder="Type a message" type="text" />
<button onclick={sendMessage} type="submit">
Send a message
</button>
</form>
<MicIcon />
</d... | |
doc_34218 | Convert ip addess from string to integer
def get_ip_address_int(ip_address):
return struct.unpack("!L", socket.inet_aton(ip_address))[0]
# Convert ip adress from integer to string
def get_ip_address_str(ip_address):
return socket.inet_ntoa(struct.pack('!L',ip_address))
ip_address = -1277278613
Thanks a lot in... | |
doc_34219 | class User extends Authenticatable
public function address() {
return $this->hasOne('App\Address');
}
class Address extends Model
public function user() {
return $this->belongsTo('App\User');
}
// --web.php--
Route::get('/sample',function(){
$user = User::create(['name'=>'user 1','email'=>'us... | |
doc_34220 | Example for a path1: "Z:\Test\1\Script\Export1_2022-11-09.csv"
Example for an archive1: "Z:\Test\1\Script\Archive\Export1_2022-11-09.csv"
Example for a path2: "Z:\Test\2\Script\Export2_2022-11-09.csv"
Example for an archive2: "Z:\Test\2\Script\Archive\Export2_2022-11-09.csv"
$Files = @( "Z:\Test\1\Script\Export... | |
doc_34221 | How do I remove the extra line space between blocks of text? (i.e. January 29th and 31st cells in image).
And is there a way to remove padding from td so words could fill the cell width a little more? (i.e. "Observational" in week 2 topic cell to bottom left of image).
Here is some of the code:
th {
width=16.66%;... | |
doc_34222 | Error [TypeError: undefined is not an object (evaluating 'jsonRes.responses[0]')]
Here is my code:
detectText(base64) {
fetch("https://vision.googleapis.com/v1/images:annotate?key=" + GOOGLE_CLOUD_KEYFILE, {
method: 'POST',
body: JSON.stringify({
"requests": [{
"image": { "co... | |
doc_34223 | class NewsItem {
constructor(title, date, content, photoURL) {
this.title = title | '';
this.date = date | '01-01-00';
this.content = content | '';
this.photoURL = photoURL | '../images/image.png';
}
}
I'm having trouble creating instances of the class. Trying something simple l... | |
doc_34224 | Hi guys, I am new to Power BI(DAX formulas) and I am attempting to calculate the percentage contribution of the sum of "count" where "category" = X and "item_no"=1 to the total of "count" across all categories where 'item_no' = 1.
The ideal mathematical statement here will be the (30/50)*100%
I intend to represent the ... | |
doc_34225 |
*
*Nunit(3.4.1.0)
*NUnit 3 Visual Studio Test Adapter
*TestCaseSource attribute
My test uses the attribute like this:
[Test, TestCaseSource(nameof(GetSmallSampleSizeOfTestDataForScratchwork))]
public void TestMe(string accessionNumber, string loginId)
{
var studentAssessmentPage = OpenAdm... | |
doc_34226 | for f in os.listdir(ftpUploaddir):
if os.path.isfile(os.path.join(ftpUploaddir,f)):
#Filter files having .png as extension
if f[-4:] == ".png":
print "from directory", f
It does not list the files having nore than one space, e.g:
100002044_A h_HD_XXX_20120229_141236.png
There are 3 s... | |
doc_34227 | after this I am getting error at TestBed.createComponent(ServicesComponent) so none of the test cases are being executed, and
TypeError: this.expiry.last is not a function at Idle.Array.concat.Idle.watch...
There is a lot of stuff written in the constructor(in which there are service calls being made and also Idle fu... | |
doc_34228 | when i click my edit button its fetching data but when i click update button im getting error :
i post my question in laracast so if anyone can tell me the idea https://laracasts.com/discuss/channels/general-discussion/update-data-ajax-modal-laravel
A: Update Using Laravel Ajax Modal Very Easy
Route Here
Route::get(... | |
doc_34229 | <?php
// Parse the form data and add inventory item to the system
if (isset($_POST['name'])) {
$name = pg_escape_string($_POST['name']);
$price = pg_escape_string($_POST['price']);
// See if that product name is an identical match to another product in the system
$sql = pg_query("SELECT id FROM beer WHER... | |
doc_34230 | So far, I've found following vba code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim Clr
Clr = Me.Range("A1").Interior.Color
Me.Range("A5").Interior.Color = Clr
End Sub
Which is OK when using for a single cell. But when I modified it to whole range as following:
Private Sub Worksheet_SelectionChang... | |
doc_34231 | Here is my code:
import java.util.Scanner;
public class SumofNumbersAbove0 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int number = 0;
int input;
for (input = 0; input >= 0;) {
number = number + input;
System.out.print("E... | |
doc_34232 | My Requirement is :
*
*I've a server which does have a data processing engine which will feed
a database for every 30 seconds on an average.
*I need a client side web application where i want to draw some graphs
as per data generated by my server Engine.
*I could find suitable library for my Graphing requirements ... | |
doc_34233 | For example: We have 2 Threads: A & B, Thread A reads variable x at time T and Thread B writes variable T at time T.
Should I may consider here some type of lock?
In my case I have the Main Thread an many other SubThreads. The Main Thread holds a List<myObj> and before starting any SubThread I create instances of myO... | |
doc_34234 | As is popular nowadays, I want to add a helper application to this preference pane. Both the application and preference pane should be able to communicate in real time (notification centre, defaults database, etc).
How would I go about doing this? I'm not sure whether to make two different projects, or make one with th... | |
doc_34235 | if __name__ == '__main__':
args = docopt(__doc__)
print('source: %s' % args['--src'])
print('target: %s' % args['--tgt'])
Now when I call this function:
python test.py --src file1 --tgt file2
I get:
Usage:
test.py --src=<file> --tgt=<file>
Options:
-h --help Show this screen.
--src... | |
doc_34236 | When I execute this code, my OS Hangs and when I actually check there are hell lot of processes which are forked at a time.
Here is my Code:
while ($callCount <= $totalCalls) {
for (1..$TotalProcessToFork) {
print "Call -> $callCount";
if($pid = fork) {
#in Parent Process
pr... | |
doc_34237 | static hasMany = [allocations: Allocations]
.. and a mapping
static mapping = {
allocations sort: 'line'
}
I would like to add a second sort field .. Something like
static mapping = {
allocations sort: ['line', 'qty']
}
but I can't get anything to work (tried allocations sort: ([line:'asc', qty:'asc'])... | |
doc_34238 | I'm using these versions:
*
*Scala 2.10.4
*spark-core 1.0.2
*cassandra-thrift 2.1.0 (my installed cassandra is v2.1.0)
*cassandra-clientutil 2.1.0
*cassandra-driver-core 2.0.4 (recommended for connector?)
*spark-cassandra-connector 1.0.0
I can connect and talk to Cassandra (w/o spark) and I can talk to Spark ... | |
doc_34239 |
A: For git log patch:
git log -p -1 <commit>
You should be using git format-patch for patches though:
git format-patch -1 <commit>
http://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html
| |
doc_34240 | @XmlRootElement(name = "authPlayerRequest")
public class AuthPlayerRequest {
@XmlElement(required = true)
protected Player player;
}
If this is on a servlet://... route then this works just fine.
However... I want JSON. This does not appear to work automatically and I cannot figure out how to get it to work.
... | |
doc_34241 | PROBLEM: If I alter the time step, the orbit changes drastically. At small time steps, the orbit becomes a straight line. At large time steps, the orbit becomes tighter. The cooefficients for computing the acceleration for each "K" are not being scaled by dt (except for it being passed through the previous velocity ... | |
doc_34242 | <input type="input" id="triangle-base" />
<input type="input" id="triangle-height" />
<input type="input" id="triangle-area" />
On a keyup event on any input, I need to assign a value of 0 to all the empty inputs, but leave the fields with existing values alone. This is my JQuery so far:
const baseInput = $('#... | |
doc_34243 |
$pages = array('Text1.php', 'Text2.php', 'Text3.php', 'Text4.php', 'Text5.php');
// Track $latest in either a session variable
// $current will be dependent upon the page you're on
$latest = $_SESSION['latest'];
$current = basename(__FILE__);
$currentPages = array_search($current, $pages);
$latestPages = array_sea... | |
doc_34244 | model_sim <- glmer(Accuracy ~ x*y*z_scaled + (1 |Participant),
binomial(link = "logit"), data = Data)
And it failed to converge so I ran the allFit function:
(model_sim <- allFit(model_sim, maxfun = 1e+05))
to see if there were actual reasonable reasons to be concerned, it converged with 5 out 6 optimizers... | |
doc_34245 | import numpy as np
import os
import data_helpers
from tensorflow.contrib import learn
# Parameters
# ==================================================
# Data Parameters
tf.flags.DEFINE_string("eval_file", "./text/tokenizedSmallText.txt", "Data source for the positive data.")
# Eval Parameters
tf.flags.DEFIN... | |
doc_34246 | Simply, my question is : How software works on Hardware? where Software meets Hardware? what is software??? I know that software is a set of instructions tell the computer hardware how to work. but, If I cannot touch Software.. it means Software is just a part of Hardware.
For example, if I have an electronic chip.. w... | |
doc_34247 | As far as I can tell, the YouTube API provides the 'state' of a video (processing, restricted, deleted, rejected and failed). However, I can't tell if the API also provides the encoding qualities of the video (240p, 360p, 720i, etc...).
Does anyone know how to get this information?
A: Taken directly from the docs:
pl... | |
doc_34248 | The app is working properly when I get the codes for getting and preprocessing data outside UI (i.e., before UI). So, there would be no error of this kind if I can get user_id passed by html/javascript codes (this R shiny app is embedded in iframe in HTML) outside/before UI. Is this possible?
### load dependenices
libr... | |
doc_34249 | environment_variables = ['PIP_INDEX_URL=http://pypi.example.com/simple', 'PATH=/etc/apt/sources.list', ...]
... what is the most straightforward way to generate a dict from it?
It should look like:
{"PIP_INDEX_URL": "http://pypi.example.com/simple", "PATH": "/etc/apt/sources.list", ...}
A: You can pass the split str... | |
doc_34250 | I'm using Laravel 4.2.
link1
link2
My Model:
class City extends Eloquent {
public function newCollection(array $models = Array())
{
echo 'here';
return new Extensions\CityCollection($models);
}
}
Custom Collection:
<?php namespace Extensions;
echo 'here';
class CityCollection extends \I... | |
doc_34251 | I invoke the script as login.sh then prompt comes up
1) name1 2) name2 2) name3 4) name4
Please select an account:
then I select the number 1 to 4 based on which one I want to connect to. But let's say I always want to connect to name1, and I can simply do that by passing echo "1" | login.sh. However, the tricky... | |
doc_34252 | Client wants us to store data from a form and put it into the DB. This is handled on the backend with Express.
This has to be done pretty quickly, so I just want to make sure I do it correctly.
I currently have the rules to allow read and write access to be true. Would this be okay in production, given that users can o... | |
doc_34253 | << left shift integer << unsigned integer
What if the left side is type of uint8:
var x uint8 = 128
fmt.Println(x << 8) // it got 0, why ?
fmt.Println(int(x)<<8) // it got 32768, sure
Questions:
*
*when x is uint8 type, why no compile error?
*why x << 8 got result 0
For C/C++,
unsigned int... | |
doc_34254 | Point(5, 10); // returns { x: 5, y: 10 }
// or
new Point(5, 10); // also returns { x: 5, y: 10 }
I got it working so far with the help of StackOverflow.
function Point() {
if (!(this instanceof Point)) {
var args = Array.prototype.slice.call(arguments);
// bring in the context, needed for apply
args.unsh... | |
doc_34255 | <iframe src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fpcclahore&width=364&height=220&show_faces=true&colorscheme=light&stream=false&border_color&header=true" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:364px; height:220px;" al... | |
doc_34256 |
A: pip show pillow
should return Location
A: Although pip is the right thing to do it, you can use python interpreter directly as an alternative (this works for modules that were not installed by pip), which would output the module entry-point's location. As a note, the module must be importable.
Here's an example f... | |
doc_34257 | Action file.ts
import { createAction, props } from "@ngrx/store";
import { PocInfo } from "../entity";
export const GET_POC = '[Build Call] Get Poc';
export const GET_POC_SUCCESS = '[Build Call] Get Poc Success';
export const GET_POC_FAILURE = '[Build Call] Get Poc Failure';
export const getPocs = createAction(GET_PO... | |
doc_34258 | I need to rename several of the directories and source-code files in these projects.
How do I rename directories and source files such that VS will recognise the new names?
If I change file names in the OS, VS ignores them. It still shows the old file names in the Solution Explorer, and double-clicking those produces a... | |
doc_34259 | I tried sqoop looks like it can not fit our requirements.
So are there any existing tools/libs can be used for my case, or any other solutions I can try with spark.
A: Consider using Apache Phoenix on HBase. It will give you low-latency SQL queries (so it is suitable for OLTP and easy to use for OLAP) on data stored i... | |
doc_34260 | runfile('C:/Users/Administrator/Desktop/New folder/stock reinforce/untitled6.py', wdir='C:/Users/Administrator/Desktop/New folder/stock reinforce')
Traceback (most recent call last):
File "<ipython-input-1-adf3164815a5>", line 1, in <module>
runfile('C:/Users/Administrator/Desktop/New folder/stock reinforce/unti... | |
doc_34261 | when it says latency = 44 is it in miliseconds?
A: Yes it’s milliseconds.
See:
*
*http://jmeter.apache.org/usermanual/component_reference.html#Aggregate_Report
« Times are in milliseconds »
See also:
*
*https://jmeter.apache.org/usermanual/glossary.html
A: Yes latency is measured in milliseconds in jmeter
A:... | |
doc_34262 |
A: Apple has no way to detect if you have done receipt validation. Eg, with iOS7 and later, receipt validation can be done purely on the device. Validation is for your use to help assure you that the purchase is valid. If you don't care if the purchase is fraudulent or otherwise invalid, then don't do it.
| |
doc_34263 | What I want to achieve:
I start as root (this will be executed from cron eventually). I want to copy a file with a given path, which belongs to a user over to a space that root controls (which implies a change in permissions). This file may be large. I also want to obey the file access permissions of the particular giv... | |
doc_34264 | I want this to render some text entered in a textarea.
Thanks in advance!
A: If Genshi works just as KID (which it should), then all you have to do is
${XML("<p>Hi!</p>")}
We have a small function to transform from a wiki format to HTML
def wikiFormat(text):
patternBold = re.compile("(''')(.+?)(''')")... | |
doc_34265 | score = 0.1234567
print('Accuracy: {:.2f}%.'.format(score * 100))
How do I combine the {:.2f} and the score * 100 to form something like this
print(f'Accuracy {:.2f score*100}%.) # not working
Can someone point me into the right direction?
| |
doc_34266 | When I use following template, ident and linebreaks are changed in the output and I don't want to do any changes to the source xml.
XSLT
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
<... | |
doc_34267 | Dev:
trigger:
batch: True
branches:
include:
- Development
paths:
include:
- Azure/Payload/Development/Payload.json
Production:
trigger:
batch: True
paths:
include:
- Azure/Payload/Prod/Payload.json
When I committed the development branch file both the Prod and dev and pipelines ... | |
doc_34268 | Below is my code
import pandas as pd
from docx.api import Document
document = Document('word.docx')
for table in document.tables:
for row in table.rows:
data = []
keys = None
for i, row in enumerate(table.rows):
text = (cell.text for cell ... | |
doc_34269 | <DateTimeOrdered>
<Day>3</Day>
<Month>6</Month>
<Year>2022</Year>
<Hour24>7</Hour24>
<Minute>7</Minute>
<Second>7</Second>
<MilliSeconds>150</MilliSeconds>
... | |
doc_34270 | void main()
{
ofstream myfile;
myfile.open("D:\get\data.bin",ios::binary);
if (myfile.is_open())
cout<<"hi"<<endl;
else
cout<<"bye"<<endl;
}
I always get bye output only.
My required target is to create a binary file in D directory with the data as a file name.I am using VS2010 and os is win 7.
for providi... | |
doc_34271 | I want to do the following
a = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12], [13, 14, 15]])
b = np.array([1, 2, 1, 3, 3])
me = np.mean(a[np.where(b==1)][:, 0])
a[np.where(b==1)][:, 0] = me
The problem is that
a[np.where(b==1)][:, 0]
returns [1, 7] instead of [4, 4].
A: You are combining index arrays with ... | |
doc_34272 | if (TRUE) {stop("End of script?")} #It should stop here
print("Script did NOT end!") # but it doesn't, because this line is printed!
Console output:
> if (TRUE) {stop("End of script?")}
Error: End of script?
> print("Script did NOT end!")
[1] "Script did NOT end!"
>
This is actually not surprising, because from ?stop... | |
doc_34273 | enter image description hereenter image description here
Sets
i pump capacity
j pump rate / 1-10 / ;
Parameters
a(i) capacity of plant i in cases
b(j) pump capacity
;
Table d(i,j)
PUMP MAXIMUM (GAL/MIN) COST ($/GAL/MIN) FROM WELL
1 1100 ... | |
doc_34274 | import React, { Component } from 'react';
import SalesData from '../data/salesData';
class ProgressBar extends Component {
constructor() {
super();
this.ordersInProgress = 0;
this.totalSales = 0;
this.orderGoal = 260;
SalesData.forEach(item => {
this.ordersInPro... | |
doc_34275 | The link for the module action
= link_to image_tag("upvote.png"),
send("vote_socionics_#{votable_name}_path", votable, vote_type: "#{s.type_two_im_raw}"),
id: "vote-#{s.type_two_im_raw}",
method: :post,
remote: true
** The link for the controller action**
= link_to "whatever", characte... | |
doc_34276 | Misaligned box:
I've tried setAlignmentX and ComponentOrientation, but not luck. Does anyone have any ideas?
public class GUIInventory extends JPanel
{
Box headersBox = Box.createHorizontalBox();
Box cellsBox = Box.createVerticalBox();
JScrollPane scrollPane;
ArrayList<Box> rows = new ArrayList<>();
... | |
doc_34277 | Here is my Code:
HelloWorldScene.h
using namespace cocos2d;
using namespace cocos2d::extension;
using namespace std;
USING_NS_CC;
USING_NS_CC::extension;
class HelloWorld : public cocos2d::CCLayer,public CCEditBoxDelegate
{
public:
virtual bool init();
static cocos2d::CCScene* scene();
void menuCloseCallback(CCOb... | |
doc_34278 | here is my code:
const App = () => {
const user = false;
const navigate = useNavigate();
return (
<div className="bg-[#0b0b0b]">
<Router>
<Routes>
{user ? (<Route path="/" element={<Home />} />) : (navigate("/register"))}
<Route path="/movies" element={<Home type="movie" />} ... | |
doc_34279 | How can I save my own customized launch configuration as a template? Just like C++ (GDB/LLDB) template
So that I can re-use it easily every time I open a new folder(project).
I don't want to add it under global launch configuration. Adding it there would start showing up my launch configurations even for other kind of ... | |
doc_34280 | function timer() {
for (let i = 0; i < 10; i++) {
setTimeout(function () {
console.log(i);
}, i * 2000);
}
}
timer();
A: Because if you use the static value 2000 then all 10 values will be logged to the console simultaneously after 2 seconds. The intent instead is to log a value ... | |
doc_34281 | if (oLevel.PostPreID == 2)
{
if (db.OL.Any(x => DbFunctions.TruncateTime(x.Date) == DbFunctions.TruncateTime(oLevel.FlightDate) && x.PostPreID == oLevel.PostPreID && x.AID == oLevel.AID && x.deleted == false))
{
Response.Write(@"<script language='javascrip... | |
doc_34282 | var canvas = document.createElement ("canvas");
var ctx = canvas.getContext("2d");
canvas.width = document.width;
canvas.height = document.height;
document.body.appendChild(canvas);
It resizes itself to the browser window.
I have a gradient background being drawn onto the one canvas along with all the other eleme... | |
doc_34283 | I can run my JAR through the included ANT build file just fine. It runs, and shows output, and all kinds of groovy stuff. Now, if I try to run this same JAR file through command line java -jar JARFile.jar it croaks out. It gives a NullPointerException. Fun, right?
The offending line of code follows, specifically line 3... | |
doc_34284 | #include <stdio.h>
#include <windows.h>
bool captureAndSave(const HWND& hWnd, int nBitCount, const char* szFilePath)
{
if(!szFilePath || !strlen(szFilePath))
{
printf("bad function arguments\n");
return false;
}
//calculate the number of color indexes in the color table
int nColorT... | |
doc_34285 | I thought it would be easy to retrieve it, but I cannot see this data exposed by any property of Microsoft.TeamFoundation.WorkItemTracking.Client.Project nor Microsoft.TeamFoundation.Server.ProjectInfo.
I thought of querying the Collection databases, but the tables tbl_projects and tbl_project_properties do not have th... | |
doc_34286 | createASG = async function(csm)
{
const response = {
poolAsgName: csm._info.body["poolAsgName"],
region: csm._info.body["region"],
initialSize: csm._info.body["initialSize"],
MaxSize: csm._info.body["maxSize"]
}
... | |
doc_34287 | System.Runtime.InteropServices.COMException (0x80040154): Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).
at System.RuntimeTypeHandle.CreateIns... | |
doc_34288 | {_id: 'doc1', a: 5, b: 2, c: 0},
{_id: 'doc2', a: 4, b: 9, c: 6},
{_id: 'doc3', a: 1, b: 7, c: 4},
{_id: 'doc4', a: 8, b: 1, c: 1},
...
I'd like to sort this collection by various linear combinations of a, b, and c (in reality there are something like 20 fields I'd like to combine). So for example I'd like to sort by ... | |
doc_34289 | (the ones which isn't locations are dance-styles and vice versa)
$locations = get_terms("categorycourses", array('include' => array(townLocation1, townLocation2)));
$dance_styles = get_terms("categorycourses", array('exclude' => array(townLocation1, townLocation2)));
$content = '';
foreach ( $locat... | |
doc_34290 | the first condition even if i import an excel file and this cause the
exception, the exception say that An exception of type 'System.NullReferenceException' occurred in TestImportFromExcel.dll but was not handled in user code
Additional information: Object reference not set to an instance of an object.
public Action... | |
doc_34291 | I can duplicate it using something like left:5%; but I don't think that's what's happening in particular on this page. Because, watching it in the inspector, it's pixel-based sizing and using a percent keeps the percents in the CSS. Any idea what's happening on that page that I can't seem to duplicate?
I've looked thro... | |
doc_34292 | Here is my code:
<BoxLayout>:
spacing:"0dp"
orientation:"vertical"
Label:
text:"test"
background_color: (64/255, 64/255, 64/255,1)
size_hint:1,1
canvas.before:
Color:
rgba: self.background_color
Rectangle:
size: self.siz... | |
doc_34293 | setTimeout(function() {
page.sendEvent('keypress', "Hello world.\r\nThis is a test message.\r\n\"How are you doing?\" \/\/\/\/ 1111 ^^^^ 2222\u200A\u2014\u200A\u2014 3333 !!!! 4444 &&&& 5555 %%%% 6666 ???? 7777 ???? %%%% &&&& !!!! ^^^^\u200A\u2014\u200A\u2014 **** ++++ ====\r\n\r\n\r\n\r\n\r\n\"\u9053\u53EF\u9053... | |
doc_34294 | ||
doc_34295 | The input I have is:
I am trying to transpose it to the following:
I was hoping to use PIVOT functions as in SQL, but I cannot happen to find how creating PIVOTs works in the BigQuery Standard SQL feature.
Any ideas how to achieve this?
A: This is not Pivoting, it's UNION (comma operation)
Use simple union for
selec... | |
doc_34296 | I have a user control with multiple binding sources on that are bound to our business objects :
Library > Namespace > Class > Item
For some unknown reason and this has happened a handful of times without warning or any errors on save/build, the binding sources data source will change to :
Library > Namespace > Class
wh... | |
doc_34297 | CHROM POS SRR4216489 SRR4216675 SRR4216480
0 1 127536 ./. ./. ./.
1 1 127573 ./. 0/1:0,5:5:0:112,1,10 ./.
2 1 135032 ./. 1/1:13,0:13:3240:0,30,361 0/0:13,0:13:... | |
doc_34298 |
A: This example may be helpful for you, sorry not completely understand you in first time:
typedef void (^VoidBlock)(void);
@interface ClassName ()
@property (nonatomic, strong)VoidBlock animationBlock;
@end
- (void)runAnimation
{
NSArray *views = @[view1, view2, view3];
__weak LibraryViewController *... | |
doc_34299 | I have a "persistent" notification for my Foreground service, BUT now in 8+ there's a slider to mute my app notifications.
I can see that android system notifications and other apps remove this slider and display message:
"Notifications from this app can't be turned off".
How do I replicate this pattern?
I've read thr... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.