problem
stringlengths
26
131k
labels
class label
2 classes
Trying to build user reviews based site : <p>Im trying to build a website based on wordpress that users could add reviews on their products. Therefore i need 1. an option for the user to fill up form with details (that i have chosen) about the product. 2. an option to add reviews on the same product - just like a comm...
0debug
angularjs directive to angular6 component/directive : <p>I have one angularjs directive as part of old application, I would like to convert that into angular6, As I dont know angularJS and currently working with angular6 version, could anybody please help me with pointer ? below is angularjs code.</p> <pre><code>defin...
0debug
static void init_2d_vlc_rl(RLTable *rl) { int i; init_vlc(&rl->vlc, TEX_VLC_BITS, rl->n + 2, &rl->table_vlc[0][1], 4, 2, &rl->table_vlc[0][0], 4, 2); rl->rl_vlc[0]= av_malloc(rl->vlc.table_size*sizeof(RL_VLC_ELEM)); for(i=0; i<rl->vlc.table_size; i++){ ...
1threat
Swift - How to set initial value for NSUserDefaults : <p>I have a switch called soundSwitch, I am saving the state of the button using an user default as such:</p> <pre><code>@IBAction func soundsChanged(sender: AnyObject) { if soundSwitch.on{ defaults.setBool(true, forKey: "SoundActive") ...
0debug
Vue components css background-image path error : <p>output</p> <pre><code> output: { path: config.build.assetsRoot, publicPath: process.env.NODE_ENV === 'production' ? config.build.assetsPublicPath : config.dev.assetsPublicPath, filename: '[name].js' } </code></pre> <p>base</p>...
0debug
Cannot use [chunkhash] or [contenthash] for chunk in '[name].[chunkhash].js' (use [hash] instead) : <p>I'm getting this error when trying to run <code>webpack build</code> with hashing in my config:</p> <pre><code>ERROR in chunk main [entry] [name].[chunkhash].js Cannot use [chunkhash] or [contenthash] for chunk in '[...
0debug
void *g_malloc_n(size_t nmemb, size_t size) { size_t sz; void *ptr; __coverity_negative_sink__(nmemb); __coverity_negative_sink__(size); sz = nmemb * size; ptr = __coverity_alloc__(size); __coverity_mark_as_uninitialized_buffer__(ptr); __coverity_mark_as_afm_allocated__(ptr, A...
1threat
onclick is not a function : Im trying to make a image to change depending on which field in the form that is active and the first (collar()) works and i copied and tried it for the next field (chest()) it says that isnt a function whats wrong? <input type="text" name="collar" placeholder="Collar" onclick="collar...
0debug
What is the "module" package.json field for? : <p>I've seen some npm packages (<a href="https://github.com/vuejs/vue/blob/v2.2.2/package.json#L6" rel="noreferrer">vue for example</a>) have a <code>pkg.module</code> field in their package.json. Is <code>"module"</code> an official npm property or is this a convention of...
0debug
Dagger 2.10 Android subcomponents and builders : <p>Using the new (in 2.10) dagger.android classes, I'm trying to inject things using a Subcomponent that depends on other Modules, and, therefore, has a Builder with setters for those modules. The documentation on <a href="https://google.github.io/dagger/android.html" re...
0debug
static void v9fs_read(void *opaque) { int32_t fid; uint64_t off; ssize_t err = 0; int32_t count = 0; size_t offset = 7; uint32_t max_count; V9fsFidState *fidp; V9fsPDU *pdu = opaque; V9fsState *s = pdu->s; pdu_unmarshal(pdu, offset, "dqd", &fid, &off, &max_count); ...
1threat
static void ehci_trace_qh(EHCIQueue *q, target_phys_addr_t addr, EHCIqh *qh) { trace_usb_ehci_qh(q, addr, qh->next, qh->current_qtd, qh->next_qtd, qh->altnext_qtd, get_field(qh->epchar, QH_EPCHAR_RL), get_field(qh->epchar, QH_EPCHAR_MPLEN), ...
1threat
void nelly_decode_block(NellyMoserDecodeContext *s, unsigned char block[NELLY_BLOCK_LEN], float audio[NELLY_SAMPLES]) { int i,j; float buf[NELLY_FILL_LEN], pows[NELLY_FILL_LEN]; float *aptr, *bptr, *pptr, val, pval; int bits[NELLY_BUF_LEN]; unsigned char v; init_get_bits(&s->gb, block, ...
1threat
static ssize_t block_crypto_write_func(QCryptoBlock *block, void *opaque, size_t offset, const uint8_t *buf, size_t buflen, ...
1threat
Confusion about sanity testing of software : <p>I have read several posts regarding smoke and sanity testing. All are almost confusing. Neither explaining them clearly,just repeating the matter except some two or three posts and based on that two or three posts i concluded that following is the formal process:</p> <p>...
0debug
Difference between Swagger & HATEOAS : <p>Can anyone explain difference between Swagger &amp; HATEOAS. I can Search many time but no buddy can explain the proper detailed answer this two aspects. </p>
0debug
What's the differences between tf.GraphKeys.TRAINABLE_VARIABLES and tf.GraphKeys.UPDATE_OPS in tensorflow? : <p>Here is <a href="https://www.tensorflow.org/api_docs/python/tf/GraphKeys" rel="noreferrer">doc</a> of tf.GraphKeys in tensorflow, such as <code>TRAINABLE_VARIABLES</code>: the subset of Variable objects that ...
0debug
Controlling Sankey diagram connections : <p>I'm trying to control which flows connect to each other using the Matplotlib Sankey diagram. I'm modifying the basic two systems example.</p> <p>I think my confusion comes down to misunderstanding what this actually means:</p> <blockquote> <p>Notice that only one connecti...
0debug
static void qemu_run_timers(QEMUClock *clock) { QEMUTimer **ptimer_head, *ts; int64_t current_time; if (!clock->enabled) return; current_time = qemu_get_clock (clock); ptimer_head = &active_timers[clock->type]; for(;;) { ts = *ptimer_head; if (!ts || ts->...
1threat
query = 'SELECT * FROM customers WHERE email = ' + email_input
1threat
Image wont load. ive used the jpg and i havent made any typos : I've been trying to load an image from my hard drive, but it wont show. i honestly dont know what im doing as im new to code. just learning to code <img src="SPQR.img.jpg" alt="SPQR">
0debug
static int push_samples(AVFilterContext *ctx, int nb_samples) { AVFilterLink *outlink = ctx->outputs[0]; LoopContext *s = ctx->priv; AVFrame *out; int ret, i = 0; while (s->loop != 0 && i < nb_samples) { out = ff_get_audio_buffer(outlink, FFMIN(nb_samples, s->nb_samples - s->current...
1threat
Not receving the complete data from arduino via bluetooth in android : #include <SoftwareSerial.h> int bluetoothTx = 11; int bluetoothRx = 12; SoftwareSerial bluetoot...
0debug
int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length, void *logctx, int is_nalff, int nal_length_size, enum AVCodecID codec_id) { int consumed, ret = 0; const uint8_t *next_avc = buf + (is_nalff ? 0 : length); pkt->nb_nals = 0...
1threat
static void mdct512(AC3MDCTContext *mdct, float *out, float *in) { mdct->fft.mdct_calc(&mdct->fft, out, in); }
1threat
Which one is better option to remove a file from linux system : <p>I want to remove a file present in /tmp, say san.txt</p> <p>I have two approach, Which one is better and why ?</p> <p>approach one:</p> <pre><code>int main(){ int status; pid_t pid = fork(); if(-1 == pid){ prin...
0debug
Gentle animation on website : <p>My client wants something similar to the action that occurs the first time you load the page <a href="http://www.denisechandler.com/" rel="nofollow noreferrer">http://www.denisechandler.com/</a> (the creation of those corals and the gentle drops once it finishes). I was thinking of doin...
0debug
static void init_proc_970MP (CPUPPCState *env) { gen_spr_ne_601(env); gen_spr_7xx(env); gen_tbl(env); spr_register(env, SPR_HID0, "HID0", SPR_NOACCESS, SPR_NOACCESS, &spr_read_generic, &spr_write_clear, 0x60000000); ...
1threat
how to map an IP to a domain name? : I have a website hosted on AWS EC2, it has an IP which is public, I can access the website anywhere from the public IP. and I have rented a domain name and the provider gave me a console. I am expecting this console has a field for me to enter public IP. Then it will resolve t...
0debug
SQL Update error. Instead of updating, its adding. : //for some reason it won't update, instead it will add the new data. I am a beginner, and I have hard time trying to find out the error. Thank you for the help. //Read function was working very properly and insert works just fine as well. Its just the updat...
0debug
void event_notifier_cleanup(EventNotifier *e) { CloseHandle(e->event); }
1threat
static void ref405ep_init(MachineState *machine) { ram_addr_t ram_size = machine->ram_size; const char *kernel_filename = machine->kernel_filename; const char *kernel_cmdline = machine->kernel_cmdline; const char *initrd_filename = machine->initrd_filename; char *filename; ppc4xx_bd_info_...
1threat
static void v9fs_clunk(void *opaque) { int err; int32_t fid; size_t offset = 7; V9fsFidState *fidp; V9fsPDU *pdu = opaque; V9fsState *s = pdu->s; pdu_unmarshal(pdu, offset, "d", &fid); trace_v9fs_clunk(pdu->tag, pdu->id, fid); fidp = clunk_fid(s, fid); if (fidp == ...
1threat
static av_cold int libx265_encode_init(AVCodecContext *avctx) { libx265Context *ctx = avctx->priv_data; ctx->api = x265_api_get(av_pix_fmt_desc_get(avctx->pix_fmt)->comp[0].depth); if (!ctx->api) ctx->api = x265_api_get(0); ctx->params = ctx->api->param_alloc(); if (!ctx->params) ...
1threat
How to convert ed25519 private key to putty ppk? : <p>I want to convert an ed25519 private key (which is generated by <code>ssh-keygen</code> command) to a ppk file. But I got the error.</p> <blockquote> <p>Couldn't load private key (unrecognized cipher name)</p> </blockquote> <p>Can someone help me?</p> <ul> <li>...
0debug
how to get value that often appear? : int[] nilai = {12,10,8,6,12,12,34,10,8,6,9,9,34,12,6,8,10,34,12,10,9,12}; int[] frekuensi = new int[23]; for (int i=0; i<nilai.length; i++) { frekuensi[i] = 0; } for (int i=0; i<nilai.length; ...
0debug
static void gpollfds_to_select(int ret) { int i; FD_ZERO(&rfds); FD_ZERO(&wfds); FD_ZERO(&xfds); if (ret <= 0) { return; } for (i = 0; i < gpollfds->len; i++) { int fd = g_array_index(gpollfds, GPollFD, i).fd; int revents = g_array_index(gpollfds, GPo...
1threat
Catch error if retryWhen:s retries runs out : <p>In the <a href="http://reactivex.io/documentation/operators/retry.html" rel="noreferrer">documentation for RetryWhen</a> the example there goes like this: </p> <pre><code>Observable.create((Subscriber&lt;? super String&gt; s) -&gt; { System.out.println("subscribing");...
0debug
static int raw_co_ioctl(BlockDriverState *bs, unsigned long int req, void *buf) { BDRVRawState *s = bs->opaque; if (s->offset || s->has_size) { return -ENOTSUP; } return bdrv_co_ioctl(bs->file->bs, req, buf); }
1threat
void ff_aac_search_for_pred(AACEncContext *s, SingleChannelElement *sce) { int sfb, i, count = 0, cost_coeffs = 0, cost_pred = 0; const int pmax = FFMIN(sce->ics.max_sfb, ff_aac_pred_sfb_max[s->samplerate_index]); float *O34 = &s->scoefs[128*0], *P34 = &s->scoefs[128*1]; float *SENT = &s->scoefs[1...
1threat
CI/CD pipeline with PostgreSQL failed with "Database is uninitialized and superuser password is not specified" error : <p>I'm using Bitbucket pipeline with PosgreSQL for CI/CD. According to this <a href="https://confluence.atlassian.com/bitbucket/test-with-databases-in-bitbucket-pipelines-856697462.html" rel="noreferre...
0debug
creating the multiple div dynamically using javascript : i have div element and have a class for it,i want to create multiple div using that class,but i dont want to create nested div,i want to create div outside using javascript,i used append property,but its create nested div below is html as i required need help ...
0debug
php searching empty fields in the db : <p>I'm constructing a good code to check the database and some more things, but i stopped in the line... it says: </p> <pre><code>notice: Undefined variable: getUserNew in D:\xampp\htdocs\SilverCommunity(1.6.2)\asp\class\giveaway\winner.php on line 134 </code></pre> <p>My Starte...
0debug
Split string in half across 2 divs : <p>Looking to write a code that splits a string in half. For example, if the name entered is "Trishy", 6 letters, first 3 letters go into the the second <code>li</code> of <code>&lt;ul class="hardcover_front"&gt;</code> and the latter 3 letters go into the first <code>li</code> of <...
0debug
How to get Log table data first using two SQL Table : I need sql query to get Log table data first using two SQL Table, actual why i am using log table because when user will update his file then it will stored in Table_AttachLog but i kind use inner join between two table because that it log table. I know using updat...
0debug
Grouping dataframe based on similar column values : <pre><code>OFFENSE_ID RULE_ID STATUS 100 1 open 101 2 closed 102 2 open 103 1 open 104 2 closed 105 2 open </code></pre> <p>Here's how I ...
0debug
static void create_vorbis_context(venc_context_t * venc, AVCodecContext * avccontext) { codebook_t * cb; floor_t * fc; residue_t * rc; mapping_t * mc; int i, book; venc->channels = avccontext->channels; venc->sample_rate = avccontext->sample_rate; venc->blocksize[0] = venc->blo...
1threat
Longest substring of repeated characters : <p>I have an assignment for school in which, given an input string of entirely 0's and 1's, I must return the length of the longest substring of repeated 1's. I am not allowed to use I am having trouble fleshing out my idea. So far I have found the length of the input string a...
0debug
static void test_qemu_strtoull_full_empty(void) { const char *str = ""; uint64_t res = 999; int err; err = qemu_strtoull(str, NULL, 0, &res); g_assert_cmpint(err, ==, 0); g_assert_cmpint(res, ==, 0); }
1threat
on the click of the image it is not removing-Jquery : selecting the multiple image from the input tag after that i am previewing the selected image but when i click on that image it should delete from the input tag it does not select that picture anymore. but in my case that picture is removing only in preview not in i...
0debug
import re def find_adverb_position(text): for m in re.finditer(r"\w+ly", text): return (m.start(), m.end(), m.group(0))
0debug
Why does the compiler parse this as a function pointer and not a recursive call? : <p>In this following code <code>foo()</code> is parsed in two different places and calls two different functions (marked by the <code>********</code>).</p> <pre><code>#include &lt;cstdio&gt; typedef int (*func)(void); int bar() { ...
0debug
av_cold void ff_intrax8_common_init(IntraX8Context *w, MpegEncContext *const s) { w->s = s; x8_vlc_init(); assert(s->mb_width > 0); w->prediction_table = av_mallocz(s->mb_width * 2 * 2); ff_init_scantable(s->idsp.idct_permutation, &w->scantable[0], ff_wmv1_scan...
1threat
Have `npm version` not prepend "v" to the git tag : <p>Is there a way to tell <code>npm version</code> not to add the "v" prefix to the git tags? The reason I'm trying to do this is because I'm using dockerhub to build the node/docker project and the tags is used in the version of the docker image, having a "v" there i...
0debug
Why not causing a segmentation error? : <pre><code>#include &lt;iostream&gt; using namespace std; int main(){ int a[3], no; cout &lt;&lt; "Index Value\n"; for(int i = 0; i &lt; 100; i++){ cin &gt;&gt; no; a[i] = no; cout &lt;&lt; i &lt;&lt; "\t" &lt;&lt; a[i] &lt;&lt; endl; } ...
0debug
Make sum for one column based on codition from another column in php? : I have one mySql table with two columns: amount (INT) and address (string). All addresses start with "A" or "B". How can I calculate the sum of all amounts for which address starts with "A" and sum of all amounts for which address start with "B"....
0debug
What is lambda? How can you explain this sorting : <p>Please be gentle I'm still learning Python. I've an example where </p> <blockquote> <p>pairs = [(1, 'one'), (2, 'two'), (3, 'three'), (4, 'four')]</p> <p>pairs.sort(key=lambda pair: pair[1])</p> </blockquote> <p>The result is</p> <blockquote> <p>[(4, 'fo...
0debug
Can someone please explain what is wrong with this code and how to fix it? (JavaScript closure) : <p>Could someone please explain what is wrong with this code and how to fix it? I'm truly lost. Thanks! </p> <pre><code>var messageProcessing = function() { console.log(message); }; process.on('message', function(mes...
0debug
static int thp_read_packet(AVFormatContext *s, AVPacket *pkt) { ThpDemuxContext *thp = s->priv_data; AVIOContext *pb = s->pb; unsigned int size; int ret; if (thp->audiosize == 0) { if (thp->frame >= thp->framecnt) return AVERROR_EO...
1threat
static void decode_sigpass(Jpeg2000T1Context *t1, int width, int height, int bpno, int bandno, int vert_causal_ctx_csty_symbol) { int mask = 3 << (bpno - 1), y0, x, y; for (y0 = 0; y0 < height; y0 += 4) for (x = 0; x < width; x++) ...
1threat
void s390_crw_mchk(S390CPU *cpu) { if (kvm_enabled()) { kvm_s390_crw_mchk(cpu); } else { cpu_inject_crw_mchk(cpu); } }
1threat
Aggregated query without GROUP BY : <p>This query seems to work perfect on my older machine. However, on my new machine with MySQL 5.7.14 and PHP 5.6.25 it seems to throw an error:</p> <blockquote> <p>Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42000]: Syntax error or access violation: 11...
0debug
How to convert python int into numpy.int64? : <p>Given a variable in python of type <code>int</code>, e.g. </p> <pre><code>z = 50 type(z) ## outputs &lt;class 'int'&gt; </code></pre> <p>is there a straightforward way to convert this variable into <code>numpy.int64</code>? </p> <p>It appears one would have to conver...
0debug
How to convert fortran code to pyhton language : My question is about converting fortran to pyhton language but i couldnt understand the working princible of this part of code.How can i rewrite the code in pyhton and which statement i should use instead of "do if then write " statement ? [CODE_jpeg][1] [1]: h...
0debug
Tokenize HTML string in JavaScript : <p>I would like to split a string that looks like:</p> <pre><code>This is &lt;strong&gt;a&lt;/strong&gt; test &lt;a href="#test"&gt;link&lt;/a&gt; and &lt;br /&gt; line. break </code></pre> <p>into the following with JavaScript:</p> <pre><code>[ 'This', 'is', '&lt;str...
0debug
dynamically initialize a 3D character array in c : <p>I am trying to initialize a 3D character array, but couldn't. when i execute the program crashes. I need to store 'T' sets of 'N[i]' no.of words in the ***word.characters in each word are less than 20. "The program executes when static initialized." </p> <pre>...
0debug
static target_ulong h_add_logical_lan_buffer(CPUPPCState *env, sPAPREnvironment *spapr, target_ulong opcode, target_ulong *args) { target_ulong reg = args[0]; target_ulong...
1threat
React Native image upload : <p>I am having an issue with uploading an image from my camera roll or to my API. here is the code that I am currently using. I am able to get the image data from both the camera roll and camera. I just am having an issue of posting the data to the server. I don't know where I am getting con...
0debug
Use docker-compose with multiple repositories : <p>I'm currently struggling with the deployment of my services and I wanted to ask, what's the proper way when you have to deal with multiple repositories. The repositories are independent, but to run in production, everything needs to be launched.</p> <p>My Setup:</p> ...
0debug
Symfony FOS user bundle initiation : <p>I have a problem with installing FOS user bundle. I tried to search it everywhere, but probably I'm too dumb and can't find it.</p> <p>I've created an entity called Admin and tried to run doctrine:schema:update --force I've got an error: <code>The child node "from_email" at path...
0debug
Swift 4 - Find number in string and return location and length : `let myStr = "I have 4.34 apples."` I need the location range and the length, because I'm using NSRange(location:, length:) to bold the number 4.34 extension String{ func findNumbersAndBoldThem()->NSAttributedString{ //the...
0debug
static void qdict_destroy_obj(QObject *obj) { int i; QDict *qdict; assert(obj != NULL); qdict = qobject_to_qdict(obj); for (i = 0; i < QDICT_BUCKET_MAX; i++) { QDictEntry *entry = QLIST_FIRST(&qdict->table[i]); while (entry) { QDictEntry *tmp = QLIST_NEXT(ent...
1threat
Angular 5 to 6 Upgrade: Property 'map' does not exist on type Observable : <p>Ive upgraded my angular application from version 5 to 6 and im getting this error from the following code.</p> <pre><code> const request = this.evidenceService.get().map((res) =&gt; res.data) .catch(error =&gt; Observable.of...
0debug
Can a process perfrom IO while residing in secondary memory? : I am confused about suspend wait and block terms in operating system. I read it as a process which is in wait or block state needs to be thrown in sec memory and resumes with main memory after completing IO.
0debug
SQL update column values with substring value : <p>So my table is <a href="https://imgur.com/a/1lfDdB9" rel="nofollow noreferrer">https://imgur.com/a/1lfDdB9</a>. I want to update the <strong>name</strong> column so that it removes the <em>Telefon mobil</em> part(to look like the first row).</p>
0debug
Is it safe to iterate a dereferenced vector? : <pre><code>std::vector&lt;int&gt;* someVector; // Initialize vector here and add elements //**** // Now loop vector after initializing it for (int val : *someVector) { doSomething(val); } </code></pre> <p>In the above example, is it safe to iterate a vector like th...
0debug
int kvm_arch_get_registers(CPUState *cs) { PowerPCCPU *cpu = POWERPC_CPU(cs); CPUPPCState *env = &cpu->env; struct kvm_regs regs; struct kvm_sregs sregs; uint32_t cr; int i, ret; ret = kvm_vcpu_ioctl(cs, KVM_GET_REGS, &regs); if (ret < 0) return ret; cr = regs....
1threat
How to put a TextView Under a ListView and make the ListView to fill the screen using android layouts : I have this layout <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" ...
0debug
How to change Region / Zone in Google Cloud? : <p>I am very new to Google Cloud. I was able to setup a wordpress site and am working on it now. However, it appears that my vm instance is using the following asia-east1-a for its zone. I was able to change the Region and Zone using gcloud commands with the following ou...
0debug
How do I add a top and bottom shadow while scrolling but only when needed? : <p><strong>How do I add a shadow when a container overflows but only when needed?</strong></p> <p>What I mean by this is:</p> <ul> <li>if there is content available to scroll either on top or bottom, show a shadow to tell the user there is m...
0debug
Get server time by using ajax : <p>I want to get the server time in a variable. I am creating a count down timer, so that i need the server time. But i don't know how to take time and assign it into a variable (that variable will be used in JavaScript ). Please help me.</p>
0debug
How to stop the Discord bot responds to other bots? (Discord.js) : I'm new to programming a discord bot using discord.js (JavaScript). So, recently My bot got approved by discordbots.org. At the same day, I tested it. The result was other bot responds my command, but my bot wasn't. I check the logs in Heroku app, and t...
0debug
Debugging in C++ : <p>I came across this code snippet. Can you explain how to use this debugging in the program.</p> <pre><code>#ifdef TESTING #define DEBUG fprintf(stderr, "====TESTING====\n") #define VALUE(x) cerr &lt;&lt; "The value of " &lt;&lt; #x &lt;&lt; " is " &lt;&lt; x &lt;&lt; endl #define debug(...) fpr...
0debug
How to order posts by date added : <p>I have a website in which admins can post news and updates but every time they add a new one it goes from the first one added downwards any idea how to fix this?</p>
0debug
static void single_quote_string(void) { int i; struct { const char *encoded; const char *decoded; } test_cases[] = { { "'hello world'", "hello world" }, { "'the quick brown fox \\' jumped over the fence'", "the quick brown fox ' jumped over the fence" }, ...
1threat
when i type CountDownTimer it not accepting in android studio : new CountDownTimer(30000, 1000) { public void onTick(long millisUntilFinished) { mTextField.setText("seconds remaining: " + millisUntilFinished / 1000); } public void onFinish() { mTextField.setText("done!"); ...
0debug
DynamoDB M-M Adjacency List Design Pattern : <p>Referring to <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/bp-adjacency-graphs.html" rel="noreferrer">https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/bp-adjacency-graphs.html</a>. I was wondering if anyone could help me.</p> <...
0debug
static enum AVPixelFormat mpeg_get_pixelformat(AVCodecContext *avctx) { Mpeg1Context *s1 = avctx->priv_data; MpegEncContext *s = &s1->mpeg_enc_ctx; const enum AVPixelFormat *pix_fmts; #if FF_API_XVMC FF_DISABLE_DEPRECATION_WARNINGS if (avctx->xvmc_acceleration) return ff_get_format(av...
1threat
Read XLSB File in Pandas Python : <p>There are many questions on this, but there has been no simple answer on how to read an xlsb file into pandas. Is there an easy way to do this?</p>
0debug
static int cloop_open(BlockDriverState *bs, int flags) { BDRVCloopState *s = bs->opaque; uint32_t offsets_size, max_compressed_block_size = 1, i; bs->read_only = 1; if (bdrv_pread(bs->file, 128, &s->block_size, 4) < 4) { goto cloop_close; } s->block_size = be32_to_cpu(s...
1threat
Regex to check for AND : <p>I am trying to check whether a string starts from a particular word And also a particular substring occurs in it. </p> <p>So lets say if I have a string like this:</p> <p><code>SCSI\DISK&amp;VEN_MICRON&amp;PROD_1100\4&amp;2096297&amp;0&amp;000200</code></p> <p>I need to check whether this...
0debug
static void ccid_card_vscard_send_msg(PassthruState *s, VSCMsgType type, uint32_t reader_id, const uint8_t *payload, uint32_t length) { VSCMsgHeader scr_msg_header; scr_msg_header.type = htonl(type); scr_msg_header.reader_id = htonl(reader_id); scr_msg_header.length = htonl(leng...
1threat
Want to know about html and php : <p>I'm new to web design. I started with html and make some pages with ext .html but now I want to add a contact us form or message us form in my html page . So how can I do that . Actually I want to use html page and that html page can execute php script.</p> <p>Thanks in advance.</p...
0debug
static int ehci_state_fetchqtd(EHCIQueue *q) { EHCIqtd qtd; EHCIPacket *p; int again = 0; get_dwords(q->ehci, NLPTR_GET(q->qtdaddr), (uint32_t *) &qtd, sizeof(EHCIqtd) >> 2); ehci_trace_qtd(q, NLPTR_GET(q->qtdaddr), &qtd); p = QTAILQ_FIRST(&q->packets); if (p != N...
1threat
CPUCRISState *cpu_cris_init (const char *cpu_model) { CPUCRISState *env; static int tcg_initialized = 0; int i; env = qemu_mallocz(sizeof(CPUCRISState)); if (!env) return NULL; cpu_exec_init(env); cpu_reset(env); if (tcg_initialized) return env; tcg_initialized = 1; cpu_env = tcg_gl...
1threat
static void imx_fec_reset(DeviceState *d) { IMXFECState *s = IMX_FEC(d); s->eir = 0; s->eimr = 0; s->rx_enabled = 0; s->ecr = 0; s->mscr = 0; s->mibc = 0xc0000000; s->rcr = 0x05ee0001; s->tcr = 0; s->tfwr = 0; s->frsr = 0x500; s->miigsk_cfgr = 0; ...
1threat
Sorting IEnumerable<string> : <p>I've got an <code>IEnumerable&lt;string&gt;</code> with values like:</p> <ul> <li>pp</li> <li>pp.10.0</li> <li>pp.6.0</li> <li>pp.6.1</li> <li>pp.8.3</li> <li>kp.10.1</li> <li>kp</li> <li>kp.3.20</li> </ul> <p>... etc</p> <p>I'd like to organize them alphabetically, but keeping the v...
0debug
Deleting similar elements from a list in python : <p>I want to delete similar elements from a list in Python and print uniques element in that list without using set(). However my code is not doing the same . please help me out </p> <p><strong>My code</strong> </p> <pre><code>T = int(raw_input()) a=[] for i in range...
0debug
SQL Replace multiple different characters in string : <p>I need to replace multiple characters in a string. The result can't contain any '&amp;' or any commas.</p> <p>I currently have: </p> <pre><code>REPLACE(T2.[ShipToCode],'&amp;','and') </code></pre> <p>But how do you put multiple values in?</p> <p>Many thanks!<...
0debug
def get_inv_count(arr, n): inv_count = 0 for i in range(n): for j in range(i + 1, n): if (arr[i] > arr[j]): inv_count += 1 return inv_count
0debug