problem
stringlengths
26
131k
labels
class label
2 classes
Visual Studio Code quick-fix & python : <p>Visual Studio Code is never able to populate the 'Quick Fix' contextual drop down, only displaying 'No Code Actions Available'</p> <p>Python extension is installed, along with python3.7.3 and flake8, pep8.</p>
0debug
NPM stuck giving the same error EISDIR: Illegal operation on a directory, read at error (native) : <p>I am stuck with this error no matter what directory I am in, and what I type after "npm" in cmd.exe. Here is the npm-debug.log: </p> <pre><code>0 info it worked if it ends with ok 1 verbose cli [ 'C:\\Program Files\\n...
0debug
db.execute('SELECT * FROM products WHERE product_id = ' + product_input)
1threat
RegEx to remove key and certificate headers and footers : <p>I need to strip out the header and footer of key and certificate files (as well as any LF found in the data). Yes, I can use String.Replace for all of the headers and footers but it can be done in one or perhaps two lines using RegEx. My problem is that I kno...
0debug
static inline int l1_unscale(int n, int mant, int scale_factor) { int shift, mod; int64_t val; shift = scale_factor_modshift[scale_factor]; mod = shift & 3; shift >>= 2; val = MUL64(mant + (-1 << n) + 1, scale_factor_mult[n-1][mod]); shift += n; return (int)((...
1threat
how to use val insted of var in scala : I simply want to remove var and use Val instead in below code def getConfigId: Long = { val object1: java.util.List[objectA] = objectRepo.findByUser(User(session.id)) var object2: objectA = null if (object1.size() == 1) { object2 = object1.get(0...
0debug
Bootstrap 4.2.1 - Failed to execute 'querySelector' on 'Document': 'javascript:void(0);' is not a valid selector : <p>I am working on a project which I started building on <strong>bootstrap 4.0.0</strong>. During this project, I had updated bootstrap regulary whenever the new versions ( 4.1.0 , 4.1.3 ) of bootstrap ca...
0debug
static target_ulong disas_insn(DisasContext *s, CPUState *cpu) { CPUX86State *env = cpu->env_ptr; int b, prefixes; int shift; TCGMemOp ot, aflag, dflag; int modrm, reg, rm, mod, op, opreg, val; target_ulong next_eip, tval; int rex_w, rex_r; target_ulong pc_start = s->base.pc_nex...
1threat
ngrok speed became slow : <p>Ive been using <a href="https://ngrok.com/" rel="noreferrer">ngrok</a> to test an app on my phone, with react-native for the past 2 weeks. And so far its been pretty decent and quick. </p> <p>Until today. Now it suddenly takes about 50 seconds for a request to make a roundtrip from my ph...
0debug
static int kvm_get_fpu(CPUState *env) { struct kvm_fpu fpu; int i, ret; ret = kvm_vcpu_ioctl(env, KVM_GET_FPU, &fpu); if (ret < 0) return ret; env->fpstt = (fpu.fsw >> 11) & 7; env->fpus = fpu.fsw; env->fpuc = fpu.fcw; for (i = 0; i < 8; ++i) env->fptags[i] = !((f...
1threat
static void virtio_balloon_to_target(void *opaque, ram_addr_t target, MonitorCompletion cb, void *cb_data) { VirtIOBalloon *dev = opaque; if (target > ram_size) { target = ram_size; } if (target) { dev->num_pages = (ram_size - target) >> VIR...
1threat
Why Do We Extend Application Class In Android : <p>Why do we extend application class. Android apps run properly even without extending it.</p> <p>Can anyone explain this scenario as why exactly do we extend it.</p> <p>For Example:</p> <pre><code>public class MyApp extends Application { private static MyApp app...
0debug
static int bayer_to_yv12_wrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]) { const uint8_t *srcPtr= src[0]; uint8_t *dstY= dst[0]; uint8_t *dstU= dst[1]; uint8_t *dstV= dst[2]; int i; ...
1threat
Servlet with Mysql database : I have the following Servlet code with mysql database.I have written query for displaying source to destination cost that will be retrieved from database.But how to write a query that will return same cost when i reverse my source and destination in the select box? import java.io....
0debug
to many IF how to make quicker search c# : <p>Have 5 Names and 5 number. Giv name need number. better way?</p> <pre><code> string name = "Mark"; int x; if(name == "John") { x = 1; }else if(name == "Jimy"){ x = 2; }else if(name == "Mark"){ x = 3; }.... etc return x; </code></pre> <p>result is x=3.</p>
0debug
Best way to add "display: flex" to flexslider2 [wordpress plugin] slide? : <p>I want to add "display: flex" to flexslider2 slides but the plugin's javascript sets the slides to "display: block" so I can't just declare that in my wp theme stylesheet because the javascript's style declarations take precedence over the st...
0debug
void ff_MPV_encode_init_x86(MpegEncContext *s) { int mm_flags = av_get_cpu_flags(); const int dct_algo = s->avctx->dct_algo; if (dct_algo == FF_DCT_AUTO || dct_algo == FF_DCT_MMX) { #if HAVE_MMX_INLINE if (mm_flags & AV_CPU_FLAG_MMX && HAVE_MMX) s->dct_quantize = dct_quantize_MM...
1threat
Running an uber jar from sbt assembly results in error: Could not find or load main class : <p>I have a spark job packaged as an uber-jar using the sbt assembly plugin. The <code>build.sbt</code> specifies a runnable main to be the target of the resulting uber-jar</p> <pre><code>mainClass in assembly := Some("com.foo....
0debug
static int pic_arrays_init(HEVCContext *s) { int log2_min_cb_size = s->sps->log2_min_cb_size; int width = s->sps->width; int height = s->sps->height; int pic_size = width * height; int pic_size_in_ctb = ((width >> log2_min_cb_size) + 1) * ...
1threat
av_cold int ff_msmpeg4_decode_init(AVCodecContext *avctx) { MpegEncContext *s = avctx->priv_data; static int done = 0; int i; MVTable *mv; ff_h263_decode_init(avctx); common_init(s); if (!done) { done = 1; for(i=0;i<NB_RL_TABLES;i++) { init_rl(&...
1threat
How to stop IntelliJ IDEA from expanding the "External Libraries" with "Autoscroll from Source" enabled? : <p>I'm using IntelliJ with Java and the "Autoscroll from Source" function enabled.</p> <p>I like when the IDE jumps to the class in the package list, but it will also expand the "External Liubraries" making the w...
0debug
static int alloc_picture(H264Context *h, Picture *pic) { int i, ret = 0; av_assert0(!pic->f.data[0]); if (h->avctx->hwaccel) { const AVHWAccel *hwaccel = h->avctx->hwaccel; av_assert0(!pic->hwaccel_picture_private); if (hwaccel->priv_data_size) { pic->hwaccel_...
1threat
static void vp5_parse_coeff_models(VP56Context *s) { VP56RangeCoder *c = &s->c; VP56Model *model = s->modelp; uint8_t def_prob[11]; int node, cg, ctx; int ct; int pt; memset(def_prob, 0x80, sizeof(def_prob)); for (pt=0; pt<2; pt++) for (node=0; node<11; node...
1threat
why it's impossible to sort a string just like a sorting of a c++ array? : <p>can't we sort a string just like a classical sorting(bubble sort or something..) of an array?I tried. But it's not working.</p> <pre><code>string newstr = "dcba"; for(int i = 0; i &lt; (newstr.size())-1; i++) { for(int k = i+1; k...
0debug
If i am getting 1 TB of data daily basis what would be my cluster size in hadoop : <p>Cloud era distribution Cloud computing Amazon Web Services What should be the EC2 type of instance</p>
0debug
I have Error in c++ when i write my code say : Error 1 error C2601: 'circle' : local function definitions are illegal : **i have problem inn c++ when i write this code the vs say error C2601: 'circle' : local function definitions are illegal** *how can find solution for the problem* #include < iostream > ...
0debug
Search button value/id and addclass/changecolor : how can i search for a button id/value using jquery, if textbox = button value, addclass to it, dynamically since the button and their ID's are inside database and looped to display
0debug
How to access JSON nested objects with ruby? : <p>so I have a JSON file that is made of nested objects that follow the following pattern : <code>parent -&gt; child -&gt; grand_child</code> and looks like the following : </p> <pre><code>//seed.json { "parent_0":[ { "child_10":[ {...
0debug
How to check that string further doesn't contain a dot : <p>Maybe someone could help me with this:</p> <p>I have a string such as <code>"1.something"</code>, <code>"1.0.something"</code> or <code>1.0.0.something</code> </p> <p>The question is how can I check that there is no more dot in <em>something</em> section? </...
0debug
Control is not waiting to read for string object in JAVA programming : [**What is the problem with this code? When I execute it control is waiting to read.**][1] [1]: http://i.stack.imgur.com/ZZstQ.png
0debug
Regex for accepting Aplahanumric and Numeric, but not Alphabates : <p>I want the <code>regular expression</code> in <code>java script</code> which accepts both Alphanumeric and only numeric, space and period is allowed.</p> <p><strong>Acceptable:</strong></p> <p>Hello Mr. 3367</p> <p>6576567 55</p> <p>3432 abc</p> ...
0debug
Check that button is disabled in react-testing-library : <p>I have a React component that generates a button, which content contains <code>&lt;span&gt;</code> element like this one:</p> <pre><code>function Click(props) { return ( &lt;button disable={props.disable}&gt; &lt;span&gt;Click me&lt;/s...
0debug
How can I remove default version of bundler? : <p>I tried to change default bundle version but it getting updated with 2 default version. How can I modify to single default?</p> <pre><code>$ gem list bundler *** LOCAL GEMS *** bundler (2.0.1, default: 1.16.6, default: 1.16.2) </code></pre> <p>If I do gem uninstall ...
0debug
error on window.location.hash : <p>i have rails app where i modify some files and then run bundle instal and assets:precompile.</p> <p>after that i have error in file wich was not changed. part of file where error happened:</p> <pre><code>&lt;script type="text/javascript"&gt; function openCurrentTab() { var hash = ...
0debug
static void copy_video_props(AVFilterBufferRefVideoProps *dst, AVFilterBufferRefVideoProps *src) { *dst = *src; if (src->qp_table) { int qsize = src->qp_table_size; dst->qp_table = av_malloc(qsize); memcpy(dst->qp_table, src->qp_table, qsize); } }
1threat
int load_uboot(const char *filename, target_ulong *ep, int *is_linux) { int fd; int size; uboot_image_header_t h; uboot_image_header_t *hdr = &h; uint8_t *data = NULL; fd = open(filename, O_RDONLY | O_BINARY); if (fd < 0) return -1; size = read(fd, hdr, sizeof(ubo...
1threat
petalogix_ml605_init(QEMUMachineInitArgs *args) { ram_addr_t ram_size = args->ram_size; const char *cpu_model = args->cpu_model; MemoryRegion *address_space_mem = get_system_memory(); DeviceState *dev, *dma, *eth0; Object *peer; MicroBlazeCPU *cpu; SysBusDevice *busdev; CPUMBSta...
1threat
static int fdk_aac_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt) { FDKAACDecContext *s = avctx->priv_data; AVFrame *frame = data; int ret; AAC_DECODER_ERROR err; UINT valid = avpkt->size; err = aacDecoder_Fill(s->ha...
1threat
How do I break an input into individual characters in python? : <p>I would like to be able to take an input that could be anything from A-Z or 0-9 and of an indefinite quantity of characters and put them into a list. Here is an example of the code I am envisioning.</p> <pre><code> number = input() num_list = b...
0debug
Display text in textview and save it in cach : How can I display text ( title and message) in textview and save it in chach Thanks for all public class sev_data extends IntentService { public static boolean ServiceIsRun = false; public sev_data() { super("Service"); } @Override protected void onHandleIntent(@Null...
0debug
DECL_IMDCT_BLOCKS(sse,sse) DECL_IMDCT_BLOCKS(sse2,sse) DECL_IMDCT_BLOCKS(sse3,sse) DECL_IMDCT_BLOCKS(ssse3,sse) DECL_IMDCT_BLOCKS(avx,avx) #endif void ff_mpadsp_init_mmx(MPADSPContext *s) { int mm_flags = av_get_cpu_flags(); int i, j; for (j = 0; j < 4; j++) { for (i = 0; i < 40; i +...
1threat
static int update_packetheader(NUTContext *nut, ByteIOContext *bc, int additional_size){ int64_t start= nut->packet_start; int64_t cur= url_ftell(bc); int size= cur - start + additional_size; if(size != nut->written_packet_size){ int i; assert( size <= nut->written_packet_s...
1threat
How do I upgrade the Python installation in Windows 10? : <p>I have a Python 2.7.11 installed on one of my LAB stations. I would like to upgrade Python to at least 3.5.</p> <p>How should I do that ? Should I prefer to completely uninstall 2.7.11 and than install the new one ? Is there a way to update it ? Is an update...
0debug
How to see appended child nodes in `View Page Source`? : <p>I create elements and append them to <code>BODY</code> tag but I don't see them in page source. How can I see newly created tags in the source code?</p>
0debug
static int nvme_start_ctrl(NvmeCtrl *n) { uint32_t page_bits = NVME_CC_MPS(n->bar.cc) + 12; uint32_t page_size = 1 << page_bits; if (n->cq[0] || n->sq[0] || !n->bar.asq || !n->bar.acq || n->bar.asq & (page_size - 1) || n->bar.acq & (page_size - 1) || NVME_CC_MPS(n->bar.cc) < ...
1threat
What is the Bitwise complement of (-4) i.e. [~(-4)]? : <p>I am new at this portal, I am searching for Bitwise complement of (-4) or any negative number in Java. Can anyone help me out of this?</p>
0debug
Why i am using eslint, lint, in my NODE JS project? : I am looking for light,facile answer what is the benefit using eslint,lint in my Node js project
0debug
static int avisynth_read_packet_video(AVFormatContext *s, AVPacket *pkt, int discard) { AviSynthContext *avs = s->priv_data; AVS_VideoFrame *frame; unsigned char *dst_p; const unsigned char *src_p; int n, i, plane, rowsize, planeheight, pitch, bits; ...
1threat
Add conda environment info to terminal prompt : <p>(I'm using anaconda on a MacBook)<br> By default conda adds the environment info to the comand prompt as follows:</p> <pre><code>$ source activate my_env (my_env) $ source deactivate $ </code></pre> <p>This can be switched off and on using</p> <pre><code>conda con...
0debug
bat and exe to sellf delete : I have wrote a batch script which will open some websites ive also added a countdown timer and shutdown code , but im wondering if there is a way i would be able to delete it when its finished opening the website and before the shutdown but the other peoblem is ive tried to use "del (filen...
0debug
How do I retrieve the private key for a certificate generated on AWS Certificate Manager? : <p>Someone purchased a wildcard certificate via AWS Certificate Manager for their domain name and I need to transfer it to Heroku for an app that uses a sub-domain of the domain name.</p> <p>I can't figure out, either through t...
0debug
Regex for complex password : <p>This question has obviously been asked many times regarding how to make a regex using c# to meet the requirements. I require a regex that..</p> <ul> <li>Is at least 8 characters long</li> <li>At least 1 upper case character</li> <li>1 number</li> <li>1 special character !@#$%^&amp;*()</...
0debug
static void qdev_prop_set_globals_for_type(DeviceState *dev, const char *typename) { GlobalProperty *prop; QTAILQ_FOREACH(prop, &global_props, next) { Error *err = NULL; if (strcmp(typename, prop->driver) != 0) { continue; } ...
1threat
static int dirac_decode_frame_internal(DiracContext *s) { DWTContext d; int y, i, comp, dsty; int ret; if (s->low_delay) { for (comp = 0; comp < 3; comp++) { Plane *p = &s->plane[comp]; memset(p->idwt_buf, 0, p->idwt_stride * p->idwt_height * sizeof(ID...
1threat
static NetSocketState *net_socket_fd_init_stream(VLANState *vlan, const char *model, const char *name, int fd, int is_connected) { NetSocketState *s; s = qemu_...
1threat
How can I serialize a jgrapht simple graph to json? : <p>I have a simple directed graph from jgrapht and I am trying to serialize it into a JSON file using jackson as follows:</p> <pre><code>ObjectMapper mapper = new ObjectMapper(); File output = new File("P:\\tree.json"); ObjectWriter objectWriter = mapper.writer().w...
0debug
Ceaser Cipher using char * ? c++ : So i am trying to use the Ceaser Cipher with `char *`'s, i've written a simple function out like this: char * Encrypt(char * Source, int Key) { char * Crypted = Source; for(int Current = 0; Current < strlen(Source); Current++) Crypted[C...
0debug
static void mips_fulong2e_init(MachineState *machine) { ram_addr_t ram_size = machine->ram_size; const char *cpu_model = machine->cpu_model; const char *kernel_filename = machine->kernel_filename; const char *kernel_cmdline = machine->kernel_cmdline; const char *initrd_filename = machine->init...
1threat
C# enum and radiobuttons : Hello how can i tell if one radion buton is checked do something in swith? this is part of my code: this is in my class Person.cs public enum TypeTimer { Unlimited, Countdown, Limited} This is my switch where i will put the funciotns public Person(TypeTimer s1) ...
0debug
static int div_round (int dividend, int divisor) { if (dividend > 0) return (dividend + (divisor>>1)) / divisor; else return -((-dividend + (divisor>>1)) / divisor); }
1threat
PostgreSQL constraint using prefixes : <p>Let's say I have the following PostgreSQL table:</p> <pre><code>id | key ---+-------- 1 | 'a.b.c' </code></pre> <p>I need to prevent inserting records with a key that is a prefix of another key. For example, I should be able to insert:</p> <ul> <li><code>'a.b.b'</code></li>...
0debug
When to use external style sheet and the other types? : <p>I am a beginner in html/css, i want to know when i should use external ,internal,inline style sheets respectively. What makes the big difference.? [I read a couple of answers on the same site] but i need something which is more clear.</p>
0debug
sapnco BAPI invoked in CUA for child systems : Hi I am currently developing an C# application with sapnco 3 connector. I am wondering if I could invoke BAPI into CUA and this BAPI would pass details to child system. This field is available through Test Function Module (field "RFC target sys"), but it is unavailable d...
0debug
How to pass parameters into a SPARQL query : <p>How do I pass var1 and var2 into the sparql query shown below. I have the code below but its not returning anything. </p> <p>I appreciate your help on this. Thank you in adavnce</p> <pre><code>string var1, var2; var1 = DropDownList1.SelectedValue.ToString(); var2 = Drop...
0debug
Open a new tab in browser with custom html code. Javascript : <p>How do I have a function that opens a new tab in the browser with custom html that is generated in the root tab?</p>
0debug
AVInputFormat *av_probe_input_format2(AVProbeData *pd, int is_opened, int *score_max) { AVProbeData lpd = *pd; AVInputFormat *fmt1 = NULL, *fmt; int score, id3 = 0; if (lpd.buf_size > 10 && ff_id3v2_match(lpd.buf, ID3v2_DEFAULT_MAGIC)) { int id3len = ff_id3v2_tag_len(lpd.buf); i...
1threat
Kotlin - Override/Implement array-like accessor function : <p>Is it possible to override or implement the <code>[]</code> accessors in Kotlin (using operator overloading or similar)?</p> <pre><code>val testObject = MyCustumObject() println(testObject["hi"]) // i.e. implement this accessor. </code></pre> <p>In Python...
0debug
static int vc1_decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) { const uint8_t *buf = avpkt->data; int buf_size = avpkt->size, n_slices = 0, i; VC1Context *v = avctx->priv_data; MpegEncContext *s = &v->s; AVFrame *pict = data; ...
1threat
Is it "pythonic" to add attributes into class instance in runtime? : <p>Lets say I have a set of class instances to operate on. But I need some additional status variables per instance. The instance is not aware of them. Is it recommended to simply put such extra variable as attribute into an instance like this: <code>...
0debug
int av_write_frame(AVFormatContext *s, AVPacket *pkt) { int ret; compute_pkt_fields2(s->streams[pkt->stream_index], pkt); truncate_ts(s->streams[pkt->stream_index], pkt); ret= s->oformat->write_packet(s, pkt); if(!ret) ret= url_ferror(&s->pb); return ret; }
1threat
static uint32_t read_long(const unsigned char *p) { return (p[0]<<24)|(p[1]<<16)|(p[2]<<8)|p[3]; }
1threat
How to bring back "Add to home" banner for progressive web app after removed the icon from home screen? : <p>The reason - I made a <code>Progressive web app</code>, opened in the browser - all is fine and browser offered me to add it to home screen.</p> <p>Now, I want to demonstrate this on a presentation, and so - re...
0debug
int qcrypto_cipher_encrypt(QCryptoCipher *cipher, const void *in, void *out, size_t len, Error **errp) { QCryptoCipherBuiltin *ctxt = cipher->opaque; return ctxt->encrypt(cipher, in, out, len, errp);
1threat
static void write_section_data(AVFormatContext *s, MpegTSFilter *tss1, const uint8_t *buf, int buf_size, int is_start) { MpegTSContext *ts = s->priv_data; MpegTSSectionFilter *tss = &tss1->u.section_filter; int len; if (is_start) { memcpy(tss->section_buf,...
1threat
int bdrv_pwritev(BlockDriverState *bs, int64_t offset, QEMUIOVector *qiov) { int ret; ret = bdrv_prwv_co(bs, offset, qiov, true, 0); if (ret < 0) { return ret; } return qiov->size; }
1threat
How to Stored entered data into server database in android studio : **How to Stored entered data into server database in android studio**
0debug
static int qcow_check(BlockDriverState *bs) { return qcow2_check_refcounts(bs); }
1threat
android studios display name instead of email : How do i make the following code display the name as a welcome instead of the email?? When i just change EMAIL to Name it displys null instead of the name. Any help much appreciated. Ive tried changing email to name but this dosent work i dont know what else to do. ...
0debug
Entering data in a input from an other host : <p>I have a question, is possible to send data from an other host in an input of another host?</p> <p>For example, my host is www.example.com and i wanna send data to an input from the host called www.example2.com. Is it possible with PHP, Python, JavaScript?</p>
0debug
How to list the content of a named volume in docker 1.9+? : <p>Docker 1.9 added named volumes, so I..</p> <pre><code>docker volume create --name postgres-data docker volume ls </code></pre> <p>and I get</p> <pre><code>local postgres-data </code></pre> <p>all good so far.. </p> <p>so how do I see wh...
0debug
Can Python make an OS similar to Windows? : <p>I want to make a OS that could be gaming-friendly (like Windows) yet easy to use. I can already use Python perfectly fine, and I'm looking to see if I could make an OS with it. Is it possible? If not, what are some Python-like coding languages that I could use?</p> <p>I'v...
0debug
Java has .class file which is the executable file/ binary file. Same way what is it for Python or Javascript? : <p>In java .class files hide the actual source code and can only be executed. Am new to Python and JavaScript languages, how is source code protected in these languages? Do they also have something similar to...
0debug
static abi_ulong mmap_find_vma_reserved(abi_ulong start, abi_ulong size) { abi_ulong addr; abi_ulong end_addr; int prot; int looped = 0; if (size > reserved_va) { return (abi_ulong)-1; } size = HOST_PAGE_ALIGN(size); end_addr = start + size; if (end_addr > rese...
1threat
Using the $ selector in Chrome Console with on jQuery : <p>I'm wondering why I can use <code>$('.myelement')</code> in Google Chrome console? I thought that was only a jQuery thing. </p> <p>Is this part of JavaScript? </p>
0debug
int ff_rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st) { RTSPState *rt = s->priv_data; AVStream *st = NULL; int reordering_queue_size = rt->reordering_queue_size; if (reordering_queue_size < 0) { if (rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP || !s->max_delay) ...
1threat
How to combine multiple excel file into one? : I have multiple excel file in same format and I want to make a single file. How can I merge them into one single excel file. Thanks for help in advance.
0debug
recursive sub string length : im trying to write a recursive function that receives an array and its size and some other variables (of my choice). the function returns the length of the longest ascending substring in the array. the limitation are no loops and no calling other functions or using pointers or other librar...
0debug
FpPort *fp_port_alloc(Rocker *r, char *sw_name, MACAddr *start_mac, unsigned int index, NICPeers *peers) { FpPort *port = g_malloc0(sizeof(FpPort)); if (!port) { return NULL; } port->r = r; port->index = index; port->pport = index...
1threat
In Java, if one boolean true then all others become false : <p>I was wondering if it was possible in Java to have a series of booleans such as:</p> <pre><code> boolean boo1, boo2, boo3, boo4, boo5; </code></pre> <p>I want to make it so that if one of these booleans become true than all others become false. I know ...
0debug
Why does VS 2015 allow attributes separated by spaces while VS 2017 does not? : <p>Take the following simple code. The <code>DoMyCode</code> method has two attributes applied to it, with a space between the entries.</p> <pre><code>using System; namespace AttributeSpaceTesting { class Program { static ...
0debug
The email address is badly formatted. I don't know what's wrong with this can someone help me. : <p><a href="https://i.stack.imgur.com/PW3Dy.png" rel="nofollow noreferrer">Code is not working, I dont know what was the problem </a></p>
0debug
My site won't display content images : My website won't display images on http://teretana.mk/. When I open the debugging console in Chrome I get 2 errors which I do not understand at all(can be seen here http://i.imgur.com/2tLcsl3.jpg). I hope someone will be able to resolve this issue I've had all day. And hopefully t...
0debug
Python_Select only the rows with certain condition. (Key words: Duplicates, highest score, drop, functions, select) : ID IP Score vul1 12.345.678.01 5 vul2 12.345.678.01 7 vul3 12.345.678.01 10 vul4 12.345.678.02 7 vul5 12.345.678.02 10 I have a table that looks like...
0debug
int av_image_fill_black(uint8_t *dst_data[4], const ptrdiff_t dst_linesize[4], enum AVPixelFormat pix_fmt, enum AVColorRange range, int width, int height) { const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); int nb_planes = av_pix_fmt_count_planes...
1threat
SImple code runs correctly in DevC++ but not Virtual Studio Code : Code runs fine DevC++ but not Virtual studio Code Was doing a Homework question. Simple code adding two integers. Code looked fine but running it kept giving me the wrong result. After losing my mind I tried to run it in DevC++ to which it gave me t...
0debug
int av_open_input_file(AVFormatContext **ic_ptr, const char *filename, AVInputFormat *fmt, int buf_size, AVFormatParameters *ap) { int err; AVProbeData probe_data, *pd = &probe_data; ByteIOContext *pb = NULL; void *logctx= ap &...
1threat
How to add worksheet tab name in excel in SSRS Report : <p>I have multiple tab in my report and generate multiple worksheet tab name in excel.</p> <p>How to add worksheet tab name in excel in SSRS Report</p>
0debug
In a type trait, why do people use enum rather than static const for the value? : <p>For example, this is how I would write it, and it compiles and works just fine:</p> <pre><code>template&lt;typename T&gt; struct is_pointer&lt;T*&gt; { static const bool value = true; } </code></pre> <p>Then why do some people writ...
0debug
static int decode_exponents(GetBitContext *gbc, int exp_strategy, int ngrps, uint8_t absexp, int8_t *dexps) { int i, j, grp, group_size; int dexp[256]; int expacc, prevexp; group_size = exp_strategy + (exp_strategy == EXP_D45); for(grp=0,i=0; grp<ngrps; grp...
1threat
Matrix conversion : <p>How do I convert the following column matrix:</p> <pre><code>129 83 83 83 83 83 47 47 45 45 45 45 112 129 83 83 83 83 39 39 47 46 45 112 112 112 . . . </code></pre> <p>into this (using awk):</p> <pre><code>129 83 47 45 129 83 39 47 46 45 112 . . . </code></pre> <p>Basically, if I have any con...
0debug