problem
stringlengths
26
131k
labels
class label
2 classes
Quick keyword search : Simple code here, I'm trying to write a code that can pick up on specific keywords, but I'm not having a lot of luck. Here's the code: #include <iostream> int main(){ std::string input; bool isUnique = true; std::cout<<"Please type a word: "; std::cin>>input; ...
0debug
Android Studio: Canvas added to activity_main.xml crashes app : My problem: I have been trying to make an app where a ball bounces around based on orientation change. I had some problems with that so I started this project differently. The ball moves up/down/right/left when I use arrow keys. The ball itself moves gr...
0debug
windows 7 entreprise .bat double click doesn t work Windows can t find file : When i double click on a file .bat it display: Windows can t find file ..bat. If i use cmd or right click run as administrator it works. On collegue's computer it works, the double click. I verify the regedit i have the same of my collegues. ...
0debug
Embed UIViewController inside a UIView : <p>I want to embed a UIViewController inside a UIView. I want to create this programmatically. I have created the UIViewController inside the storyboard.</p> <p>My code to create a empty UIView:</p> <pre><code>let myNewView=UIView(frame: CGRect(x: (0 + screenHeight / 2), y: le...
0debug
static CharDriverState *qmp_chardev_open_udp(const char *id, ChardevBackend *backend, ChardevReturn *ret, Error **errp) { ChardevUdp *udp = backend->u.udp; ChardevCommon *...
1threat
void *get_mmap_addr(unsigned long size) { return NULL; }
1threat
void qemu_spice_init(void) { QemuOpts *opts = QTAILQ_FIRST(&qemu_spice_opts.head); const char *password, *str, *x509_dir, *addr, *x509_key_password = NULL, *x509_dh_file = NULL, *tls_ciphers = NULL; char *x509_key_file = NULL, *x509_cert_file = NULL, *x509_ca...
1threat
Pass base class as an argument in a member function of the derived : <p>I have a derived class from an abstract class, and I am trying to pass it as an argument of a member class of the derived one. I also have a forward declaration issue. Any suggestions?</p> <pre><code>class base; void print(*base); class base { ...
0debug
tsc - ignore errors at command line : <p>I have this:</p> <pre><code>$ tsc -m amd --outFile dist/out.js lib/index.ts </code></pre> <blockquote> <p>lib/index.ts(87,48): error TS1005: ';' expected.</p> </blockquote> <p>Is there a command line option I can use to ignore errors?</p>
0debug
how to convert a Series of arrays into a single matrix in pandas/numpy? : <p>I somehow got a <code>pandas.Series</code> which contains a bunch of arrays in it, as the <code>s</code> in the code below.</p> <pre><code>data = [[1,2,3],[2,3,4],[3,4,5],[2,3,4],[3,4,5],[2,3,4], [3,4,5],[2,3,4],[3,4,5],[2,3,4],[3,4,5...
0debug
Rewrite rules and let abstraction in GHC : <p>I have a rewrite rule that looks like this:</p> <pre><code>{-# RULES "modify/fusedModify" forall f g key book. modify key f (modify key g book) = fusedModify key f g book #-} </code></pre> <p>Which fires in the following function:</p> <pre><code>pb :: PersonB pb = ... ...
0debug
I am unable to figure out where to add a while-loop to my already finished code to get the min and max to work correctly : My issue is not knowing how to properly configure this section of coding to get the max and min to work properly. "For the max/min logic to work correctly, it had to be placed WITHIN a loop, no...
0debug
I don't why my android app keep crashing : I am build a voce recognition app that does something when I say a specific word such as "open" and it opens something etc. but the problem is that my app keep crashing when I run it on my phone and I tap the speak button. I don't know what else to do? I tried giving it intern...
0debug
.Net Framework 4.6.1 not defaulting to TLS 1.2 : <p>Our client have recently upgrade the security protocol to TLS 1.2. Therefore We have our application upgraded to 4.6.1 expecting the security protocol will be default to TLS 1.2 but it is not. Any idea why?</p>
0debug
void ff_compute_frame_duration(AVFormatContext *s, int *pnum, int *pden, AVStream *st, AVCodecParserContext *pc, AVPacket *pkt) { AVRational codec_framerate = s->iformat ? st->codec->framerate : av_inv_q(st->codec->time_base); int...
1threat
Is there a way to edit css of new google forms? : <p>Before I used to be able to just copy the source code of the form and paste the part between <code>&lt;form&gt;&lt;/form&gt;</code> into the page and add my own styling. But this doesn't seem to work anymore. Has anyone found a way to still be able to customize googl...
0debug
golang, how to find out if 'map[string][][]int' has a value? : golang, how to find out if 'map[string][][]int' has a value? var a map[string][][]int var aa map[string][][]int = map[string][][]int{"a": [][]int{{10, 10}, {20, 20}}} var bb map[string][][]int = map[string][][]int{"b": [][]int{{30, 30}, {40, 40}...
0debug
Why there is dependencies when i copy a List<T> in a List<List<T>>? : <p>I'm creating a little C# apps using List of an object and i have a very noob question :</p> <p><strong>First i'm filling my object 'A' , then i add in my list named 'lstA' :</strong></p> <pre><code>List&lt;List&lt;A&gt;&gt; Lst_LstA = new List&l...
0debug
Python, get the name of the variable in an array, to be used as part of another statement : Im fairly new with Python, and I was creating a new script in which I generate an array that contains a list of strings(g='g_o.DisplacementMultiplier_'+str(y+1), where y varies from 0 to 400). This later has to be used to set f...
0debug
org.json.JSONException: End of input at character BUG json android : hello everyone i know that this issue is very known but i can't solucionate so far :(! after of all, i have a project and the data is stored perfectly in the DB (localhost) im using www.000webhost.com. so the problem it isnt the php files or something...
0debug
Can I choose where my conda environment is stored? : <p>Can I change the path /Users/nolan/miniconda/envs/ to another one when creating a virtual environment ? I'd like it to be specific to my project directory. (As we can do with virtualenv)</p> <pre><code>$conda info -e Using Anaconda Cloud api site https://api.anac...
0debug
which one is faster data types in .net or data types in c#? : <p>Hi to all first of all i am sorry because my first language is not english I want understand which one is faster C# data types or .net data types i try to understand by below code and i think .net data types is faster(is this correct?) i test this code bo...
0debug
How to set SameSite cookie attribute to explicit None ASP NET Core : <p>Chrome 76 will begin to support an explicit <code>SameSite: None</code> attribute </p> <p><a href="https://web.dev/samesite-cookies-explained/" rel="noreferrer">https://web.dev/samesite-cookies-explained/</a></p> <p>I found that the current imple...
0debug
void vnc_display_init(DisplayState *ds) { VncState *vs; vs = qemu_mallocz(sizeof(VncState)); if (!vs) exit(1); ds->opaque = vs; vnc_state = vs; vs->display = NULL; vs->password = NULL; vs->lsock = -1; vs->csock = -1; vs->depth = 4; vs->last_x = -1; vs...
1threat
Spliting a string between "," : This is my original string, required:true,validType:'timegt['#timeofdaymeterslotonebegintime,#timeofdaymeterslotoneendtime'] I want to split into two. the output will be like required:true validType:'timegt['#timeofdaymeterslotonebegintime,#timeofdaymetersloton...
0debug
Guys i don't get why am i getting this output in this php code? Can you explain please? : <?php $i = 0; $func1 = function() use ($i) { echo "$i"; };$func2 = function() use (&$i) { echo "$i"; }; for ( $i=1; $i<=5; $i++ ) { $func1(); $func2(); } ?> output: 0 1 0 2 0 3 0 4 0 5
0debug
(Java) How can I get input from command prompt? : <p>I have been able to open the command prompt, but how would I get what the user types from it? And how would I "print" to the command prompt? </p>
0debug
static inline int64_t add64(const int64_t a, const int64_t b) { return a + b; }
1threat
What is the difference between primaryColor and primarySwatch in Flutter? : <p>In Flutter, one can apply a theme to the app using ThemeData class. But there two propeties of this class that confuses me: <code>primaryColor</code> and <code>primarySwatch</code>. What's the difference between these two properties and when...
0debug
static void pl181_fifo_run(pl181_state *s) { uint32_t bits; uint32_t value; int n; int limit; int is_read; is_read = (s->datactrl & PL181_DATA_DIRECTION) != 0; if (s->datacnt != 0 && (!is_read || sd_data_ready(s->card)) && !s->linux_hack) { limit = is_read ? P...
1threat
int aio_bh_poll(AioContext *ctx) { QEMUBH *bh, **bhp, *next; int ret; bool deleted = false; qemu_lockcnt_inc(&ctx->list_lock); ret = 0; for (bh = atomic_rcu_read(&ctx->first_bh); bh; bh = next) { next = atomic_rcu_read(&bh->next); if (atomic_xchg(...
1threat
int av_new_packet(AVPacket *pkt, int size) { uint8_t *data; if((unsigned)size > (unsigned)size + FF_INPUT_BUFFER_PADDING_SIZE) return AVERROR(ENOMEM); data = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE); if (!data) return AVERROR(ENOMEM); memset(data + size, 0, FF_INPUT_BUF...
1threat
Postgres column doesn't exist error on update : <p>I am trying to run the query below but I am getting an error <strong>ERROR: column "test.pdf" does not exist</strong> . I dont know why I am getting this error. I search for various links on stackover but none solved my problem like this <a href="https://stackoverflow...
0debug
convert D/M/YYYY to YYYY/MM/DD (ex : 1/6/2015 --> 2015/06/01 not 2015/6/1) : Hello i have to convert a date like D/M/YYYY to YYYY/MM/DD Ex : 1/6/2015 --> 2015/06/01 not 2015/6/1 I have some conditions to be met : - when it convert the month like Jan "1" must give : 01 Feb "2" must give : 02 etc - i have to ...
0debug
create-react-app generates function instead of class in App.js : <p>I'm trying to create react app using create-react-app command, and it's generating the App.js file as function (es5 syntax without class) instead of class (Example in the following code):</p> <pre><code>import React from 'react'; import logo from './l...
0debug
'Serilog' already has a dependency defined for 'Microsoft.CSharp' : <p>I am trying to install serilog and I'm getting error</p> <blockquote> <p>PM> Install-Package Serilog<br> Install-Package : 'Serilog' already has a<br> dependency defined for 'Microsoft.CSharp'. At line:1 char:1<br> + Install-Package Serilog...
0debug
can any one suggest me why datetimepiker giving error in data retrieve? : string querySql = "Select Admission_Date,Name,Father_name,Date_of_birth,NIC_No,Present_Adress,Age,Contact_No,Weight,Height,Image from Admform WHERE Member_ID=@memid"; using (SqlConnection conSql = new SqlConnection("Data Source=aze...
0debug
Split the array values into 3 columns in php? : $data =( [01] => 0 [02] => 0 [03] => 1 [04] => 0 [05] => 0 [06] => 0 [07] => 0 [08] => 0 [09] => 1 [10] => 0 [11] => 0 [12] => 0 [13] => 0 [14] => 0 [15] => 0 [16] => 0 [17] => 0 [18] => 0 [19] => 0 [20] => 0 [21] => 0 [22] => 0 [23] => 0 [24] => 0 [25] => 0 [26] => 0 [27...
0debug
How to Convert an Integer to a String without Integer.toString Function : <p>This is an extension to a previous question of mine, but I'm required to do this problem without this function. I have to use recursion only. Any thoughts?</p> <p>An example; 20A would be:</p> <p>2 x 12^2 + 0 x 12^1 + 10 x 12^0 = 2 x 144 + 0...
0debug
Docker multiple environments : <p>I'm trying to wrap my head around Docker, but I'm having a hard time figuring it out. I tried to implement it in my small project (MERN stack), and I was thinking how do you distinct between development, (maybe staging), and production environments.</p> <p>I saw one <a href="https://g...
0debug
static int mxf_read_source_clip(void *arg, AVIOContext *pb, int tag, int size, UID uid) { MXFStructuralComponent *source_clip = arg; switch(tag) { case 0x0202: source_clip->duration = avio_rb64(pb); break; case 0x1201: source_clip->start_position = avio_rb64(pb); ...
1threat
char *g_strdup(const char *s) { char *dup; size_t i; if (!s) { return NULL; } __coverity_string_null_sink__(s); __coverity_string_size_sink__(s); dup = __coverity_alloc_nosize__(); __coverity_mark_as_afm_allocated__(dup, AFM_free); for (i = 0; (dup[i] = s[i]); ...
1threat
static void virtio_gpu_cleanup_mapping(struct virtio_gpu_simple_resource *res) { virtio_gpu_cleanup_mapping_iov(res->iov, res->iov_cnt); g_free(res->iov); res->iov = NULL; res->iov_cnt = 0; }
1threat
static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom) { AVStream *st; MOVStreamContext *sc; unsigned int i, entries; int64_t duration=0; int64_t total_sample_count=0; if (c->fc->nb_streams < 1) return 0; st = c->fc->streams[c->fc->nb_streams-1]; sc = ...
1threat
static void sigp_initial_cpu_reset(void *arg) { CPUState *cpu = arg; S390CPUClass *scc = S390_CPU_GET_CLASS(cpu); cpu_synchronize_state(cpu); scc->initial_cpu_reset(cpu); cpu_synchronize_post_reset(cpu); }
1threat
My php file deleted automatically from c panel : <p>Hey friends in my hosting my base_facebook.php file is deleted continuously I talked with customer care he says that hosting antivirus detected your file as a virus but same file I tried to other hosting and it is fine what I do? What is the problem in my file and ho...
0debug
How to make a WordPress grid with text overlay : <p>I'm trying to make a 2 column grid in WordPress where each row has a grid item filled with an image, and a grid item filled with text/a clickable button and a background image. </p> <p>I'm also using Visual Composer. I'm creating a full width row, and then splitting ...
0debug
Dynamically created Button added to Dictionary made exception when i try use it. WPF : <p>I create Button in my c# kod and add this button to dictionary. I have method to run buttons. When i run this method in Task it make exception:</p> <blockquote> <p>The calling thread cannot access this object because it belongs...
0debug
static void frame_end(MpegEncContext *s) { int i; if (s->unrestricted_mv && s->current_picture.reference && !s->intra_only) { const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(s->avctx->pix_fmt); int hshift = desc->log2_chroma_w; int vshift = desc->log2_chrom...
1threat
format text in javascript : how to Write a parser/method in javascript which would parse below digraph "com.a:test:jar:1.0" { "com.a:test:jar:1.0" -> "org.apache.httpcomponents:httpclient:jar:4.5.5:compile"; "com.a:test:jar:1.0" -> "com.google.code.gson:gson:jar:2.8.2:com...
0debug
static void xen_set_memory(struct MemoryListener *listener, MemoryRegionSection *section, bool add) { XenIOState *state = container_of(listener, XenIOState, memory_listener); hwaddr start_addr = section->offset_within_address_space; ram_addr_t size...
1threat
build_rsdp(GArray *rsdp_table, BIOSLinker *linker, unsigned rsdt_tbl_offset) { AcpiRsdpDescriptor *rsdp = acpi_data_push(rsdp_table, sizeof *rsdp); unsigned rsdt_pa_size = sizeof(rsdp->rsdt_physical_address); unsigned rsdt_pa_offset = (char *)&rsdp->rsdt_physical_address - rsdp_table->data; ...
1threat
static inline int svq3_decode_block(GetBitContext *gb, DCTELEM *block, int index, const int type) { static const uint8_t *const scan_patterns[4] = { luma_dc_zigzag_scan, zigzag_scan, svq3_scan, chroma_dc_scan }; int run, level, sign, vlc, limit; const int intr...
1threat
How to give the object back upon failure? : I have the following code in Rust: ```rust pub struct PropertySet { color: Color, properties: Vec<Box<dyn Property>>, } impl PropertySet { // ... /// This function will panic if a card is added and the set is already full, so /// you shoul...
0debug
.Net Core and NuGet : <p>I <a href="https://dotnet.github.io/getting-started/">installed .net core from this site</a>. Playing with it led to a number of related package management questions:</p> <ol> <li>The <code>dotnet restore</code> command proceeded to "install" .net core NuGet packages. Where were those packag...
0debug
static int local_utimensat(FsContext *s, V9fsPath *fs_path, const struct timespec *buf) { char buffer[PATH_MAX]; char *path = fs_path->data; return qemu_utimens(rpath(s, path, buffer), buf); }
1threat
Why does my JS function not return any results in Chrome Dev Console? : <p>My function compPlay() does not return any results in console. I have the function written to what I believe is correct as far as syntax goes and proper use of "Math random" and "Math" floor. Please help me.</p> <pre><code> &lt;!doctype html&gt...
0debug
static int sd_schedule_bh(QEMUBHFunc *cb, SheepdogAIOCB *acb) { if (acb->bh) { error_report("bug: %d %d\n", acb->aiocb_type, acb->aiocb_type); return -EIO; } acb->bh = qemu_bh_new(cb, acb); if (!acb->bh) { error_report("oom: %d %d\n", acb->aiocb_type, acb->aiocb_type); ...
1threat
How to retry the request n times when an item gets an empty field? : <p>I'm trying to scrap a range of webpages but I got holes, sometimes it looks like the website fails to send the html response correctly. This results in the csv output file to have empty lines. How would one do to retry n times the request and the p...
0debug
static int get_physical_address(CPUState *env, target_phys_addr_t *physical, int *prot, int *access_index, target_ulong address, int rw, int mmu_idx) { int access_perms = 0; target_phys_addr_t pde_ptr; uint32_t pde; int error_code = ...
1threat
AccessDeniedException: User is not authorized to perform: lambda:InvokeFunction : <p>I'm trying to invoke a lambda function from node.</p> <pre><code>var aws = require('aws-sdk'); var lambda = new aws.Lambda({ accessKeyId: 'id', secretAccessKey: 'key', region: 'us-west-2' }); lambda.invoke({ FunctionN...
0debug
Setting up tsconfig with spec/test folder : <p>Say I put my code under <code>src</code> and tests under <code>spec</code>:</p> <pre><code>+ spec + --- classA.spec.ts + src + --- classA.ts + --- classB.ts + --- index.ts + tsconfig.json </code></pre> <p>I want to only transpile <code>src</code> to the <code>dist</code>...
0debug
window.location.href = 'http://attack.com?user=' + user_input;
1threat
Flutter Navigator.replace() example : <p>I need to replace my current screen and found <code>replace</code> method in Navigator's API. But I didn't find any example for it. Maybe somebody knows hot to use it. Thanks.</p>
0debug
static int ppc_hash64_pte_prot(CPUPPCState *env, ppc_slb_t *slb, ppc_hash_pte64_t pte) { unsigned pp, key; int prot = 0; key = !!(msr_pr ? (slb->vsid & SLB_VSID_KP) : (slb->vsid & SLB_VSID_KS)); pp = (pte.pte1 & HPTE64_R_PP) | ((pte.pte1 & HPT...
1threat
How to navigate to a different directory in Jupyter Notebook? : <p>I have recently installed Anaconda 5 and with it Jupyter Notebook. I am excited with its rich functionality but I can not find a way to navigate to directories which are not children. More specifically I have tried to double-click the folder icon but ...
0debug
How to scrape email and phone numbers from a list of websites using Python? : I have a file with name and links of the websites, how do I write a program in Python that helps me scrape phone number and email from all the websites?' [enter image description here][1] [1]: https://i.stack.imgur.com/QyIEq.png
0debug
Hi Guys I am working on android and I want to Embed Google Maps to my App : But to do that I need Google Maps v2 API key and to get that from the Google console I have to enter SHA1 of my app. What the problem is I can't get the SHA1 of the app because I am developing it using AIDE. I saw a solution on Google plus b...
0debug
static int qemu_rdma_post_recv_control(RDMAContext *rdma, int idx) { struct ibv_recv_wr *bad_wr; struct ibv_sge sge = { .addr = (uint64_t)(rdma->wr_data[idx].control), .length = RDMA_CONTROL_MAX_BUFFER, .lkey = rdma->wr_da...
1threat
static int sdp_read_header(AVFormatContext *s) { RTSPState *rt = s->priv_data; RTSPStream *rtsp_st; int size, i, err; char *content; char url[1024]; if (!ff_network_init()) return AVERROR(EIO); if (s->max_delay < 0) s->max_delay = DEFAULT_REORDERING_DELAY; ...
1threat
Android Studio 3.0 - Settings are not saved : <p>I've increased the "Right margin (columns)" in File->Settings->Editor->Code Style from default 100 to 140. Unfortunately the margin is reset after each time I restart Android Studio. I also tried to export and import my settings but this does not prevent the right margin...
0debug
ValueError: Length of values does not match length of index | Pandas DataFrame.unique() : <p>I am trying to get a new dataset, or change the value of the current dataset columns to their unique values. Here is an example of what I am trying to get : </p> <pre><code> A B ----- 0| 1 1 1| 2 5 2| 1 5 3| 7 9 4| 7 9 5| ...
0debug
static int doTest(uint8_t *ref[3], int refStride[3], int w, int h, int srcFormat, int dstFormat, int srcW, int srcH, int dstW, int dstH, int flags){ uint8_t *src[3]; uint8_t *dst[3]; uint8_t *out[3]; int srcStride[3], dstStride[3]; int i; uint64_t ssdY, ssdU, ssdV; ...
1threat
Error #2032: Stream Error. URL: http://www.fashionboxpk.com/Test2.php"] : openHandler: [Event type="open" bubbles=false cancelable=false eventPhase=2] progressHandler loaded:384 total: 384 Error opening URL 'http://www.fashionboxpk.com/Test2.php' httpStatusHandler: [HTTPStatusEvent type="httpStatus" bubbles=fa...
0debug
MS-Dos how do I convert one line at a time in a .txt from one varable to an other : I have a document with some random letters in it for example line 1: k line 2: l line 3: m line 4: n and I want to read one line and change the letter which I have a script to do that already using below. > if "%name%"=="k" (g...
0debug
SchroVideoFormatEnum ff_get_schro_video_format_preset(AVCodecContext *avctx) { unsigned int num_formats = sizeof(ff_schro_video_formats) / sizeof(ff_schro_video_formats[0]); unsigned int idx = get_video_format_idx(avctx); return (idx < num_formats) ? ff_schro_video_fo...
1threat
How to logging file system input output operations? : How to logging file system input-output operations? The reason is to find hot and cold file system blocks. Could you suggest me what API or OS subsystems to use from C#?
0debug
int attribute_align_arg sws_scale(struct SwsContext *c, const uint8_t * const srcSlice[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride...
1threat
static void encode_rgb_frame(FFV1Context *s, uint8_t *src[3], int w, int h, int stride[3]){ int x, y, p, i; const int ring_size= s->avctx->context_model ? 3 : 2; int16_t *sample[4][3]; int lbd= s->avctx->bits_per_raw_sample <= 8; int bits= s->avctx->bits_per_raw_sample > 0 ? s->avctx->bits_per...
1threat
c# - SQL update statement : <p>I need help with my SQL connection. I have this code:</p> <pre><code> SqlConnection myConnection2 = new SqlConnection("server=c1212\\SQLEXPRESS;" + "Trusted_Connection=yes;" + "database=SPZ; " + "connection timeout=30"); try ...
0debug
how to use regular expressions in python 3 : pattern = r"(Mon|Tues|Wednes|Thurs|Fri)day, (February|March) [0-9]{2}, [0-9]{4}\s*Day [0-9]{1}" line = """ Wednesday, February 28, 2018 Day 4 3:00 Dismissal All Day Thursday, March 01, 2018 Day 5 1:30PM Dismissal All Day Friday, March 02, 2018 Day 6 3:00 ...
0debug
Take values from input text area and place them in a div angularjs : HTML Code <form novalidate> <div class="list"> <div class="list list-inset" > <label class="item item-input" id="descriptions"> ...
0debug
Alibaba android app causes crash when you try to open an URL : <p>When you try to open a link, from example from whatsapp, the app (in this case whatsapp) crashes. This only happens if you have alibaba app installed in your device. Reproduction path:</p> <ol> <li>install alibaba app (<a href="https://play.google.com/s...
0debug
static void vfio_pci_load_rom(VFIODevice *vdev) { struct vfio_region_info reg_info = { .argsz = sizeof(reg_info), .index = VFIO_PCI_ROM_REGION_INDEX }; uint64_t size; off_t off = 0; size_t bytes; if (ioctl(vdev->fd, VFIO_DEVICE_GET_REGION_INFO, &reg_info)) { e...
1threat
Adding a key-value pair in evelry json multi-dimensional array : I have a list of JSON objects and I want every object to be inserted by a certain key value. Please take note that it is an angularjs $scope. I'm aware that this can be done by Here is the code: $scope.Items = [ {name:'Jani',country:'Norway'}, ...
0debug
static int dca_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt) { const uint8_t *buf = avpkt->data; int buf_size = avpkt->size; int channel_mask; int channel_layout; int lfe_samples; int num_core_channels = 0; int i, re...
1threat
void checkasm_check_h264qpel(void) { LOCAL_ALIGNED_16(uint8_t, buf0, [BUF_SIZE]); LOCAL_ALIGNED_16(uint8_t, buf1, [BUF_SIZE]); LOCAL_ALIGNED_16(uint8_t, dst0, [BUF_SIZE]); LOCAL_ALIGNED_16(uint8_t, dst1, [BUF_SIZE]); H264QpelContext h; int op, bit_depth, i, j; for (op = 0; op < 2; ...
1threat
static void mxf_write_random_index_pack(AVFormatContext *s) { MXFContext *mxf = s->priv_data; AVIOContext *pb = s->pb; uint64_t pos = avio_tell(pb); int i; avio_write(pb, random_index_pack_key, 16); klv_encode_ber_length(pb, 28 + 12*mxf->body_partitions_count); if (mxf->edit_unit...
1threat
How to Pass Parameter to SQL Query After Conditional Split : I am fairly new at working with SSIS, and everything was straight forward until I came across this. I have a system that has data everywhere and I am trying to clean everything up by normalizing it. Now my issue is, in my SSIS I have a conditional split, what...
0debug
static int xen_pt_msgaddr64_reg_write(XenPCIPassthroughState *s, XenPTReg *cfg_entry, uint32_t *val, uint32_t dev_value, uint32_t valid_mask) { XenPTRegInfo *reg = cfg_entry->reg; uint32_t writable_mask = 0; uint32_t old_addr ...
1threat
int ff_dirac_golomb_read_16bit(DiracGolombLUT *lut_ctx, const uint8_t *buf, int bytes, uint8_t *_dst, int coeffs) { int i, b, c_idx = 0; int16_t *dst = (int16_t *)_dst; DiracGolombLUT *future[4], *l = &lut_ctx[2*LUT_SIZE + buf[0]]; INIT_RESIDUE(res); for (b = 1; b <= b...
1threat
document.getElementById('input').innerHTML = user_input;
1threat
when fixing bugs, how can I be sure I'm fixing the right bug? : <p>So this question is fairly generic and open. I have no specific example to hand right now, but have long been wondering how do most people out there approach bug fixing with regards to root causing the issue, rather than fixing the symptoms?</p>
0debug
iTerm2 v3 conversion of tabs to spaces on paste : <p>When pasting text containing tabs into a terminal window, iTerm2 (version 3) asked if I wanted to change the tabs into spaces. I agreed and set that as the default. Now, I need iTerm2 to stop converting the tabs into spaces. How do I do this?</p> <p>I've looked thro...
0debug
How to code a javvascript to indicate item in a list clicked? : This javascript fails to show the line number of item clicked. <!DOCTYPE html> <html> <body> <script> function registerHandlers() { var as = document.getElementsByTagName('a'); for (v...
0debug
Mysql field type for </textarea>? : <p>I have a mysql field type "tinytext" and am using performing and update via my form with following extract:</p> <pre><code>&lt;!-- Text input &lt;div class="control-group"&gt; &lt;label class="control-label" for="myinput"&gt; Input code&lt;/label&gt; &lt;div class="controls"...
0debug
how to define dynamic nested loop python function : <pre><code>a = [1] b = [2,3] c = [4,5,6] d = [a,b,c] for x0 in d[0]: for x1 in d[1]: for x2 in d[2]: print(x0,x1,x2) </code></pre> <p>Result:</p> <pre><code>1 2 4 1 2 5 1 2 6 1 3 4 1 3 5 1 3 6 </code></pre> <p>Perfect, now my question is ...
0debug
How to write a function that takes an argument and adds it to an array? : <p>I'm trying writing a function that takes an argument the user inputs into the console, adds it to the array and returns it. This is my code.</p> <pre><code>function Album(){ this.listPhotos=["bee", "ladybug", "caterpillar", "ant"]; this....
0debug
Vuetify download previous version 1.5 : <p>The Vuetify CDN updated to the latest 2.0 version. How do I access version 1.5 via CDN? Or download the min.js file? I can't find any links on the Vuetify site to get previous versions. </p> <p>Thanks, Donnie</p>
0debug
int ff_jpeg2000_init_component(Jpeg2000Component *comp, Jpeg2000CodingStyle *codsty, Jpeg2000QuantStyle *qntsty, int cbps, int dx, int dy, AVCodecContext *avctx) { uint8_t log2_band_prec...
1threat