problem
stringlengths
26
131k
labels
class label
2 classes
int kvm_has_pit_state2(void) { return 0; }
1threat
static void gen_slbmte(DisasContext *ctx) { #if defined(CONFIG_USER_ONLY) gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); #else if (unlikely(ctx->pr)) { gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG); return; } gen_helper_store_slb(cpu_env, cpu_gpr[rB(ctx->opcode)], ...
1threat
static int rv10_decode_packet(AVCodecContext *avctx, const uint8_t *buf, int buf_size, int buf_size2) { MpegEncContext *s = avctx->priv_data; int mb_count, mb_pos, left, start_mb_x; init_get_bits(&s->gb, buf, buf_size*8); if(s->codec_id ==CODEC_ID_RV10) mb_c...
1threat
accept number of files html : I use these codes for creating a form which accept one or more files. not zero files. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Problem</title> </head> <body> <!-- Insert form here --> <form id="uplo...
0debug
What is the best language to use for coding a bot for Disord? : <p>I do not have experience with any particular language, but I wish to create a fetching Bot for my discord server.</p> <p>I want people on my server to be able to type: !CharacterName, and have a bot respond with that character's stats and attributes. <...
0debug
What does putting "value:" before a string in C# do? : <p>When I write something like <code>Console.WriteLine("Insert 2 numbers");</code></p> <p>The Quick Actions and Refactorings says "Add argument name 'value'"</p> <p><code>Console.WriteLine(value: "Insert 2 numbers");</code></p> <p>What difference does this make?...
0debug
AVFilterFormats *ff_make_format_list(const int *fmts) { AVFilterFormats *formats; int count; for (count = 0; fmts[count] != -1; count++) ; formats = av_mallocz(sizeof(*formats)); if (count) formats->formats = av_malloc(sizeof(*formats->formats) * count); ...
1threat
Read a structured txt file in r : I am still on a basic beginner level with r. I am currently working on some natural language stuff and I use the ProQuest Newsstand database. Even though the database allows to download txt files, I don't need everything they provide. The files you can download there look like this: ...
0debug
How to create Azure AD user programmatically? : <p>I understand there is azure portal to manage groups, user and etc.</p> <p>Are there any ways to do it programmatically (either using web-api or sdk in C#)?</p> <p>Thanks in advance.</p>
0debug
image with id in its name? image-name-93943.jpg : <p>I have a website that I have some news there and photos.</p> <p>So, for example:</p> <blockquote> <p>Barack Obama out in NY.</p> </blockquote> <p>for this I have some pictures:</p> <pre><code>mywebsite.com/barack-obama-out-in-NY-157475445.jpg mywebsite.com/bara...
0debug
static void draw_bar(TestSourceContext *test, const uint8_t color[4], unsigned x, unsigned y, unsigned w, unsigned h, AVFrame *frame) { const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format); uint8_t *p, *p0; int plane; x = FFMIN(x, test->w...
1threat
static MemoryRegion *acpi_add_rom_blob(AcpiBuildState *build_state, GArray *blob, const char *name, uint64_t max_size) { return rom_add_blob(name, blob->data, acpi_data_len(blob), max_size, -1, name, virt_acpi...
1threat
Reference c# class library in my Azure Function : <p>Is it possible to reference a c# class library in an Azure Function visual studio project?</p> <p>I am aware of the possibilities to reference external libraries and Nuget packages. Currently I am using shared .csx files as described <a href="https://docs.microsoft...
0debug
Use custom domain for Google Cloud Function : <p>I can't see any option anywhere to set up a custom domain for my Google Cloud Function when using HTTP Triggers. Seems like a fairly major omission. Is there any way to use a custom domain instead of their <code>location-project.cloudfunctions.net</code> domain or some w...
0debug
Set default error level to WARN : <p>It seems that default error level for all eslint rules are <code>"error"</code>. This is annoying as my app doesn't compile even for an omitted semicolon. </p> <p>How can I set it to <code>"warn"</code> so that my app compiles but shows warnings?</p> <p>I know I can set each rule ...
0debug
What is the expected syntax for http_request put request : http_request 'some request' do url 'https://'"#{node[:chef][:node_name]}"'/v1/xyz' headers ({ 'AUTHORIZATION' => "Basic #{Base64.encode64('#{node[\'user\']}:#{node[\'password\']')}", }) action :get end
0debug
int ff_generate_sliding_window_mmcos(H264Context *h, int first_slice) { MMCO mmco_temp[MAX_MMCO_COUNT], *mmco = first_slice ? h->mmco : mmco_temp; int mmco_index = 0, i = 0; assert(h->long_ref_count + h->short_ref_count <= h->sps.ref_frame_count); if (h->short_ref_count && h->long_ref_...
1threat
Python List comprehension execution order : <pre><code>matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] squared = [[x**2 for x in row] for row in matrix] print(squared) </code></pre> <p>In the preceding data structure and list comprehension, what is the order of execution? </p> <p>Visually it appears to process from right ...
0debug
int qemu_input_key_value_to_scancode(const KeyValue *value, bool down, int *codes) { int keycode = qemu_input_key_value_to_number(value); int count = 0; if (value->type == KEY_VALUE_KIND_QCODE && value->u.qcode == Q_KEY_CODE_PAUSE) { in...
1threat
static void rtsp_close_streams(RTSPState *rt) { int i; RTSPStream *rtsp_st; for(i=0;i<rt->nb_rtsp_streams;i++) { rtsp_st = rt->rtsp_streams[i]; if (rtsp_st) { if (rtsp_st->transport_priv) { if (rt->transport == RTSP_TRANSPORT_RDT) ff...
1threat
Differentiate between error and standard terminal log with ffmpeg - nodejs : <p>I'm using <code>ffmpeg</code> in node js. Both the standard terminal output and the error seems to be sent to stdout, so I don't know how to differentiate between error and success... Here's my code:</p> <pre><code>var convertToMp3 = funct...
0debug
Why don't complex-number literals work in clang? : <p>When I run this code <a href="https://ideone.com/HdviA2">on ideone.com</a>, it prints <code>(2,3)</code>:</p> <pre><code>#include &lt;iostream&gt; #include &lt;complex&gt; int main() { std::complex&lt;double&gt; val = 2 + 3i; std::cout &lt;&lt; val &lt;&lt...
0debug
static void coroutine_delete(Coroutine *co) { if (CONFIG_COROUTINE_POOL) { qemu_mutex_lock(&pool_lock); if (pool_size < pool_max_size) { QSLIST_INSERT_HEAD(&pool, co, pool_next); co->caller = NULL; pool_size++; qemu_mutex_unlock(&pool_lock); ...
1threat
static int decode(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) { BC_STATUS ret; BC_DTS_STATUS decoder_status; CopyRet rec_ret; CHDContext *priv = avctx->priv_data; HANDLE dev = priv->dev; int len = avpkt->size; uint8_t pic_type = 0; ...
1threat
static void timer_start(SpiceTimer *timer, uint32_t ms) { qemu_mod_timer(timer->timer, qemu_get_clock(rt_clock) + ms); }
1threat
static int vhost_net_set_vnet_endian(VirtIODevice *dev, NetClientState *peer, bool set) { int r = 0; if (virtio_has_feature(dev, VIRTIO_F_VERSION_1) || (virtio_legacy_is_cross_endian(dev) && !virtio_is_big_endian(dev))) { r = qemu_set_vnet_le(peer, se...
1threat
static int xen_pt_register_regions(XenPCIPassthroughState *s) { int i = 0; XenHostPCIDevice *d = &s->real_device; for (i = 0; i < PCI_ROM_SLOT; i++) { XenHostPCIIORegion *r = &d->io_regions[i]; uint8_t type; if (r->base_addr == 0 || r->size == 0) { conti...
1threat
Perl misses lines while reading a file : I'm doing a large (8000 lines) library data conversion. I read in a file and want to modify it line by line. Reading the file stops before reaching the end of the file. open(my $infh, "<", 'infile.pica') || die('Could not open pica file'); open(...
0debug
Kotlin on Android - is there a minimum API level requirement? : <p>I am seriously considering using Kotlin on a greenfield Android project, but am concerned about knock-on implications, the most significant of which is a minimum required API level.</p> <p>On other platforms, new languages have required a certain OS ve...
0debug
static inline int mpeg2_decode_block_intra(MpegEncContext *s, int16_t *block, int n) { int level, dc, diff, i, j, run; int component; RLTable *rl; uint8_t * const scantable = s->intra_scantable.permutated; const uint16_t *quant_matrix; const int qscale = s->qscale; int mismatch; ...
1threat
How to customize Material-ui Table Row and Columns (Sticky) : <p>I have a unique situation in which I need not only the header but the first row and first three columns to persist when scrolling down and/or to the right due to an overflow of columns.</p> <p>Material-UI Table allows for me to keep the header sticky wh...
0debug
Error in merge sorting of linked list : <p>I am trying to do a merge sorting practice on linked list sort and I couldn't figure the reason that the code doesn't work, my compiler doesn't give any useful error message. Can't someone point it out for me? thanks!</p> <pre><code> #include &lt;stdio.h&gt; #include ...
0debug
Boost Program Options dependent options : <p>Is there any way of making program options dependent on other options using <code>boost::program_options</code>?</p> <p>For example, my program can accept the following sample arguments:</p> <pre><code>wifi --scan --interface=en0 wifi --scan --interface=en0 --ssid=network ...
0debug
Using getline for a constant string : How can I use getline() function to read words form a line that I have stored in a string ? For example: `char ch[100],w[20]; cin.getline(ch,100);` Now can I use getline to count the number of words in ch. I dont want to use a delimeter to directly count words from ch. ...
0debug
static void dequantization_float(int x, int y, Jpeg2000Cblk *cblk, Jpeg2000Component *comp, Jpeg2000T1Context *t1, Jpeg2000Band *band) { int i, j; int w = cblk->coord[0][1] - cblk->coord[0][0]; for (j = 0; j < (cblk->coord[1][1] - cblk-...
1threat
No such external account . Stripe Payout not working using php? : **I am transferring fund from stripe account to connect account using payout api ** my code is: $payout = \Stripe\Payout::create([ 'amount' => 500, 'currency' => 'aud', '...
0debug
Do C++ Concepts allow for my class at declaration/definition to specify it satisfies certain concept? : <p>Currently best way I can think of is to use static_assert, but I would prefer nicer way.</p> <pre><code>#include &lt;set&gt; #include &lt;forward_list&gt; using namespace std; template&lt;typename C&gt; concept...
0debug
void spapr_vio_bus_register_withprop(VIOsPAPRDeviceInfo *info) { info->qdev.init = spapr_vio_busdev_init; info->qdev.bus_info = &spapr_vio_bus_info; assert(info->qdev.size >= sizeof(VIOsPAPRDevice)); qdev_register(&info->qdev); }
1threat
How to give date time format in android data : i am fetching date time from my api in which i am facing problem how i can set this date time to textView. I want to show this dateTime in this format how i can do this 9 Sep,2018. here is my snapshot in which date format is given. that format is coming from my API. [Date...
0debug
static void qmp_input_type_int(Visitor *v, int64_t *obj, const char *name, Error **errp) { QmpInputVisitor *qiv = to_qiv(v); QObject *qobj = qmp_input_get_object(qiv, name, true); if (!qobj || qobject_type(qobj) != QTYPE_QINT) { error_setg(errp, QERR_INVALID_PA...
1threat
how to use InteractionManager.runAfterInteractions make navigator transitions faster : <p>Because of complex logic, I have to render many components when <code>this.props.navigator.push()</code>, slow navigator transitions make app unavailable.</p> <p><a href="https://i.stack.imgur.com/XI9Is.jpg" rel="noreferrer"><img...
0debug
How to configure Flume to listen a web api http petitions : <p>I have built an api web application, which is published on IIS Server, I am trying to configure Apache Flume to listen that web api and to save the response of http petitions in HDFS, this is the post method that I need to listen:</p> <pre><code> [HttpP...
0debug
Failed at the node-sass@4.7.2 postinstall script : <p>I just downloaded the latest version of <code>node.js</code> and I've been trying to do <code>npm install</code> on one of my projects but saying:</p> <blockquote> <p>Failed at the node-sass@4.7.2 postinstall script.</p> </blockquote> <p>I tried doing: <code>npm...
0debug
Genymotion virtualization engine not found/plugin loading aborted on Mac : <p>I downloaded Genymotion but cannot get it to work. I keep on getting "virtualization engine not found, plugin loading aborted". I have uninstalled and reinstalled it, force quit and restarted it, and looked at other solutions to no avail. It ...
0debug
how to solve following sexmachine anaconda python error? : (base) C:\Users\sujit>pip install SexMachine Collecting SexMachine Using cached https://files.pythonhosted.org/packages/dd/01/cc5b32af2b3658079736bd865019aeb8db04f9c5764eac72185c276 c/SexMachine-0.1.1.tar.gz Complete output from command python setup.p...
0debug
static int decode_dvd_subtitles(AVSubtitle *sub_header, const uint8_t *buf, int buf_size) { int cmd_pos, pos, cmd, x1, y1, x2, y2, offset1, offset2, next_cmd_pos; int big_offsets, offset_size, is_8bit = 0; const uint8_t *yuv_palette = 0; uint8_t colormap[4], alpha[2...
1threat
Fill NaN based on previous value of row : <p>I have a data frame (sample, not real):</p> <p>df = </p> <pre><code> A B C D E F 0 3 4 NaN NaN NaN NaN 1 9 8 NaN NaN NaN NaN 2 5 9 4 7 NaN NaN 3 5 7 6 3 NaN NaN 4 2 6 4 3 NaN NaN ...
0debug
How to detect noise in images : <p>How to detect noise in images?</p> <p>I need to do some preprocessing before OCR and I need to detect if there are areas with noise? How to detect these areas? They are typically in rectangular areas</p> <p>Below is an example. There are some noise in the last column to the right. I...
0debug
How to explode string after \ in php : <p>I have a requirement where username is entered as <strong>textdev\userid</strong></p> <p>I need to get the userid from this string,I have tried using explode but it's not working with "\".</p> <p>Can anybody suggest me how to extract the userid from this string in php.</p>
0debug
static void gen_tlbre_440(DisasContext *ctx) { #if defined(CONFIG_USER_ONLY) gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); #else if (unlikely(ctx->pr)) { gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); return; } switch (rB(ctx->opcode)) { case 0: case 1: case ...
1threat
Javascript Instanciate new Object with dynamic parameter from String : I would like to instantiate a new object with dynamic parameters coming from an exernal String. Here is the code: const editorInstance = new Editor('#edit', placeholderText: null, theme: 'dark', language: 'en', linkList:[{text:...
0debug
int avformat_network_deinit(void) { #if CONFIG_NETWORK ff_network_close(); ff_tls_deinit(); ff_network_inited_globally = 0; #endif return 0; }
1threat
C# Parent and Child class - picking the child out of a parent class : <p>Does anyone know, why this underlines(error) Suit (Child class of Stock)in the part that says "stock is Suit"?</p> <pre><code>//Picking Suit out of the Stock public System.Collections.ArrayList Suit() { System.Collecti...
0debug
static void softusb_usbdev_datain(void *opaque) { MilkymistSoftUsbState *s = opaque; USBPacket p; p.pid = USB_TOKEN_IN; p.devep = 1; p.data = s->kbd_usb_buffer; p.len = sizeof(s->kbd_usb_buffer); s->usbdev->info->handle_data(s->usbdev, &p); softusb_kbd_changed(s); }
1threat
why self invoking function throws error without enclosing parenthesis : <p>I have two code snippet. First one is working fine but the second one is giving error.</p> <pre><code>var b = function abc() { alert(a); }() </code></pre> <p>Here I am getting the alert message.</p> <pre><code>function abc() { alert(a...
0debug
from collections import defaultdict def max_occurrences(nums): dict = defaultdict(int) for i in nums: dict[i] += 1 result = max(dict.items(), key=lambda x: x[1]) return result
0debug
Can we convert .class file into .exe file : <p>**Is there any way to convert class file into exe file ? Suppose i created a java desktop application and want to convert into exe **</p>
0debug
Connecting each column for each row in r ggplot2 scatter plot : <p>I have three columns: "original", "pos1", "pos2". Each row is an individual. I want to create a scatterplot where "original" is on the x-axis, and pos1 and pos2 values are on the y-axis. So each original will have a pos1 dot and a pos2 dot. I can create...
0debug
Importing pb.go file in a golang project? : How can i import my generated `pb.go` file so I can call the methods in them? I visited all the examples for go and they all seem to import with `github.com/...` **Example.go** ``` import ( "github.com/go-chi/chi" chiMiddleware "github.com/go-chi/chi/middleware" "g...
0debug
ACF conditional logic for Google maps fields not Working : I am using ACF google Maps to give direction to a Tender briefing location to clients. Everything is working perfectly fine with the code below. I am using a Conditional logic of "Compulsory Briefing" YES/NO. if Compulsory briefing is YES i show the Get directi...
0debug
void ff_vp3_idct_dc_add_c(uint8_t *dest, int line_size, const DCTELEM *block){ int i, dc = (block[0] + 15) >> 5; for(i = 0; i < 8; i++){ dest[0] = av_clip_uint8(dest[0] + dc); dest[1] = av_clip_uint8(dest[1] + dc); dest[2] = av_clip_uint8(dest[2] + dc); dest[3] = av_clip_...
1threat
static void pci_realview_class_init(ObjectClass *class, void *data) { DeviceClass *dc = DEVICE_CLASS(class); dc->cannot_destroy_with_object_finalize_yet = true; }
1threat
how to make values as keys and push it in json object : I have json like 0:{columnName:"gender",seedValues:["M","F"]} 1:{columnName:"entity_type",seedValues:["O","I"]} I want json like { "gender":["M","F"], "entity_type":["O","I"] } In Angular 6 or javascript
0debug
Is it possible to host telegram on my own server? : <p><a href="https://telegram.org/" rel="noreferrer">Telegram</a> is a cloud based chat service. All of their clients are open source. I was wondering if there's a way to host a 'private' telegram service on my own server. </p> <p>If not, is there anything out there t...
0debug
In R, Python or Stata: How to delete all files in all subfolders : <p>I have a folder with multiple subfolders (with more subfolders in those) where different specifications of datasets are saved (sometimes sliced and diced). </p> <p>I am afraid that some legacy files in there will mess things up when I aggregate file...
0debug
How do I turn off syntax highlighting for txt files in notepad++? : <p>Notepad recently began applying a greyed-out color to anything in quotes in my txt files. I don't know what started this and I can't find way to undo it in the settings. How do I change it back?</p>
0debug
Displaying the date : <p>I trying to only show the date so for example <code>2018-04-09</code> and not the time. After that I want it to make it like <code>9 april 2018</code> but I can't change the database because I need the hours/seconds/minutes for an other thing. I did not found on the internet what I need in my c...
0debug
How can I measure pixels in Chrome without an extension? : <p>Due to security limitations at work, I am not allowed to install Chrome extensions. Chrome has a ruler built in to the developer tools, but I can't figure out how to define start and end points like a ruler would permit.</p> <p>Are there any tools or techni...
0debug
static void test_submit_aio(void) { WorkerTestData data = { .n = 0, .ret = -EINPROGRESS }; data.aiocb = thread_pool_submit_aio(worker_cb, &data, done_cb, &data); active = 1; g_assert_cmpint(data.ret, ==, -EINPROGRESS); qemu_aio_flush(); g_assert_cmpint(active, ==, 0); g_asser...
1threat
How can I customise navigation bar using xcoe 9 in iOS : I can I customise navigation bar like this in Xcode 9. [enter image description here][1] [1]: https://i.stack.imgur.com/GazRn.png
0debug
Typescript compiler "cannot find module" when using Webpack require for CSS/image assets : <p>I am writing <strong>vanilla Javascript</strong> but using the Typescript compiler's <code>checkJs</code> option to do type checking in VSCode. I have Webpack set up to load various asset types (CSS, images, etc), which works...
0debug
ajax posting NAN valie : Im posting a variable via ajax however when I use it in php I get NAN why is that ? its supposed to be a number //in js var variableToSend = 1; $.post('ajax.php', {variable: variableToSend}); <?php echo $_POST['variable']?>;
0debug
static inline void vring_set_avail_event(VirtQueue *vq, uint16_t val) { VRingMemoryRegionCaches *caches; hwaddr pa; if (!vq->notification) { return; } caches = atomic_rcu_read(&vq->vring.caches); pa = offsetof(VRingUsed, ring[vq->vring.num]); virtio_stw_phys_cached(vq->vde...
1threat
PHP array_search not working (returns empty string) : <p>I'm trying to check if a filename of an image contains "cover". Somehow this stopped working for me (Pretty sure it worked already). I copied the part of my function not working. </p> <pre><code>$name=array("_IMG8555.jpg", "_IMG7769.jpg", "_IMG8458.jpg", "Cover....
0debug
enum CodecID codec_get_id(const CodecTag *tags, unsigned int tag) { while (tags->id != 0) { if( toupper((tag >> 0)&0xFF) == toupper((tags->tag >> 0)&0xFF) && toupper((tag >> 8)&0xFF) == toupper((tags->tag >> 8)&0xFF) && toupper((tag >>16)&0xFF) == toupper((tags->tag >>16)&0xFF) ...
1threat
Rewrite C-style for loop in Swift 3 : <p>I have a C-style for loop that's no longer supported in Swift 3. It looks something like this:</p> <pre><code>for (var x = 0; x &lt; foo.length &amp;&amp; x &lt; bar.length; x++) {} </code></pre> <p>What's the equivalent of this that's available now in Swift 3?</p>
0debug
static void blend_image_rgba_pm(AVFilterContext *ctx, AVFrame *dst, const AVFrame *src, int x, int y) { blend_image_packed_rgb(ctx, dst, src, 1, x, y, 1); }
1threat
How do I add a background image to flutter app? : <p>I am trying to add a Background image to my Flutter App, and I have gone through all similar questions on SO. The app m runs fine but the image does not appear.</p> <p>here is my widget code:</p> <pre><code> @override Widget build(BuildContext context) { ret...
0debug
Powershell script for PC and Monitor Make/Model and Serial number : I found this great script, however I require assistance with editing it to also include the PC Serial Number, would anyone be able to assist please? I am able to get it to work as is, however i really require the PC Serial Number to be included with t...
0debug
Aml *init_aml_allocator(void) { Aml *var; assert(!alloc_list); alloc_list = g_ptr_array_new(); var = aml_alloc(); return var; }
1threat
static av_cold int XAVS_init(AVCodecContext *avctx) { XavsContext *x4 = avctx->priv_data; x4->sei_size = 0; xavs_param_default(&x4->params); x4->params.pf_log = XAVS_log; x4->params.p_log_private = avctx; x4->params.i_keyint_max = avctx->gop_size; if ...
1threat
Android Image upload/download with Base64 into JSON causes Out of memory error : <p>I currently encode and decode images to Base64. I overcame the initial issue with OOM's with the use of streams to encode the images into strings.</p> <p>My issue now is that I cannot fathom how to add multiple Base64 encoded strings f...
0debug
static int ehci_state_advqueue(EHCIQueue *q, int async) { #if 0 if (I-bit set) { ehci_set_state(ehci, async, EST_HORIZONTALQH); goto out; } #endif if (((q->qh.token & QTD_TOKEN_TBYTES_MASK) != 0) && (q->qh.altnext_qtd > 0x1000) && (NLPTR_TBIT...
1threat
How do I run a local command with fabric 2? : <p>I want to use Fabric and run a command on local, without having to establish any additional connections.</p> <p>How do I do this in <strong>fabric 2</strong>? ... <a href="http://docs.fabfile.org/en/2.3/api/connection.html?highlight=local" rel="noreferrer">documentation...
0debug
def adjac(ele, sub = []): if not ele: yield sub else: yield from [idx for j in range(ele[0] - 1, ele[0] + 2) for idx in adjac(ele[1:], sub + [j])] def get_coordinates(test_tup): res = list(adjac(test_tup)) return (res)
0debug
int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *ptr , int bpp, int w, int add_rep, int xor_rep, int add_raw, int xor_raw) { int count, x; uint8_t *out = outbuf; for(x = 0; x < w; x += count) { if((count = count_pixels(ptr, w-x, bpp, 1)) > 1) { ...
1threat
Python Converting Two Lists into Dynamic Nested Dict then to JSON, possible? : I have to go through a list of "colors": `list1 = ["red","green","other"]` for each one I need to go through a list of possible matches for each one: `list2 = ["cherries","rasperries","guava","apple","watermelon","grapes","banana"]`...
0debug
API Gateway + Lambda + Python: Handling Exceptions : <p>I'm invoking a Python-based AWS Lambda method from API Gateway in non-proxy mode. How should I properly handle exceptions, so that an appropriate HTTP status code is set along with a JSON body using parts of the exception.</p> <p>As an example, I have the followi...
0debug
db.execute('SELECT * FROM products WHERE product_id = ' + product_input)
1threat
Parcelable OR Serializable : Which is better option to communicate between two activities? : <p>I have bunch of data like Model classes, Array list &amp; some other data type based on requirements. </p> <p>Now, I am planning to start flexible &amp; light weight way to communicate with activities &amp; fragments with h...
0debug
Activity crash while launching third party application : I am trying to start new application on certain Action click and suppose for any reason that application get crashed and doesn't launch,why is it crashing my current activity which started that application. launchmode for current activity is singleTask and sam...
0debug
av_cold int ff_yuv2rgb_c_init_tables(SwsContext *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation) { const int isRgb = c->dstFormat == AV_PIX_FMT_RGB32 || c->dstFormat == AV...
1threat
What happen to SketchFlow and what we should use instead? : <p>What is the new <strong>Microsoft way</strong> of UI prototyping since VS2015 doesn't support SketchFlow projects. <em>(I'm having hard time to accept that they removed such a useful tool without providing alternative)</em></p> <blockquote> <p>I know we...
0debug
about creating array with 0s and 1s, and making the content in random order : <p>In java, what I should do the create an array with half of data is 0s, half 1s? And what I should do to use Randomize (shuffle) the contents of the array</p>
0debug
static void con_disconnect(struct XenDevice *xendev) { struct XenConsole *con = container_of(xendev, struct XenConsole, xendev); if (!xendev->dev) { return; } if (con->chr) { qemu_chr_add_handlers(con->chr, NULL, NULL, NULL, NULL); qemu_chr_fe_release(con->chr); } ...
1threat
Mocha only running one test file : <p>My Mocha tests were working fine, but when I added a new module (and test), mocha stopped running all of my test files and now only runs the single new test.</p> <p>My test script:</p> <pre><code>env NODE_PATH=$NODE_PATH:$PWD/src mocha --recursive --compilers js:babel-core/regist...
0debug
tcp_listen(Slirp *slirp, u_int32_t haddr, u_int hport, u_int32_t laddr, u_int lport, int flags) { struct sockaddr_in addr; struct socket *so; int s, opt = 1; socklen_t addrlen = sizeof(addr); DEBUG_CALL("tcp_listen"); DEBUG_ARG("haddr = %x", haddr); DEBUG_ARG("hport = %d", hport); DEBUG_A...
1threat
In which situations a finally block is not executed in C#? : <p>How to skip finally block in C#?</p> <p>Is it possible to skip the 'finally' block even though its present after a try And catch block.</p>
0debug
Change the favicon of the Sphinx Read The Docs theme? : <p>I'm already using a custom css to override some of the styles of the theme using </p> <pre><code>def setup(app): app.add_css_file('custom.css') </code></pre> <p>This works fine. What other app. functions are available? I can't find any documentation.</p> ...
0debug
How to print floats with for loop without other functions BUT range() : <p>I want to Print all the numbers between 5 to 8, with jumps of 0.3. I got 2 problems doing it:</p> <ol> <li><p>It's not very accurate (I know the reason, what I dont know is how to get 5.89999999999 to become 5.9)</p></li> <li><p>I dont know how...
0debug