problem stringlengths 26 131k | labels class label 2
classes |
|---|---|
static int indeo3_decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
unsigned char *buf, int buf_size)
{
Indeo3DecodeContext *s=avctx->priv_data;
unsigned char *src, *dest;
int y;
if (buf_size == 0) {
retu... | 1threat |
int bdrv_all_find_snapshot(const char *name, BlockDriverState **first_bad_bs)
{
QEMUSnapshotInfo sn;
int err = 0;
BlockDriverState *bs;
BdrvNextIterator *it = NULL;
while (err == 0 && (it = bdrv_next(it, &bs))) {
AioContext *ctx = bdrv_get_aio_context(bs);
aio_context_acq... | 1threat |
how to display seats image in android like below picture? : [enter image description here][1]
Hi i want to display seat images like this in my app.i am new to android.I don't know what layout and methodology should i use.Currently i am planning list view,but i am not sure what method and layout should i use to use.any... | 0debug |
C++ Cannot instantiate abstract class error : <p>I'm a returning college student and my code is really rusty since its been years. We have a program where he gave us a UML template. Anyways im getting a c2259 error, cannot instantiate abstract classes, when I compile and I cannot find the issue. Any ideas? </p>
<pre><... | 0debug |
static int pfpu_decode_insn(MilkymistPFPUState *s)
{
uint32_t pc = s->regs[R_PC];
uint32_t insn = s->microcode[pc];
uint32_t reg_a = (insn >> 18) & 0x7f;
uint32_t reg_b = (insn >> 11) & 0x7f;
uint32_t op = (insn >> 7) & 0xf;
uint32_t reg_d = insn & 0x7f;
uint32_t r;
int latency ... | 1threat |
void hmp_migrate_set_parameter(Monitor *mon, const QDict *qdict)
{
const char *param = qdict_get_str(qdict, "parameter");
const char *valuestr = qdict_get_str(qdict, "value");
int64_t valuebw = 0;
long valueint = 0;
Error *err = NULL;
bool use_int_value = false;
int i;
for (i ... | 1threat |
int cpu_exec(CPUState *env)
{
int ret, interrupt_request;
TranslationBlock *tb;
uint8_t *tc_ptr;
unsigned long next_tb;
if (env->halted) {
if (!cpu_has_work(env)) {
return EXCP_HALTED;
}
env->halted = 0;
}
cpu_single_env = env;
if ... | 1threat |
I want to refresh fragment on itemselect in spinner. But unfortunatelly not properly work. My code is given below : overview_spMonth.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long i... | 0debug |
error: variable veryFar might not have been initialized, (using BigInteger Please help fix this : I am making a converter which will convert numbers to text.I did everything as said in this [website](https://developer360.net/java-program-convert-number-to-words-android-studio/) and edited for using big Integers but it ... | 0debug |
static int read_uncompressed_sgi(unsigned char* out_buf, SgiState *s)
{
int x, y, z;
unsigned int offset = s->height * s->width * s->bytes_per_channel;
GetByteContext gp[4];
uint8_t *out_end;
if (offset * s->depth > bytestream2_get_bytes_left(&s->g))
return AVERROR_INVALIDDATA... | 1threat |
Styling ionic 2 toast : <p>Is there any way to style the text message within an ionic 2 toast?</p>
<p>I have tried this:</p>
<p><div class="snippet" data-lang="js" data-hide="false">
<div class="snippet-code">
<pre class="snippet-code-js lang-js prettyprint-override"><code> let toast = Toast.create({
mess... | 0debug |
int cpu_get_memory_mapping(MemoryMappingList *list, CPUArchState *env)
{
if (!(env->cr[0] & CR0_PG_MASK)) {
return 0;
}
if (env->cr[4] & CR4_PAE_MASK) {
#ifdef TARGET_X86_64
if (env->hflags & HF_LMA_MASK) {
target_phys_addr_t pml4e_addr;
pml4e_a... | 1threat |
static void internal_snapshot_prepare(BlkTransactionState *common,
Error **errp)
{
Error *local_err = NULL;
const char *device;
const char *name;
BlockBackend *blk;
BlockDriverState *bs;
QEMUSnapshotInfo old_sn, *sn;
bool ret;
qemu_timeval ... | 1threat |
static void term_hist_add(const char *cmdline)
{
char *hist_entry, *new_entry;
int idx;
if (cmdline[0] == '\0')
return;
new_entry = NULL;
if (term_hist_entry != -1) {
hist_entry = term_history[term_hist_entry];
idx = term_hist_entry;
if (strcmp(hist_entry, cmdline) == 0) {
g... | 1threat |
Unable to convert a series into dictionary : <p>My function takes a data frame as an argument that represent home adverts from the website. I am counting flats by the number of rooms and receive series which I would like to convert into a dictionary. My <code>rooms counter</code> seems to be a series still after applyi... | 0debug |
document.write('<script src="evil.js"></script>'); | 1threat |
Combining csv files in R to different columns : <p>I have over 100 csv files, each containing one column of Date and Time (which are the exact same values for every file) and then a second column that is different for every file. I want the file name to be the column name. </p>
<p>So essentially I want to add a column... | 0debug |
Java scripts working locally but not on webserver. (Uncaught ReferenceError: jQuery is not defined) : I have a problem for which I have been searching the net for hours, but I can't find the solution.
I wrote a webpage with JQuery included. It runs file locally (as a file), but on the webserver, it keeps giving me an ... | 0debug |
Not successfully in appending an element to the list (Python) : <p>Not sure why the append function returns 'None" in following code</p>
<pre><code>dw=[1,3,5]
dw=[0]+dw
print(dw,type(dw))
dw=dw.append(12)
print(dw)
</code></pre>
<p>Output is: ([0, 1, 3, 5],'list'), None.</p>
<p>Why not [0,1,3,5,12] with append funct... | 0debug |
How to append a input value using jquery : I'm trying to change the input value of my text box using jquery here is my input
<input id="qty_10" class="input-text qty" name="qty" maxlength="3" value="1" style="display: none;" type="text">
and the jquery code
jQuery("#qty_10").val(selectedValue);
h... | 0debug |
static inline void RENAME(rgb24tobgr15)(const uint8_t *src, uint8_t *dst, long src_size)
{
const uint8_t *s = src;
const uint8_t *end;
#if COMPILE_TEMPLATE_MMX
const uint8_t *mm_end;
#endif
uint16_t *d = (uint16_t *)dst;
end = s + src_size;
#if COMPILE_TEMPLATE_MMX
__asm__ volatile(PRE... | 1threat |
static int gen_neon_unzip(int rd, int rm, int size, int q)
{
TCGv tmp, tmp2;
if (size == 3 || (!q && size == 2)) {
return 1;
}
tmp = tcg_const_i32(rd);
tmp2 = tcg_const_i32(rm);
if (q) {
switch (size) {
case 0:
gen_helper_neon_qunzip8(tmp, tmp2);
... | 1threat |
def position_max(list1):
max_val = max(list1)
max_result = [i for i, j in enumerate(list1) if j == max_val]
return max_result | 0debug |
/varible int time won't display the numeric value entered : <pre><code>//varible int time won't display the numeric value entered
</code></pre>
<p>The Speed of Sound
The following table shows the approximate speed of sound in air, water, and steel:
Medium Speed
Air 1,100 feet per second
Water 4,900 feet per second
Ste... | 0debug |
Android app UML classes diagram it is useful? : <p>I am now writing my thesis and I am thinking about if it useful to make UML classes diagram for Android App which have about 35 classes. If i make this diagram it will be very big and confusing. I know about plugins which makes this for you but I just thinking it is go... | 0debug |
covariant type A occurs in contravariant position in type A of value a : <p>I have following class:</p>
<pre><code>case class Box[+A](value: A) {
def set(a: A): Box[A] = Box(a)
}
</code></pre>
<p>And the compiler complain:</p>
<pre><code>Error:(4, 11) covariant type A occurs in contravariant position in type A o... | 0debug |
AWS : Redshift vs traditional dbms : <p>In traditional DBMS when we try to execute a insert into table and delete from the same table (delete just the data not table) I remember it will result in a deadlock. </p>
<p>With Redshift when I delete data and when I insert Data at the same time I’m able to do it. </p>
<p>Ho... | 0debug |
def max_of_nth(test_list, N):
res = max([sub[N] for sub in test_list])
return (res) | 0debug |
def eulerian_num(n, m):
if (m >= n or n == 0):
return 0
if (m == 0):
return 1
return ((n - m) * eulerian_num(n - 1, m - 1) +(m + 1) * eulerian_num(n - 1, m)) | 0debug |
How to check whether a string is equal to + opearator in Java : String value = "+";
if (value.contains("\\+"))
{
value = value.replaceAll("\\+", " ");
}
The if clause returns false. Why is it? What method should i use in the if clause for it to return true? Thanks in advance. | 0debug |
static void buffer_release(void *opaque, uint8_t *data)
{
*(uint8_t*)opaque = 0;
}
| 1threat |
save items of list with thier index in text file using c# : I have created a list in c#, now I need to save the list in text file with the index for each item in the list? please explain with a simple example. | 0debug |
reCAPTCHA with Content Security Policy : <p>I'm trying to make reCAPTCHA work along with a strict Content Security Policy. This is the basic version I have, which works correctly:</p>
<p>HTML</p>
<pre><code><script src='//www.google.com/recaptcha/api.js' async defer></script>
</code></pre>
<p>HTTP Header... | 0debug |
static int raw_truncate(BlockDriverState *bs, int64_t offset)
{
BDRVRawState *s = bs->opaque;
LONG low, high;
low = offset;
high = offset >> 32;
if (!SetFilePointer(s->hfile, low, &high, FILE_BEGIN))
return -EIO;
if (!SetEndOfFile(s->hfile))
return -EIO;
return 0;
}
| 1threat |
Pod install displaying error in cocoapods version 1.0.0.beta.1 : <p>My podfile was working but after updating to cocoapods version 1.0.0.beta.1</p>
<p>pod install displays following error</p>
<pre><code>MacBook-Pro:iOS-TuneIn home$ pod install
Fully deintegrating due to major version update
Deleted 1 'Copy Pods Resou... | 0debug |
Property 'payload' does not exist on type 'Action' when upgrading @ngrx/Store : <p>I have the <code>@ngrx/store</code> package in my angular (4.x) app, and am upgrading from v<strong>2.2.2</strong> -> v<strong>4.0.0</strong>. I can see that the migration notes say:</p>
<blockquote>
<p>The payload property has been r... | 0debug |
How To Sort Date Array In Swift? : I Want To Sort Array That Is Full Of Month with year example : ["Nov 2019","Apr 2020","MAR 2018","Jan 2018","May 2018"](non sorted) to -> ["Jan 2018","Mar 2018","May 2018","Nov 2019","Apr 2020"](sorted) like this...
u also give code in any language i convert to swift :)
fu... | 0debug |
static int scan_for_extensions(AVCodecContext *avctx)
{
DCAContext *s = avctx->priv_data;
int core_ss_end, ret;
core_ss_end = FFMIN(s->frame_size, s->dca_buffer_size) * 8;
if (s->core_ext_mask < 0 || s->core_ext_mask & DCA_EXT_XCH) {
s->core_ext_mask = FFMAX(s->core... | 1threat |
Attempted import error: 'addLocaleData' is not exported from 'react-intl' : <p>It's return error when i try this code </p>
<p>react-intl version 3.1.6 &&
react version 16.9</p>
<pre><code>import { IntlProvider, FormattedMessage , addLocaleData} from 'react-intl';
</code></pre>
| 0debug |
void tcg_gen_brcond_i32(TCGCond cond, TCGv_i32 arg1, TCGv_i32 arg2, int label)
{
if (cond == TCG_COND_ALWAYS) {
tcg_gen_br(label);
} else if (cond != TCG_COND_NEVER) {
tcg_gen_op4ii_i32(INDEX_op_brcond_i32, arg1, arg2, cond, label);
}
}
| 1threat |
static void avconv_cleanup(int ret)
{
int i, j;
for (i = 0; i < nb_filtergraphs; i++) {
FilterGraph *fg = filtergraphs[i];
avfilter_graph_free(&fg->graph);
for (j = 0; j < fg->nb_inputs; j++) {
while (av_fifo_size(fg->inputs[j]->frame_queue)) {
AVFra... | 1threat |
static int compand_delay(AVFilterContext *ctx, AVFrame *frame)
{
CompandContext *s = ctx->priv;
AVFilterLink *inlink = ctx->inputs[0];
const int channels = inlink->channels;
const int nb_samples = frame->nb_samples;
int chan, i, av_uninit(dindex), oindex, av_uninit(count);
AVFrame *out_fr... | 1threat |
db.execute('SELECT * FROM products WHERE product_id = ' + product_input) | 1threat |
Will C++ preprocessor deals with the content of a h file which is included by my current h file : <p>For example:
In my.h file, I included nest1.h</p>
<pre><code>#ifndef MY_H
#define MY_H
#include nest1.h
...
some_function_declaration
...
#endif
</code></pre>
<p>And in nest1.h, I included another h file nest2.h</p>
... | 0debug |
How to pass/get placeholder value? [PHP] : So I have a form where one entry is:
<input type="text" id="ptid" name="ptid" readonly="readonly" placeholder="<?php echo $pid; ?>">
The value of "$pid" is not null, I already got the value from database. Then I would like to get that value and pass to another php fi... | 0debug |
int ff_dxva2_is_d3d11(const AVCodecContext *avctx)
{
if (CONFIG_D3D11VA)
return avctx->pix_fmt == AV_PIX_FMT_D3D11VA_VLD;
else
return 0;
}
| 1threat |
void slirp_select_poll(fd_set *readfds, fd_set *writefds,
fd_set *xfds, int select_error)
{
}
| 1threat |
check box click on new window on selenium webdrive : [enter image description here][1][enter image description here][2]
i try thic check box click but not able to click on check box plese send me the xpath or css
[enter image description here][3]
i try xpath
//div//*[@id='thCheckBox']
.//*[@id='searchOrd... | 0debug |
Building with Intellij 2017.2 /out directory duplicates files in /build directory : <p>After updating to Intellij 2017.2, building my project creates an <code>/out</code> directory that contains generated source files and resource files. These files duplicate files that are already contained in <code>/build</code> and ... | 0debug |
PyCharm: always mark venv directory as excluded : <p>In Python 3, I've moved away from creating virtualenvs in <code>~/.virtualenvs</code> and towards keeping them in the project directory <code>./venv</code></p>
<p>However now search results in every PyCharm project include results from <code>venv</code> subdirectori... | 0debug |
static void pop_output_configuration(AACContext *ac) {
if (ac->oc[1].status != OC_LOCKED) {
if (ac->oc[0].status == OC_LOCKED) {
ac->oc[1] = ac->oc[0];
ac->avctx->channels = ac->oc[1].channels;
ac->avctx->channel_layout = ac->oc[1].channel_layout;
}else{
... | 1threat |
i am using visual studio and i have a table, but when i insert it gives me error : ***i am trying to insert data into the table but it is not allowing me it gives me an error and i think the error is from the role i dont know how to fix it so please i need help thank you***
**this is the member table that i am using... | 0debug |
Expected 'this' to be used by class method : <p>In my class, eslint is complaining "Expected 'this' to be used by class method 'getUrlParams'</p>
<p>Here is my class:</p>
<pre><code>class PostSearch extends React.Component {
constructor(props) {
super(props);
this.getSearchResults();
}
getUrlParams(que... | 0debug |
Change CSS code when div elemet ist clicked : I'm currently trying to make a little photo album for a website.
There are some small photo thumbnails on the left side. If you click one of them it should appear on the right side in full resulution. I thought you could solve this by overlapping all pictures and put them ... | 0debug |
static MatroskaLevel1Element *matroska_find_level1_elem(MatroskaDemuxContext *matroska,
uint32_t id)
{
int i;
MatroskaLevel1Element *elem;
if (id == MATROSKA_ID_CLUSTER)
if (id != MATROSKA_ID_SEEKHEAD) {
for (i = 0; i < matroska->... | 1threat |
When would you use global variables over arguments in a function? : <p>When would you use a global variable instead of an argument, vis versa. Also, why would you do this?</p>
<p>99.9% of the time, I use global variables then return a product of those variables. I rarely use Arguments in my functions, but I want to kn... | 0debug |
static int jpeg2000_decode_packet(Jpeg2000DecoderContext *s,
Jpeg2000CodingStyle *codsty,
Jpeg2000ResLevel *rlevel, int precno,
int layno, uint8_t *expn, int numgbits)
{
int bandno, cblkno, ret, nb_code_blocks... | 1threat |
def count_Squares(m,n):
if(n < m):
temp = m
m = n
n = temp
return ((m * (m + 1) * (2 * m + 1) / 6 + (n - m) * m * (m + 1) / 2)) | 0debug |
Splitting hashmap key : I'm having a problem where I need to put an abbreviation of a word and its full form into hashmap. Then I need to make a program that asks you the words and then prints the full words from the map for you. I can do it with one word but the problem is when it asks many keys with strings.
For ... | 0debug |
Sort array of objects by a key : <p>I am using mongoose and I want to sort an array of objects by a key "position". In my array the objects "position" is: 0, 1 , 3, 2. I want to sort them by the "position".</p>
<pre><code> "images": [
{
"_id": {
"$oid": "5bcf24f8b639a936d5471b04"
},
... | 0debug |
How to access User in a service context in web API? : <p>If you are in a controller context, you can access the current authenticated User. Take an article such as <a href="https://stackoverflow.com/questions/21616951/get-the-current-user-within-an-apicontroller-action-without-passing-the-userid">Get the current user, ... | 0debug |
Easy ways to separate DATA (Dev-Environments/apps/etc) partition from Linux System minimal sized OS partition? Docker or Overlayfs Overlayroot? Other? : <p>Back when the powers that be didn't squeeze the middle-class as much and there was time to waste "fooling around" etc, I used to compile everything from scratch fro... | 0debug |
Apply CSS :not() and :hover in LESS : I have some elements with a specific class (let's call `.option`), and some of them has an other class in addition (let's call `.selected`). I would like to apply some `:hover` style definition on `.option` elements, but only the ones that has no `.selected` class.
I already fig... | 0debug |
Regex pattern matching [ ] : <p>I need to match a pattern such as this <code>[1712][***matchhere***]</code> where I just need the text between the second set of [ ]. </p>
| 0debug |
How to remove or exclude an item in an Ansible template list? : <p>I'm writing an Ansible template that needs to produce a list of ip's in a host group, <strong><em>excluding</em></strong> the current hosts IP. I've searched around online and through the documentation but I could not find any filters that allow you to ... | 0debug |
Can non-type template parameters in c++17 be decltype(auto)? : <p>I discovered that gcc and clang allow to use <code>decltype(auto)</code> in non-type template parameter type clause. E.g.:</p>
<pre><code>template <decltype(auto)>
struct X {};
int foo ;
int main() {
X<(foo)> x;
static_cast<void... | 0debug |
Can NodeJs be used on the web just like php : <p>Guys i'm new in Nodejs,</p>
<p>please can it be used on the web like php?</p>
| 0debug |
Dealing with non required forms in mysqli : <p>I am attempting to insert variables from a form into a mySQL database using a mysqli prepared statement. The problem I have run into is that one of my variables is not required and so when i don't enter anything for it in the form I get an error.
How do I properly deal wi... | 0debug |
Syntax of read() for file handling in c++ : Eg is Structure Customer and structure variable savac.
The syntax to read is
**read((char *) &savac,sizeof(customer))**
What is the need of type casting to character array here? | 0debug |
START_TEST(simple_number)
{
int i;
struct {
const char *encoded;
int64_t decoded;
} test_cases[] = {
{ "0", 0 },
{ "1234", 1234 },
{ "1", 1 },
{ "-32", -32 },
{ "-0", 0 },
{ },
};
for (i = 0; test_cases[i].encoded; i++) ... | 1threat |
void *etraxfs_dmac_init(target_phys_addr_t base, int nr_channels)
{
struct fs_dma_ctrl *ctrl = NULL;
ctrl = g_malloc0(sizeof *ctrl);
ctrl->bh = qemu_bh_new(DMA_run, ctrl);
ctrl->nr_channels = nr_channels;
ctrl->channels = g_malloc0(sizeof ctrl->channels[0] * nr_channels);
memory_region_init_... | 1threat |
Customer with multiple loans : I want to know the SQL query for identification of customers who have taken the multiple loan & next availed loan is within 60 days from the purchase of first loan.
Data - Customerid, Loan Opening Date , Loan Closing Date, Rank
Please help. | 0debug |
Split String into Array of subarrays : <p>This question is related to my <a href="https://stackoverflow.com/questions/55396179/split-string-into-array-of-arrays">Previous question</a></p>
<p>I am writing an iOS App in Swift 4.2</p>
<p>Response from server is a string with values separated by pipe character "". It con... | 0debug |
Basic of Git explained in a easy to understand terminology : <p>I am using GIT, have been using commands like pull, push, merge, rebase, fetch but really not understanding what they actually do. I tried googling but the over complex terms set me off. Can anybody guide or explain Git in a more lucid way.</p>
| 0debug |
Golang json decoding returns empty : <p>Can some one please explain to me why this code fail to decode json properly: </p>
<pre><code>package main
import (
"fmt"
"os"
"log"
"encoding/json"
)
type Config struct {
mongoConnectionString string `json:"database"`
Elastic struct{
main string... | 0debug |
How is multiple User Interface or Views achieved in Chrome App AND How do i connect to MySQL from the Chrome App : I have a web portal developed with Php and MySQL. I want to create a desktop app to work to connect to the Database through the internet. I have two huge challenges
1. Chrome App doesn't navigate from pag... | 0debug |
static void qed_aio_next_io(QEDAIOCB *acb)
{
BDRVQEDState *s = acb_to_s(acb);
uint64_t offset;
size_t len;
int ret;
trace_qed_aio_next_io(s, acb, 0, acb->cur_pos + acb->cur_qiov.size);
if (acb->backing_qiov) {
qemu_iovec_destroy(acb->backing_qiov);
g_free(acb->backin... | 1threat |
static int op_to_movi(int op)
{
switch (op_bits(op)) {
case 32:
return INDEX_op_movi_i32;
#if TCG_TARGET_REG_BITS == 64
case 64:
return INDEX_op_movi_i64;
#endif
default:
fprintf(stderr, "op_to_movi: unexpected return value of "
"function op_bits.\n");
... | 1threat |
How to check if something new appears on a certain web page in Python? : <p>I am scraping a web page using BS4 & Scrapy. Is there a way to check if something new appears? If so, can it be copied and printed out?<br>
For example, <a href="http://www.flashscore.com/match/0foYiLmk/#match-summary" rel="nofollow norefer... | 0debug |
Symfony 4 - How to organize my form collection? : <p>In my Symfony 4 project, I have a Validator entity that contains the 'order' and 'user' fields that refer to a user of my User entity.</p>
<p>The goal is to allow the site administrator to establish a list of users who can validate certain requests from other users,... | 0debug |
def factorial(start,end):
res = 1
for i in range(start,end + 1):
res *= i
return res
def sum_of_square(n):
return int(factorial(n + 1, 2 * n) /factorial(1, n)) | 0debug |
What is the median value is decimal? : <p>I'm writing a program to find the median of an array in CPP. I am not sure if I have a clear idea about what a median is. As far as I know, I've written my program to find median but when the array is even-numbered, I'm confused whether I should print the ceiling or ground valu... | 0debug |
static int64_t alloc_block(BlockDriverState* bs, int64_t sector_num)
{
BDRVVPCState *s = bs->opaque;
int64_t bat_offset;
uint32_t index, bat_value;
int ret;
uint8_t bitmap[s->bitmap_size];
if ((sector_num < 0) || (sector_num > bs->total_sectors))
return -1;
i... | 1threat |
event: "Deprecated symbol used, consult docs for better alternative" : <p>It's been a while that PyCharm (I suppose it's the same with WebStorm and other JetBrains IDEs) raise a weak warning on the <code>event</code> variables I use in my code.</p>
<p>For instance in the following code</p>
<pre class="lang-html prett... | 0debug |
av_cold void ff_fmt_convert_init_arm(FmtConvertContext *c, AVCodecContext *avctx)
{
int cpu_flags = av_get_cpu_flags();
if (have_vfp(cpu_flags)) {
if (!have_vfpv3(cpu_flags)) {
c->int32_to_float_fmul_scalar = ff_int32_to_float_fmul_scalar_vfp;
c->int32_to_float_fmul_array... | 1threat |
How to get selected item from spinner in android : <p>In android I used a spinner to select an item from a list of items. Now I have to use that selected item in java. How can I do that? </p>
| 0debug |
how to make count down timer to disable the button for one day : I am developing a quiz app in it i retrieve one question per day date wise and user has to answer only this retrieved question. I want to disable my button after user submitted his answer and it remain disabled till next day. | 0debug |
Complete a string base on index of last character : <p>Example Word : String , the returned last index is 5 which is "g". I need to complete the word string base on the space before the word.</p>
<p>For example</p>
<p>obj string the last index is 5, which is g, "string" word should be completed.</p>
| 0debug |
Read a .dat file in java and compare with Database table result : <p>My Requirement is we get .dat files from developers, We need to verify if the .dat files and database table result are same</p>
<p>Sample .dat file looks like</p>
<p>3009706~~F18130000010~~R60629572~~0~~936~~1~~PA4~~PA3~~~~~~~~~~~~~~Y~~
3009712~~F18... | 0debug |
Need help splitting a string thats being passed into a function in C++ : <p>I'm working on some code right now but am unable to do accomplish this task. The objective is to take a string that is passed through a function.
Example function:</p>
<pre><code>void function(string line1, string line2, string line3)
</code><... | 0debug |
db.execute('SELECT * FROM employees WHERE id = ' + user_input) | 1threat |
Good morning everybody, I would like to ask for your help for python 3. I'm trying to : I'm trying to print all odds values from 1 up to 20 on separates line
for h in range(1, ... | 0debug |
How to apply global styles with CSS modules in a react app? : <p>I'm currently using CSS Modules with React for my styling. So each of my components is importing in it's component specific css file, like so:</p>
<pre><code>import React from 'react';
import styles from './App.css';
const example = () => (
<div... | 0debug |
How can I read a json array in PHP : <p>I have this array that I read (using curl) in PHP
it returns a string that looks like a json so I convert it into a real json.</p>
<p>But what ever I do to read it, does not work:</p>
<p>what am I doing wrong and how can I reach those values?</p>
<p><strong>This is the result ... | 0debug |
how to fox an object not to move out of frame in java : Fix this code in such way that rectangle does not move out of frame bounds
frame size is (400,400)
public void moveRectangle(int dx, int dy) {
rect.translate(dx * RECT_WIDTH, dy * RECT_HEIGHT);
repaint();
} | 0debug |
static void spapr_tce_reset(DeviceState *dev)
{
sPAPRTCETable *tcet = SPAPR_TCE_TABLE(dev);
size_t table_size = tcet->nb_table * sizeof(uint64_t);
memset(tcet->table, 0, table_size);
}
| 1threat |
av_cold int ff_vp56_init_context(AVCodecContext *avctx, VP56Context *s,
int flip, int has_alpha)
{
int i;
s->avctx = avctx;
avctx->pix_fmt = has_alpha ? AV_PIX_FMT_YUVA420P : AV_PIX_FMT_YUV420P;
if (avctx->skip_alpha) avctx->pix_fmt = AV_PIX_FMT_YUV420P;
... | 1threat |
void ff_h264_direct_ref_list_init(const H264Context *const h, H264SliceContext *sl)
{
H264Ref *const ref1 = &sl->ref_list[1][0];
H264Picture *const cur = h->cur_pic_ptr;
int list, j, field;
int sidx = (h->picture_structure & 1) ^ 1;
int ref1sidx = (ref1->reference & 1) ^ 1;
for... | 1threat |
What * symbol mean in python? : What this mean `np.random.rand(*H1.shape)` ?
and what type of output here:
` np.random.rand(*H1.shape) < p ## p= 0.60 60%`
I tried Numpy documentation but not get it | 0debug |
Is it possible to : I have two tables in Big Query
Table A:
+-------+---------+
| total | date |
+-------+---------+
| 1 | 01-01-17|
| 3 | 01-02-17|
| 2 | 01-03-17|
+-------+---------+
Table B:
+-------+---------+
| ..... | date |
+---... | 0debug |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.