problem
stringlengths
26
131k
labels
class label
2 classes
Is there any front-end architecture specifically well suited for building sites with sitecore? : <p>Brand new to sitecore, don't have a solid grasp of what the site we are building looks like functionality wise, but curious to get opinions, pros and cons, articles that might have helped others, and the like. I've heard...
0debug
Porn CMS with iframes : <p>I'm looking for a CMS that can at least facilitate my work to create approximately 50k pages that contain code like:</p> <pre><code>&lt;Iframe src = "http://link.com/embed/rewh3487432hdd" frameborder = "0" width = "608" height = "468" scrolling = "no"&gt; &lt;/ iframe&gt; </code></pre> <p>I...
0debug
static int tta_read_packet(AVFormatContext *s, AVPacket *pkt) { TTAContext *c = s->priv_data; AVStream *st = s->streams[0]; int size, ret; if (c->currentframe > c->totalframes) return -1; size = st->index_entries[c->currentframe].size; ret = av_get_packet(s->pb, pkt, ...
1threat
static void rv40_v_strong_loop_filter(uint8_t *src, const int stride, const int alpha, const int lims, const int dmode, const int chroma) { rv40_strong_loop_filter(src, 1, stride, alpha, lims, dmode, chroma); }
1threat
Angular 4 : How to use await/async within subscribe : <p>I can honestly say await/async in angular is really a great stuff, it reduces a lot of braces, improves readability and prevent a lot of human error. However, one thing puzzles me a lot. how can I use await/async inside subscribe.</p> <p>let's say</p> <pre><cod...
0debug
What does this syntax [0:1:5] mean (do)? : I thought it was a matrix, but it doesn't seem to match the syntax for a matrix. Here is the entire context: function [x , y] = plotTrajectory(Vo,O,t,g) % calculating x and y values x = Vo * cos(O) * t ; y = Vo*(sin(O)*t)-(0.5*g*(t.^2)); plot (x,y...
0debug
VSCODE - Disable highlighting and outlining in html tags and editor line : <p>These are some of the things I really find visually annoying in VSCODE, I was hoping someone could help me disable them.</p> <p><strong>1.) Outlining &lt;> in tags.</strong></p> <p><a href="https://i.stack.imgur.com/gO4I6.jpg" rel="noreferr...
0debug
ram_addr_t last_ram_offset(void) { RAMBlock *block; ram_addr_t last = 0; QTAILQ_FOREACH(block, &ram_list.blocks, next) last = MAX(last, block->offset + block->length); return last; }
1threat
PyTorch Binary Classification - same network structure, 'simpler' data, but worse performance? : <p>To get to grips with PyTorch (and deep learning in general) I started by working through some basic classification examples. One such example was classifying a non-linear dataset created using sklearn (full code availabl...
0debug
ASP.NET Core - Add role claim to User : <p>I've an ASP.NET Core (based on .NET Framework) using Windows Authentication. Point is, I need to add a role claim on that user and this role is stored in a distant database.</p> <p>I've read so much thing about OWIN/Cookie/UserManager/UserStore/Identity and so on that I'm los...
0debug
Trying to write a code in Python-where am I going wrong? : The question i attempted to answer is as follows: Write a Python function that computes the number of days, hours, and minutes in a given number of minutes ie: def daysHoursMinutes(m): which ends as return (d, h, M) I wrote the following code: def d...
0debug
C++ setprecision : <p>newbie learning C++ and not understanding the problem I have trying to use setprecision(2) says setprecision(2) is undefined. If anyone could help I'd be most grateful.</p> <pre><code> #include &lt;iostream&gt; #include &lt;string&gt; using namespace std; int main() { double price,shippin...
0debug
How is C# string interpolation compiled? : <p>I know that interpolation is syntactic sugar for <code>string.Format()</code>, but does it have any special behavior/recognition of when it is being used with a string formatting method?</p> <p>If I have a method:</p> <pre><code>void Print(string format, params object[] p...
0debug
WatchOS app cannot start with error Domain: "IDELaunchErrorDomain Code: 15" on Xcode 11 beta : <p>Want to run app under watchOS getting error under Xcode beta: Domain: IDELaunchErrorDomain Code: 15 Failure Reason: Build and Run launch failed as the app to run does not appear to be known by the system.</p>
0debug
How to get parent of clicked element in Vue.js : <p>How to get parent of clicked (this) element in Vue.js? In jQuery this looks like:</p> <pre><code>$(this).parents(':eq(2)').next('.press__news__nav--view').show(); </code></pre> <p>Thanks!</p>
0debug
why the array is static : <p>i have watched tutorial that explain how to return array from function</p> <p>and this is similar code</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; #include &lt;time.h&gt; int *grn(); int main() { int *a; a=grn(); for(int i = 0;i&lt;10;i++){ prin...
0debug
Convert date string swift : <p>I have a date string in this format:</p> <pre><code>2016-06-20T13:01:46.457+02:00 </code></pre> <p>and I need to change it to something like this:</p> <pre><code>20/06/2016 </code></pre> <p>Previously I have always used this library -> <a href="https://github.com/malcommac/SwiftDate/b...
0debug
Zoom to specified markers react-native-maps : <p>There is a section in the <a href="https://github.com/airbnb/react-native-maps#zoom-to-specified-markers" rel="noreferrer">react-native-maps</a> docs for zooming to an array of markers, however there are no code examples on how to do this either in the docs or in the exa...
0debug
How to loop through each month of current year and get first and last date of each month : <p>I wanna loop through all the months of a given year or current year and get first and last date of each month. For example. Current year is 2017 and month October. So i wanna loop from October, 2017 to Decemeber, 2017 and fetc...
0debug
Exporting an imported interface in TypeScript : <p>I have a number of templates in different directories - I define an interface for each so I can be sure that what I am referencing in my TypeScript code will be available in the template.</p> <p>I would like to define an interface for each of them and then collate all...
0debug
implicit conversion of 'nsinteger' (aka 'long') to 'nsstring *' is disallowed with arc : -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if ([segue.identifier isEqualToString:@"mnuSelected"]) { ViewController *v = segue.destinationViewController; if(s...
0debug
static void bdrv_stats_iter(QObject *data, void *opaque) { QDict *qdict; Monitor *mon = opaque; qdict = qobject_to_qdict(data); monitor_printf(mon, "%s:", qdict_get_str(qdict, "device")); qdict = qobject_to_qdict(qdict_get(qdict, "stats")); monitor_printf(mon, " rd_bytes=%" PRId64 ...
1threat
How can my code create a code and call it then, in C? : <p>I am beginner in programming and in C. I want to create a "machine-learning" rubik's cube solver. In first place, the solution of cube, will be accomplished, by random cube's rotaions. I want to save somehow these steps, of the first way to solution. How could ...
0debug
static int xiph_parse_sdp_line(AVFormatContext *s, int st_index, PayloadContext *data, const char *line) { const char *p; char *value; char attr[25]; int value_size = strlen(line), attr_size = sizeof(attr), res = 0; AVCodecContext* codec = s->streams[st_index]...
1threat
MENU BUTTON POSITION WHEN NOT ACTIVE but at media screen size 600px : MENU BUTTON POSITION WHEN NOT ACTIVE but at media screen size 600px i have screen shots with what i need it to do, Im not worried about the look of the menu i can do that but been having trouble with menu button not where i want it after media scree...
0debug
order wise match with batch and qty : I have a problem with excel sheet. i am sharing you my excel problem. Col-A Col-B Col-C Order.No Batch Qty 123451 211 5 123451 212 30 123451 213 50 123461 311 40 123471 411 50 123471 511 80 123481 611 20 123491 612 30 in c...
0debug
static inline void RENAME(yuy2ToUV)(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1, const uint8_t *src2, int width, uint32_t *unused) { #if COMPILE_TEMPLATE_MMX __asm__ volatile( "movq "MANGLE(bm01010101)", %%mm4 \n\t" "mov %0, %%"REG_a" \n\t" "1: ...
1threat
react-native style opacity for parent and child : <p>react-native : I have one View and the child of View is an Image , I applied opacity: 0.5 for View and opacity: 0.9 for an Image but it doesn't apply for Image ,the parent opacity is applying for child , the child doesn't take independent opacity </p>
0debug
static int mov_write_tfhd_tag(AVIOContext *pb, MOVTrack *track, int64_t moof_offset) { int64_t pos = avio_tell(pb); uint32_t flags = MOV_TFHD_DEFAULT_SIZE | MOV_TFHD_DEFAULT_DURATION | MOV_TFHD_BASE_DATA_OFFSET; if (!track->entry) { flags |= ...
1threat
How can I convert a a Json into a list using REST.Json in Delphi? : I have a json file like this **[{"id":1,"name":"JOHN"},{"id":2,"name":"PETER"}]** and I want to store this list into a ClientDataSet or something like that. I'm using Delphi Tokyo and REST.Json unit.
0debug
static uint32_t m5206_mbar_readl(void *opaque, target_phys_addr_t offset) { m5206_mbar_state *s = (m5206_mbar_state *)opaque; int width; offset &= 0x3ff; if (offset > 0x200) { hw_error("Bad MBAR read offset 0x%x", (int)offset); } width = m5206_mbar_width[offset >> 2]; if (wi...
1threat
static int count_contiguous_free_clusters(int nb_clusters, uint64_t *l2_table) { int i; for (i = 0; i < nb_clusters; i++) { int type = qcow2_get_cluster_type(be64_to_cpu(l2_table[i])); if (type != QCOW2_CLUSTER_UNALLOCATED) { break; } } return i; }
1threat
Angular2 doesn't work Custom Reuse Strategy with Lazy module loading : <p>I tried to use <a href="https://www.softwarearchitekt.at/post/2016/12/02/sticky-routes-in-angular-2-3-with-routereusestrategy.aspx" rel="noreferrer"><strong>custom reuse strategy</strong></a> in my angular2 project, but I found it doesn't work wi...
0debug
PHP: Create SQL query for available $_POST variable : <p>I have this $_POST Variable:</p> <pre><code>Array ( [phone_1] =&gt; 3123213 [phone_2] =&gt; 432423 [phone_3] =&gt; 4234 [phone_4] =&gt; 6456456 [phone_5] =&gt; 7567576 [phone_6] =&gt; ) </code></pre> <p>Now I have this SQL statement:</p...
0debug
SSL handshake error on self-signed cert in Flutter : <p>I'm trying to connect server with self-signed cert, but I take error:<br> E/flutter ( 3781): HandshakeException: Handshake error in client (OS Error: <br>E/flutter ( 3781): CERTIFICATE_VERIFY_FAILED: Hostname mismatch(ssl_cert.c:345))<br> Code, where I set cert:</...
0debug
How do I make a flowchart using markdown on my github blog : <p>I recently put some posts on my github jekyll blog.Everything is fine,except my flowchart.I used to make flowchart like this:</p> <pre><code>```flow my content ``` </code></pre> <p>but when I preview the post,It can't display as a flowchart. This is Ok i...
0debug
Can someone explain C# static variables usage to me, when accessing from another script? : <p>Keep in mind I'm new to C#. Static variables don't seem to serve the same purpose as in C/C++, Fortran, etc. so I'm struggling a bit, esp. with this:</p> <p>I want to be able to attach game objects to variables using the insp...
0debug
static int vhdx_parse_metadata(BlockDriverState *bs, BDRVVHDXState *s) { int ret = 0; uint8_t *buffer; int offset = 0; uint32_t i = 0; VHDXMetadataTableEntry md_entry; buffer = qemu_blockalign(bs, VHDX_METADATA_TABLE_MAX_SIZE); ret = bdrv_pread(bs->file, s->metadata_rt.file_offse...
1threat
How do I make my Discord bot join specific servers? The bot requires a paid subscription and I don't want the invite link to be leaked : <p>I want my Discord bot to only be added to servers where the owner has paid for a subscription. When I give them the bot invite link, I don't want the link to be leaked so how would...
0debug
static void m68020_cpu_initfn(Object *obj) { M68kCPU *cpu = M68K_CPU(obj); CPUM68KState *env = &cpu->env; m68k_set_feature(env, M68K_FEATURE_M68000); m68k_set_feature(env, M68K_FEATURE_USP); m68k_set_feature(env, M68K_FEATURE_WORD_INDEX); m68k_set_feature(env, M68K_FEATURE_QUAD_MULDIV);...
1threat
partial submission on hacker rank : <p>why is my code <a href="http://ideone.com/zm6hP7" rel="nofollow">http://ideone.com/zm6hP7</a> not satisfying all test cases in the problem <a href="https://www.hackerrank.com/contests/opc-a/challenges/infinite-series" rel="nofollow">https://www.hackerrank.com/contests/opc-a/chall...
0debug
How to get ajax result in php I am using below code : when result exist its not going to if condition it will go to else.please any one help me.in query result $num>0 i want alert like.receipt number already exist $.post("acceptajax.php?confirm1="+confirm+'&receipt='+receipt+'&amount='+amount,function(result,st...
0debug
void commit_start(BlockDriverState *bs, BlockDriverState *base, BlockDriverState *top, int64_t speed, BlockdevOnError on_error, BlockDriverCompletionFunc *cb, void *opaque, Error **errp) { CommitBlockJob *s; BlockReopenQueue *reopen_queue = NULL; ...
1threat
static uint32_t tpm_tis_data_read(TPMState *s, uint8_t locty) { TPMTISEmuState *tis = &s->s.tis; uint32_t ret = TPM_TIS_NO_DATA_BYTE; uint16_t len; if ((tis->loc[locty].sts & TPM_TIS_STS_DATA_AVAILABLE)) { len = tpm_tis_get_size_from_buffer(&tis->loc[locty].r_buffer); ret = ti...
1threat
Best practice for handling error in Angular2 : <p>Hi i am trying to receive error sent from catch block (service). in multiple components i need to show a popup with the error message displayed. please let me know how to create a generic method and call it inside service block. Like what i am doing now with "showErro...
0debug
static inline void RENAME(hcscale_fast)(SwsContext *c, int16_t *dst1, int16_t *dst2, int dstWidth, const uint8_t *src1, const uint8_t *src2, int srcW, int xInc) { int32_t *filterPos = c->hChrFilterPos; int16_t *filter = c->h...
1threat
static int build_vlc(AVCodecContext *avctx, VLC *vlc, const uint32_t *table) { Node nodes[512]; uint32_t bits[256]; int16_t lens[256]; uint8_t xlat[256]; int cur_node, i, j, pos = 0; ff_free_vlc(vlc); for (i = 0; i < 256; i++) { nodes[i].count = table[i]; nodes[...
1threat
Do Ruby variables store value or address? : <p>Since in Ruby everything is an object, do Ruby variables store value or address of immediate types (read primitives)? In contrast to C that stores values in variables, if they are primitives.</p>
0debug
why is my MySQL ip different than physical server ip it is running : This may be hugely a dumb question, but i m no vice to mysql, and i just discovered that my sql has different ip i.e. *127.0.0.1* and its hostname(*localhost*) than the machine ip which is *192.168.1.3* and machine hostname is *ceres*, why is it so ? ...
0debug
static gboolean serial_xmit(GIOChannel *chan, GIOCondition cond, void *opaque) { SerialState *s = opaque; if (s->tsr_retry <= 0) { if (s->fcr & UART_FCR_FE) { s->tsr = fifo8_is_full(&s->xmit_fifo) ? 0 : fifo8_pop(&s->xmit_fifo); if (!s->xmit_fifo....
1threat
static void qemu_rdma_signal_unregister(RDMAContext *rdma, uint64_t index, uint64_t chunk, uint64_t wr_id) { if (rdma->unregistrations[rdma->unregister_next] != 0) { fprintf(stderr, "rdma migration: queue is full!\n"); } else { RDMALocalBlock *block ...
1threat
JAVA Date string without symbols : <p>I'm formatting <strong>Date</strong> to <strong>String</strong> without symbols <strong>:,/,-</strong> using <strong>SimpleDateFormat</strong>, but it formats it strangely.</p> <p>Here's my code :</p> <pre><code>public static String getFormatedDate(Date date, String format) { ...
0debug
How to add an object whose key is in a variable to an index in an array : <p>I have an array of objects and want to add a new object to it in a for loop. They key of the object is dynamic and inside a variable. How can I do this. My array:</p> <pre><code>var myKey = "someStringThatIsDynamic"; var myArray[i].myKey =...
0debug
Wordpress search strange behaviour : <p>Has anyone come across or have a fix for the following Wordpress search issue:</p> <p>When you search '<strong><em>degrees</em></strong>', you get results.</p> <p>If you search '<strong><em>degree</em></strong>', you get no results.</p> <p>Very strange!</p> <p>Live site demo ...
0debug
static void pmac_ide_transfer_cb(void *opaque, int ret) { DBDMA_io *io = opaque; MACIOIDEState *m = io->opaque; IDEState *s = idebus_active_if(&m->bus); int n = 0; int64_t sector_num; int unaligned; if (ret < 0) { MACIO_DPRINTF("DMA error\n"); m->aiocb = NULL; ...
1threat
AJAX returns undefined variable after called : <p>I´m developing a session system with Jquery, AJAX, PHP and JSON.</p> <p>This is my generic AJAX function:</p> <pre><code>function ajaxConn(incomingUrl,incomingData) { var returnValue; $.ajax({ url:'backend/'+incomingUrl, method:'POST', data...
0debug
static BlockDriverAIOCB *hdev_aio_ioctl(BlockDriverState *bs, unsigned long int req, void *buf, BlockDriverCompletionFunc *cb, void *opaque) { BDRVRawState *s = bs->opaque; if (fd_open(bs) < 0) return NULL; return paio_ioctl(bs, s->fd, req, buf, cb, opaque); }
1threat
The best way to simply manage users in Symfony : <p>I am using Symfony 2.8 with FOSUserBundle and I would like to simply manage the users of a website. By "simply", I mean to view (by sorting them eventually) their main features (like name, email, roles...) and to edit their roles by promoting and demoting them. In abs...
0debug
av_cold int ff_ivi_decode_close(AVCodecContext *avctx) { IVI45DecContext *ctx = avctx->priv_data; ivi_free_buffers(&ctx->planes[0]); if (ctx->mb_vlc.cust_tab.table) ff_free_vlc(&ctx->mb_vlc.cust_tab); #if IVI4_STREAM_ANALYSER if (ctx->is_indeo4) { if (ctx->is_scalable) ...
1threat
In what situations unit testing should be avoided? : <p>When is unit testing harmful? it can't be used in all situations and it should be selective, do you know situations when it should be avoided?</p>
0debug
static void puv3_board_init(CPUUniCore32State *env, ram_addr_t ram_size) { MemoryRegion *ram_memory = g_new(MemoryRegion, 1); memory_region_init_ram(ram_memory, NULL, "puv3.ram", ram_size, &error_abort); vmstate_register_ram_global(ram_memory); memory_region_add_...
1threat
Is there a better solution to this JavaScript code? : I'm trying to create QR codes in tables. Links from which i need QR code is in div tag innerHTML. <script type="text/javascript"> function myfunction() { // PAGE 1 STARTS // ROW 1 var TextInsideA2 = document.getElementById('A2'...
0debug
matroska_parse_cluster (MatroskaDemuxContext *matroska) { int res = 0; uint32_t id; uint64_t cluster_time = 0; uint8_t *data; int64_t pos; int size; av_log(matroska->ctx, AV_LOG_DEBUG, "parsing cluster at %"PRId64"\n", url_ftell(&matroska->ctx->pb)); while (res =...
1threat
node.js noobie trying to follow a tutorial - need to change jade reference to pug : <p>I'm trying to follow this tutorial to learn about node.js: </p> <p><a href="http://cwbuecheler.com/web/tutorials/2014/restful-web-app-node-express-mongodb/" rel="noreferrer">http://cwbuecheler.com/web/tutorials/2014/restful-web-app-...
0debug
static void qbus_list_dev(BusState *bus, char *dest, int len) { DeviceState *dev; const char *sep = " "; int pos = 0; pos += snprintf(dest+pos, len-pos, "devices at \"%s\":", bus->name); LIST_FOREACH(dev, &bus->children, sibling) { pos += snprintf(dest+pos, len-...
1threat
static int ram_load_postcopy(QEMUFile *f) { int flags = 0, ret = 0; bool place_needed = false; bool matching_page_sizes = qemu_host_page_size == TARGET_PAGE_SIZE; MigrationIncomingState *mis = migration_incoming_get_current(); void *postcopy_host_page = postcopy_get_tmp_page(mis); v...
1threat
uint32_t pci_default_read_config(PCIDevice *d, uint32_t address, int len) { uint32_t val; switch(len) { case 1: val = d->config[address]; break; case 2: val = le16_to_cpu(*(uint16_t *)(d->config + address)); break; default:...
1threat
Style BottomNavigationBar in Flutter : <p>I am trying out Flutter and I am trying to change the colour of the <code>BottomNavigationBar</code> on the app but all I could achieve was change the colour of the <code>BottomNavigationItem</code> (icon and text). </p> <p>Here is where i declare my <code>BottomNavigationBar...
0debug
Bootstrap 4 row fill remaining height : <p>I'm struggling to make the a row stretch to fill the rest of the available height. I tried adding <code>h-100</code> to the row class but that causes a white space at the bottom of the screen. There must be a way to do it but I'm totally stumped.. Here is my code: </p> <pre><...
0debug
static int ide_dev_initfn(IDEDevice *dev, IDEDriveKind kind) { IDEBus *bus = DO_UPCAST(IDEBus, qbus, dev->qdev.parent_bus); IDEState *s = bus->ifs + dev->unit; Error *err = NULL; if (dev->conf.discard_granularity == -1) { dev->conf.discard_granularity = 512; } else if (dev->conf.discard_gran...
1threat
static void pc_init_isa(MachineState *machine) { has_pci_info = false; has_acpi_build = false; smbios_defaults = false; if (!machine->cpu_model) { machine->cpu_model = "486"; } x86_cpu_compat_disable_kvm_features(FEAT_KVM, KVM_FEATURE_PV_EOI); enable_compat_apic_id_mode...
1threat
static void vga_screen_dump_common(VGAState *s, const char *filename, int w, int h) { DisplayState *saved_ds, ds1, *ds = &ds1; DisplayChangeListener dcl; vga_invalidate_display(s); saved_ds = s->ds; memset(ds, 0, sizeof(DisplayState)); memset(...
1threat
What language are exe files? Can I make a .exe from python? : <p>I was wondering what language are windows programs coded in? Can a python program run on windows if the computer doesn't have python installed?</p>
0debug
static void cirrus_do_copy(CirrusVGAState *s, int dst, int src, int w, int h) { int sx, sy; int dx, dy; int width, height; int depth; int notify = 0; depth = s->get_bpp((VGAState *)s) / 8; s->get_resolution((VGAState *)s, &width, &height); sx = (src % (width * depth)) ...
1threat
How to run ExUnit tests within IEx : <p>I'm trying to launch <code>IEx.pry</code> within a test. However I cannot get to run the tests within an iex session. Note that I'm not using mix.</p> <pre><code>ExUnit.start defmodule Calc do def add(a,b) do a + b end end defmodule TheTest do use ExUnit.Case test...
0debug
what is the best responsive method for HTML template : <p>mostly we use bootstrap for responsive but there have many peoples need responsive without bootstrap framework. I know about LESS. is that any other way to do my web site responsive perfectly </p>
0debug
PHP connect to DB and check URLs : I try to build a PHP function to check if some URLs are still working of have expired. I managed to connect to my database, retrieve the list of URLs to check and use a check function I found on stackoverflow. However I have problems loop through all the URLs and write back the re...
0debug
How to avoid repetitive long generic constraints in Rust : <p>I'm trying to make my own implementation of big integers (just for education). The implementation is generic by data type:</p> <pre><code>struct LongNum&lt;T&gt; where T: Integer + MulAssign + CheckedMul + CheckedAdd + Copy + From&lt;u8&gt; { values: Ve...
0debug
Why images are not showing up in iframe? : <p>I am using iframe to show data from our media manager site. But iframe is not showing up images.</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;meta charset="UTF-8"&gt; &lt;title&gt;MM Test IFrame&lt;/title&gt; &lt;/head&gt; &lt;body&gt;...
0debug
static void pc_init_pci_1_3(QEMUMachineInitArgs *args) { enable_compat_apic_id_mode(); pc_sysfw_flash_vs_rom_bug_compatible = true; has_pvpanic = false; pc_init_pci(args); }
1threat
Fastest remove certain values from array : I have an array looking like this : [[Wed Sep 20 09:00:00 GMT+02:00 2017, SKYSCANNER, 04b073133c7843248a7a3dbc968f75a0, network1, affiliate, 1141338.0, 18164.0, , 0.08, 0.07, 0.62, 0.06, 0.0138, 0.0738, 0.465, 0.10695, 0.57195, 0.0525, 0.012075, 0.064575], [Wed Sep 20...
0debug
Delet files using .bat in Windows 10 : I'm gonna show the first part of my script: @echo off mode 34,18 color f0 del /s /q /f unsorted_frt.txt >nul 2>nul del /s /q /f output_frt.txt >nul 2>nul del /s /q /f frt.txt >nul 2>nul del /s /q /f datas_futuros_rede_tan.txt >nul 2>nul ...
0debug
static int compare_litqobj_to_qobj(LiteralQObject *lhs, QObject *rhs) { if (lhs->type != qobject_type(rhs)) { return 0; } switch (lhs->type) { case QTYPE_QINT: return lhs->value.qint == qint_get_int(qobject_to_qint(rhs)); case QTYPE_QSTRING: return (strcmp(lhs->val...
1threat
'glog/logging.h' file not found : <p>some time ago, every time I start a new project of react-native or when I install the modules I present this error.</p> <p><code>'glog/logging.h' file not found</code>.</p> <p>I found a way to solve it</p> <pre><code>cd node_modules/react-native/third-party/glog-0.3.4 ../../scrip...
0debug
Error occurs in saving data in a database and show them in a listview in a Fragment class in android : I'm developing an android application where it uses a side navigation drawer. In the Fragment class I have an image button and it navigate to a new form to collect user data. After clicks save button, data store in da...
0debug
I want to add a number if user enters add 5 , i want to initialize the variable if user enters set 5. how can I do it in java? : enter code here import java.io.*; import java.math.*; import java.text.*; import java.util.*; import java.util.regex.*; public class Solution ...
0debug
static int smush_read_packet(AVFormatContext *ctx, AVPacket *pkt) { SMUSHContext *smush = ctx->priv_data; AVIOContext *pb = ctx->pb; int done = 0; while (!done) { uint32_t sig, size; if (url_feof(pb)) return AVERROR_EOF; sig = avio_rb32(pb); ...
1threat
VS 2015 C#-based solution with Linker failure : <p>I'm porting an existing VS 2013-based solution to VS 2015 Update 1 and I am receiving an error code:</p> <p>The following is a post-build command that triggers the error:</p> <pre><code>"C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\al.exe...
0debug
static void qmp_input_type_uint64(Visitor *v, const char *name, uint64_t *obj, Error **errp) { QmpInputVisitor *qiv = to_qiv(v); QObject *qobj = qmp_input_get_object(qiv, name, true, errp); QInt *qint; if (!qobj) { return; } qint = qobje...
1threat
Efficiency in Andoid Native : Is more efficient in terms of memory and speed close an activity when you go to another and create a new one when go back or not finishing the activity and leave on the stack?
0debug
static void FUNC(put_hevc_pel_bi_w_pixels)(uint8_t *_dst, ptrdiff_t _dststride, uint8_t *_src, ptrdiff_t _srcstride, int16_t *src2, int height, int denom, int wx0, int wx1, int ox0, int ox...
1threat
static inline void copy(LZOContext *c, int cnt) { register const uint8_t *src = c->in; register uint8_t *dst = c->out; if (cnt > c->in_end - src) { cnt = FFMAX(c->in_end - src, 0); c->error |= AV_LZO_INPUT_DEPLETED; } if (cnt > c->out_end - dst) { cnt ...
1threat
Which Activity gets called when i start a application? : <p>I was going through my android beginners tutorials and I m not able to understand which activity is called when the app is started. </p>
0debug
static int64_t alloc_clusters_imrt(BlockDriverState *bs, int cluster_count, uint16_t **refcount_table, int64_t *imrt_nb_clusters, int64_t *first_free_cluster) { BDRVQcowS...
1threat
Thread Sleep and ReadKey doesn't cooperate : <p>I want to stop the whole do-while loop by using space and write out my WriteLine, but it doesn't do anything on pressing spacebar. I think it's something to do with Thread.Sleep, maybe It doesn't allow user input while on Sleep. I would be really happy if someone could en...
0debug
Android Json and AsyncTask Error : <p>i had written an code that sends data from the android application to the database using JSON Form but i am having some errors when it sends.</p> <p>this is the class for registration:</p> <pre><code>package com.subhi.tabhost; import android.app.AlertDialog; import android.conte...
0debug
java fraction calculator with simplifying fractions : Hi so i have a couple of problems with my code and although i have tried i haven't found out what was wrong with it public class FracCalc { public static void main(String[] args) { // String to test //String input = "5_3/4 - 6_7...
0debug
Want to run the method again if its taking time first time. How to achieve it? : <p>I have a method (say execute()), if it takes more than 10 secs(per say)to return response i need to reexecute it.</p> <p>Kindly help me how to achieve this?</p> <p>Thanks</p>
0debug
Deserisation fails with when using null numeric primitives as map keys : Gson deserialization failed when using null number primitives as map keys Gson gson = new GsonBuilder() .serializeNulls() .serializeSpecialFloatingPointValues() .create(); Map<Inte...
0debug
void bdrv_add_key(BlockDriverState *bs, const char *key, Error **errp) { if (key) { if (!bdrv_is_encrypted(bs)) { error_setg(errp, "Node '%s' is not encrypted", bdrv_get_device_or_node_name(bs)); } else if (bdrv_set_key(bs, key) < 0) { error_set(e...
1threat