problem
stringlengths
26
131k
labels
class label
2 classes
trying to add numbers in javascript : <p>I am trying to write a program to decrypt a encrypted message. The encrypted message is a very long set of numbers ".296.294.255.268.313.278.311.270.290.305.322.252.276.286.301.305.264.301.251.269.274.311.304. 230.280.264.327.301.301.265.287.285.306.265.282.319.235.262.278.249.2...
0debug
static void test_source_notify(void) { while (g_main_context_iteration(NULL, false)); aio_notify(ctx); g_assert(g_main_context_iteration(NULL, true)); g_assert(!g_main_context_iteration(NULL, false)); }
1threat
static av_cold int nvenc_setup_device(AVCodecContext *avctx) { NvencContext *ctx = avctx->priv_data; NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs; CUresult cu_res; CUcontext cu_context_curr; switch (avctx->codec->id) { case AV_CODEC_ID_H264: ctx->init_encode_params....
1threat
int spapr_h_cas_compose_response(sPAPRMachineState *spapr, target_ulong addr, target_ulong size, sPAPROptionVector *ov5_updates) { void *fdt, *fdt_skel; sPAPRDeviceTreeUpdateHeader hdr = { .version_id = 1 }; size -= sizeof(hdr); ...
1threat
Javascript can't change html scr : <p>So im creating an automatic slide show, but for some reason, I can get js to change my img scr to the images in the array I have. </p> <p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false"> <div class="snippet-code"> <pre class="snippet-...
0debug
Can't show a model info in template : <p>I would like to show my model in template, but I've a problem :</p> <pre><code>Uncaught ReferenceError: title is not defined </code></pre> <p>There's my code:</p> <pre><code> var NewsView2 = Backbone.View.extend({ NewsView: _.template(NewsView), initialize: funct...
0debug
Using BoxLayout to resize JPanels in GUI : <p>I currently have this code I am working with:</p> <pre><code>this.getContentPane().add(wwjPanel, BorderLayout.EAST); if (includeLayerPanel) { this.controlPanel = new JPanel(); controlPanel.setLayout(new BoxLayout(controlPanel, BoxLay...
0debug
static int pte_check_hash32(struct mmu_ctx_hash32 *ctx, target_ulong pte0, target_ulong pte1, int h, int rw, int type) { target_ulong mmask; int access, ret, pp; ret = -1; if ((pte0 & HPTE32_V_VALID) && (h == !!(pte0 & HPTE32_V_SECONDARY))) { ...
1threat
static int sap_fetch_packet(AVFormatContext *s, AVPacket *pkt) { struct SAPState *sap = s->priv_data; int fd = url_get_file_handle(sap->ann_fd); int n, ret; fd_set rfds; struct timeval tv; uint8_t recvbuf[1500]; if (sap->eof) return AVERROR_EOF; while (1) { ...
1threat
Alternate to match function in R that returns list of indexes : <p>I am using <code>R 3.5</code><br> I want to get all indexes that contain zero in my list</p> <pre><code>a = c(1,2,3,0,5,7,0) </code></pre> <p>result should be</p> <pre><code>[1] 4 7 </code></pre> <p>should return the indexes as <code>match</code> wi...
0debug
How to add and retrieve from array list? : <p>I'm creating a mock banking program and want to use arraylists to keep track of things like first, last name, account balance, etc. then I want to display these values later with print statements. How do I do this?</p>
0debug
Navigation Arrow Not updating: Navigation arrow not rotating at high speed navigation : <p><a href="https://i.stack.imgur.com/WxCcZ.png" rel="nofollow noreferrer">enter image description here</a></p> <p>In the image above as you can see my navigation arrow is not pointing in the correct direction in which i am driving...
0debug
How to license C++ software : <p>I would like to start selling some software I have developed in C++. The first line of protection will be the fact that C++ produces an executable. Within that, I will also apply algorithmic and manual obfuscation techniques to make it very hard to understand even once cracked.</p> <p>...
0debug
How to Remove the numbers after the dot.? : i have a drop function to get the value and show in an input field but i just need it as decimal number . events: { drop: function() { document.getElementById('point-temp').value = this.y; } ...
0debug
static int tcg_match_xori(TCGType type, tcg_target_long val) { if ((s390_facilities & FACILITY_EXT_IMM) == 0) { return 0; } if (type == TCG_TYPE_I32) { return 1; } if (val < 0 && val == (int32_t)val) { return 0; } return 1; }
1threat
Integer fractorization in C language : I am making a program with C language to make the output look like this. 2 = 2 3 = 3 4 = 2 x 2 5 = 5 6 = 2 x 3 .... 102 = 2 x 3 x 17 103 = 103 104 = 2 x 2 x 2 x 13 I wrote the integer fractorization code in this way. #incl...
0debug
Include path with constant and variable : <p>I'm trying to include a file to current php page but the name of the file depens on the lang.</p> <p>This line does not work:</p> <pre><code>include_once PATH.'lang/'.$_SESSION['lang'].'.php'; </code></pre> <p>How can I achieve that?</p>
0debug
Error with Flowable's onErrorResumeNext, networkOnMainThread : <p>I have the following rxJava chain:</p> <pre><code> override fun combineLocationToPlace(req: Flowable&lt;Place&gt;): Flowable&lt;Place&gt; { var combinedFlowable = Flowable .combineLatest( req, ...
0debug
void rdma_start_incoming_migration(const char *host_port, Error **errp) { int ret; RDMAContext *rdma; Error *local_err = NULL; DPRINTF("Starting RDMA-based incoming migration\n"); rdma = qemu_rdma_data_init(host_port, &local_err); if (rdma == NULL) { goto err; } r...
1threat
Run all unit tests in Android Studio : <p>I have this project in Android Studio :</p> <p><a href="https://i.stack.imgur.com/L5llk.png" rel="noreferrer"><img src="https://i.stack.imgur.com/L5llk.png" alt="enter image description here"></a></p> <p>I wish to run all unit tests in all project with one click.</p> <p>How ...
0debug
Branching Systems Differences : <p>There are 3 different branching systems <em>Feature Branch, Release Branch,</em> and <em>Hotfix Branch</em></p> <p>What is the difference between them and what are they used for?</p>
0debug
split strings and add them as new row : <p>I have the following dataset: </p> <pre><code>df&lt;-data.frame (fact= c("a,b,c,d","f,g,h,v"), value = c("0,1,0,1" , "0,0,1,0")) </code></pre> <p>This is the data:</p> <pre><code> fact value 1 a,b,c,d 0,1,0,1 2 f,g,h,v 0,0,1,0 </code></pre> <p>I wish to split it when t...
0debug
JQuery returns false after return true? : <p>I'm little confused by behaviour of my functions in <code>JQuery</code>. The thing is that <code>is_airport</code> function decides, whether the location is an airport using JSON of airports. </p> <p>Everything seems to work correctly, JSON is correctly parsed etc. As you c...
0debug
uint32_t kvm_arch_get_supported_cpuid(KVMState *s, uint32_t function, uint32_t index, int reg) { struct kvm_cpuid2 *cpuid; uint32_t ret = 0; uint32_t cpuid_1_edx; bool found = false; cpuid = get_supported_cpuid(s); struct kvm_cpuid_entry2 *entry = cpuid_find...
1threat
aspnetcore.dll failed to load : <p>I usually dev on a windows 7 desktop, using visual studio 2015 update 3. I have the same vs2015.3 on my windows 10 laptop. I copied an asp mvc 5 app I am working on to the laptop but it wont run when I try to launch it from VS. I get the "aspnetcore.dll failed to load" error. I lo...
0debug
Problem with my program to scrap data can u check it? : I have to make a code in order to scrap datafrom a website and then analyse them for university My problem is that I made this code in order to get some datas for all products but when I run it it only shows 1 response for each variable. Can u help me see my e...
0debug
Inline eslint comment in JSX : <p>I'm getting an error <code>(eslint): Line 199 exceeds maximum line length of 120. (max-len)</code></p> <p>Why doesn't this inline comment work?</p> <pre><code>{/* eslint-disable-next-line max-len */} &lt;Chip ref="code" style={styles.chip}backgroundColor={this.state.filterSelected['S...
0debug
Run node.js on cpanel hosting server : <p>It is a simple node.js code.</p> <pre><code>var http = require('http'); http.createServer(function(req, res) { res.writeHead(200, { 'Content-Type' : 'text/plain'}); res.end('Hello World!'); }).listen(8080); </code></pre> <p>I uploaded it on cpanel hosting server and i...
0debug
static int pty_chr_write(CharDriverState *chr, const uint8_t *buf, int len) { PtyCharDriver *s = chr->opaque; if (!s->connected) { pty_chr_update_read_handler_locked(chr); return 0; } return io_channel_send(s->fd, buf, len); }
1threat
static int qpa_init_out (HWVoiceOut *hw, struct audsettings *as) { int error; static pa_sample_spec ss; static pa_buffer_attr ba; struct audsettings obt_as = *as; PAVoiceOut *pa = (PAVoiceOut *) hw; ss.format = audfmt_to_pa (as->fmt, as->endianness); ss.channels = as->nchannels; ...
1threat
static void blkverify_verify_readv(BlkverifyAIOCB *acb) { ssize_t offset = qemu_iovec_compare(acb->qiov, &acb->raw_qiov); if (offset != -1) { blkverify_err(acb, "contents mismatch in sector %" PRId64, acb->sector_num + (int64_t)(offset / BDRV_SECTOR_SIZE)); } }
1threat
USBBus *usb_bus_find(int busnr) { USBBus *bus; if (-1 == busnr) return TAILQ_FIRST(&busses); TAILQ_FOREACH(bus, &busses, next) { if (bus->busnr == busnr) return bus; } return NULL; }
1threat
Mapbox-GL setStyle removes layers : <p>I'm building a mapping web application using Mapbox-GL. It has a lot of cool features. I've set up the buttons to switch base maps (ie. satellite, terrain, etc) following the example on the <a href="https://www.mapbox.com/mapbox-gl-js/example/setstyle/" rel="noreferrer">Mapbox w...
0debug
jQuery animation bug : <p>I have a really annoying bug with my menu tab, jQuery hover effect.</p> <p>Here is the link ( <a href="http://pavilioncreative.com" rel="nofollow">http://pavilioncreative.com</a> )</p> <p>If you refresh your page and quickly place your mouse curser over the menu tab and then move out the jQu...
0debug
using background image size contain or cover property how to set background image fit(full width) to web page but with certain height : hey guys i have one question using background image size contain or cover property how do i set background image fit(full width) to web page but with certain height. i'm trying to do t...
0debug
static int mov_write_packet(AVFormatContext *s, AVPacket *pkt) { MOVContext *mov = s->priv_data; ByteIOContext *pb = s->pb; MOVTrack *trk = &mov->tracks[pkt->stream_index]; AVCodecContext *enc = trk->enc; unsigned int samplesInChunk = 0; int size= pkt->size; if (url_is_streamed(s->...
1threat
Creating Archive Button : I have a weekly schedule for work. I want to create a macro and link to a "button" (not even sure if that is possible), that would basically cut cells from one sheet and move it to a new workbook. Basically archiving that week to a new archive workbook. I'm so used to excel and recording ma...
0debug
How to update core-js to core-js@3 dependency? : <p>While I was trying to install and setup react native, the precaution observed about the core-js version as update your core-js@... to core-js@3 But don't know how to update my core-js.</p> <pre><code>$ sudo react-native init AwesomeProject121 Password: This will walk...
0debug
int64_t cpu_get_clock(void) { int64_t ti; if (!timers_state.cpu_ticks_enabled) { return timers_state.cpu_clock_offset; } else { ti = get_clock(); return ti + timers_state.cpu_clock_offset; } }
1threat
Can't print a long long double output : <p>My question is simple, How to print a long long double output?. I know how to print a long double i.e</p> <pre><code>printf("%Lf",output); </code></pre>
0debug
PHP match phrase, but not if phrase contains more words : I want to prevent some words to be saved as username. Following is list of unacceptable words: - love - hug - kiss but if the words contain following, then it becomes acceptable: - loveyou - huggy - kisses I can check first if condition with...
0debug
Programmatically disable app power saving mode on Samsung : <p>I am the developer of a messaging application. My application get put on an automatic power save mode which prevents messages from getting through.</p> <p>When I go to the App Power Saving option on a Samsung phone (Settings->Battery->App Power Saving opti...
0debug
How to create HTTP server inside my app that will feed the .m3u8 data to AVPlayer? : How to create HTTP server inside my app to stream & play file .m3u8 file - http://ccbprnrush-vh.akamaihd.net/i/PRN/premiereradionetworks/The-Rush-Limbaugh-Show/102617/80407_1509037716.12_RUSHMP320171026_,48,.mp4.csmil/master.m3u8
0debug
Answer from Function is incorrect : <p>The answer of this function is returned into the main function of the program, and that works fine. The issue is that any value where the cosine should be 0, it turns out to give a weird irrational number (something like 1.30431912*10^-13). So, 90, 450, and so on, all turn out irr...
0debug
c++ farenheit or celsius converter : Hi Just wondering why this is not working, as of right now it prints out just the farenehit one no matter if i select c or f. plz help #include <iostream> using namespace std; int main() { char unit; float degrees = 0.0; float ...
0debug
What is the proper way to build this code on Windows 10? : <p>I need some help with building this C code on Windows 10. Trouble is, the methods I have so far used don't seem to work (MinGW, Visual Studio Developer Tools etc.). Unfortunately, I only have a very limited understanding of how makefiles should be handles i...
0debug
how to find a array is almost increasing Sequence by omitting only one element in java : I am trying to solve some code in codefights.com. I have given the following problem where I am stuck right now. If I want to see the hint there I have to spent 5000 points which I don't want to. Can anybody help me for this please...
0debug
static int X264_frame(AVCodecContext *ctx, uint8_t *buf, int bufsize, void *data) { X264Context *x4 = ctx->priv_data; AVFrame *frame = data; x264_nal_t *nal; int nnal, i; x264_picture_t pic_out; x4->pic.img.i_csp = X264_CSP_I420; x4->pic.img.i_plane = 3; ...
1threat
void esp_reg_write(ESPState *s, uint32_t saddr, uint64_t val) { trace_esp_mem_writeb(saddr, s->wregs[saddr], val); switch (saddr) { case ESP_TCHI: s->tchi_written = true; case ESP_TCLO: case ESP_TCMID: s->rregs[ESP_RSTAT] &= ~STAT_TC; break; case ESP_F...
1threat
Is there a way to disallow runtime errors to crash app on background thread? : <p>I'm running a method in this way</p> <pre><code>dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), { () -&gt; Void in ... }) </code></pre> <p>I want this logic to avoid crashing app if something goe...
0debug
int ff_img_read_header(AVFormatContext *s1) { VideoDemuxData *s = s1->priv_data; int first_index = 1, last_index = 1; AVStream *st; enum AVPixelFormat pix_fmt = AV_PIX_FMT_NONE; s1->ctx_flags |= AVFMTCTX_NOHEADER; st = avformat_new_stream(s1, NULL); if (!st) { return AVE...
1threat
I wanna make smth like this :( if time " now " = 5:50 pm) do // Somthing Android Studio : <p>I wanna do just like Alarm in time , but as I said in the question I wanna make smth like this :( if time " now " = 5:50 pm) do // Something i tried this but it's take all my battery life time : what I've Done is Set int Hou...
0debug
r - How to make this loop faster? : <p>I am reading the <code>.csv</code> file named <code>cleanequityreturns.csv</code> which looks like this:</p> <p><a href="https://i.stack.imgur.com/c2BR1.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/c2BR1.png" alt="enter image description here"></a></p> <p>I...
0debug
solution to turtle concept in python : This is my piece of code: import turtle def draw_square(some_turtle): for i in range(1,5): some_turtle.forward(100) some_turtle.right(90) def draw_art(): window = turtle.screen() window.bgcolor("red") brad = turtle.Turtle() ...
0debug
How to make only part of text on top of colored div white? : <p>How could I make only the part of the text on the red div white? (so top stays dark grey, but bottom part white)</p> <p><a href="https://i.stack.imgur.com/QWEfc.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/QWEfc.png" alt="image"></a>...
0debug
How to comment out content in Hugo : <p>How do I comment out content in Hugo? </p> <p>If I have notes, unfinished thoughts, I'd like to leave them in the <code>.md</code> file but not have them appear in the <code>html</code>. </p> <p><code>&lt;!--</code> tags don't seem to work -- it doesn't even become a html comme...
0debug
build_mcfg_q35(GArray *table_data, GArray *linker, AcpiMcfgInfo *info) { AcpiTableMcfg *mcfg; const char *sig; int len = sizeof(*mcfg) + 1 * sizeof(mcfg->allocation[0]); mcfg = acpi_data_push(table_data, len); mcfg->allocation[0].address = cpu_to_le64(info->mcfg_base); mcfg->alloc...
1threat
static int qemu_rdma_block_for_wrid(RDMAContext *rdma, int wrid_requested, uint32_t *byte_len) { int num_cq_events = 0, ret = 0; struct ibv_cq *cq; void *cq_ctx; uint64_t wr_id = RDMA_WRID_NONE, wr_id_in; if (ibv_req_notify_cq(rdma->cq, 0)) { ret...
1threat
How to dynamic load android strings.xml easily? : I'm working on android i18n now. There are some strings.xml files in so many values-xxxx directories, but the product manager want to put these hole strings.xml files into the server, app get strings.xml file from network by a language-parameter dynamicly.But strings.xm...
0debug
Error while Installing the python package? : [Error while installing dedupe package :][1] [1]: https://i.stack.imgur.com/QzcAv.png Please help me to solve this error...
0debug
static void smbios_encode_uuid(struct smbios_uuid *uuid, const uint8_t *buf) { memcpy(uuid, buf, 16); if (smbios_uuid_encoded) { uuid->time_low = bswap32(uuid->time_low); uuid->time_mid = bswap16(uuid->time_mid); uuid->time_hi_and_version = bswap16(uuid->time_hi_and_version); ...
1threat
What is the use of WHERE 1=0 in SQL : <p>Why do we write WHERE 1=0 or 1=1 in SQL query under WHERE clause?</p>
0debug
static int aac_adtstoasc_init(AVBSFContext *ctx) { av_freep(&ctx->par_out->extradata); ctx->par_out->extradata_size = 0; return 0; }
1threat
How to integrate two different template in Angular 4 : I am a beginner in angular 4. I try to integrate **admin template** and **frontend template** in the same application. so I can't achieve. If it's possible how can I do. My folder Structure ------------------- Admin Module ------------ [![enter image descr...
0debug
static void omap_os_timer_write(void *opaque, target_phys_addr_t addr, uint64_t value, unsigned size) { struct omap_32khz_timer_s *s = (struct omap_32khz_timer_s *) opaque; int offset = addr & OMAP_MPUI_REG_MASK; if (size != 4) { return omap_badwidth_write32(o...
1threat
How to add image/ads to the sides of main content : <p>Let's say that I got a div called <code>container</code> that is 1000px wide and aligned to the center of the screen. I would like to add images/ads to the blank space that is left over the the left and right side of that div. It should be fixed and should not move...
0debug
Angular4 Application running issues in IE11 : <p>I am building a Angular4 project using Angular CLI (1.1.2). It runs perfectly in Chrome (Version 59.0.3071.115) and firefox(54.0.1) but when I tried to use IE11 (Verison 11.0.9600.18738) nothings shows up and when I open the develper mode in IE, it shows me the following...
0debug
running total wih constant numbers TSQL : I have data looks like this ' MILEAGE January February ........December 0 ` 0 0 2 0.066 0.052 3 0.081 0 5 0 0.062 6 0.080 0 ......... 813 0 0 and so on ' I want the data to look like this ...
0debug
Is a data member of a temporary object an xvalue in C++11? : <pre><code>#include &lt;vector&gt; using namespace std; struct A { vector&lt;int&gt; coll; }; void f(const vector&lt;int&gt;&amp;){} void f(vector&lt;int&gt;&amp;&amp;){} int main() { f(A().coll); // Is "A().coll" an xvalue? } </code></pre> <p><...
0debug
Is there a Python equivalent to the C# ?. and ?? operators? : <p>For instance, in C# (starting with v6) I can say:</p> <pre><code>mass = (vehicle?.Mass / 10) ?? 150; </code></pre> <p>to set mass to a tenth of the vehicle's mass if there is a vehicle, but 150 if the vehicle is null (or has a null mass, if the Mass pro...
0debug
python numpy ndarray element-wise mean : <p>I'd like to calculate element-wise average of numpy ndarray.</p> <pre><code>In [56]: a = np.array([10, 20, 30]) In [57]: b = np.array([30, 20, 20]) In [58]: c = np.array([50, 20, 40]) </code></pre> <p>What I want:</p> <pre><code>[30, 20, 30] </code></pre> <p>Is there an...
0debug
Angular 2 (keydown.enter) can not preventDefault() : <p>the <code>event.preventDefault()</code> doesn't work when I use <code>(keydown.enter)</code> in template. <br> This is demo: <a href="https://plnkr.co/edit/GZrVt7l6BEO2uHfWFoTQ?p=preview" rel="noreferrer">https://plnkr.co/edit/GZrVt7l6BEO2uHfWFoTQ?p=preview</a> Pl...
0debug
python 2.7 string conversion by inserting another string or character after particular counts : send data on serial in hex format i have data in string format on 1st line which converted to hex string on 2nd line but while sending python - serial it should be in format on 3rd line. I want to insert '\x' initially and a...
0debug
static void memory_region_read_accessor(MemoryRegion *mr, hwaddr addr, uint64_t *value, unsigned size, unsigned shift, ...
1threat
Using jQuery to manipulate entire HTML DOM : <p>Is this a good practice? I mean is it good if all of my codes(behavior,presentation,structure) are inside on my .js(for example, since I'm making a website) file? Why? Sorry for my bad english.</p>
0debug
static void test_visitor_out_struct_errors(TestOutputVisitorData *data, const void *unused) { EnumOne bad_values[] = { ENUM_ONE_MAX, -1 }; UserDefZero b; UserDefOne u = { .base = &b }, *pu = &u; Error *err; int i; for (i = 0; i < ARRAY_SIZE(ba...
1threat
unable to add path for image in phpmyadmin : *hello,i was just working on my php website and i need database for that ,so i was tryin to insert image path to phpmyadmin but i am unable to add path becouse i dnt know the exact syntax for iamge path and also when i am trying to insert image path i cant see empty column...
0debug
HTTP Status code for preflight request : <p>this question was asked in some online test on some website but i did not found the correct answer. Can anyone help me to get the right answer.</p> <p>Ques: What is the HTTP Status code for pre-flight request?</p>
0debug
C# Deserialize Multi-Dimentional JSON array : I am having an issue deserializing and defining this JSON structure would be great to get some assistance. I have reverted this back to last known working position because I am just going off the rails here. my JSON stucture is: [ { "name": "Name1", ...
0debug
Serve multiple Angular apps from the same server with Nginx : <p>I'm serving multiple <code>angular</code> apps from the same <code>server</code> block in <code>Nginx</code>. So in order to let the user browse directly to certain custom <code>Angular</code> routes I've declared without having to go through the home pag...
0debug
static int epaf_read_header(AVFormatContext *s) { int le, sample_rate, codec, channels; AVStream *st; avio_skip(s->pb, 4); if (avio_rl32(s->pb)) return AVERROR_INVALIDDATA; le = avio_rl32(s->pb); if (le && le != 1) return AVERROR_INVALIDDATA; if (le) { ...
1threat
Rails 5: Load lib files in production : <p>I've upgraded one of my apps from Rails 4.2.6 to Rails 5.0.0. The <a href="http://edgeguides.rubyonrails.org/upgrading_ruby_on_rails.html#autoloading-is-disabled-after-booting-in-the-production-environment" rel="noreferrer">Upgrade Guide</a> says, that the Autoload feature is ...
0debug
hwaddr mips_cpu_get_phys_page_debug(CPUState *cs, vaddr addr) { MIPSCPU *cpu = MIPS_CPU(cs); hwaddr phys_addr; int prot; if (get_physical_address(&cpu->env, &phys_addr, &prot, addr, 0, ACCESS_INT) != 0) { return -1; } return phys_addr; }
1threat
re-numbering list members in python : <p>How can re-numbering list members respectively from zero to n in Python ?</p> <p>for example :</p> <pre><code>In : [4, 10, 12, 40, 4, 12, 20, 21] Out : [0, 1, 2, 3, 0, 2, 4, 5] </code></pre>
0debug
Moment last day of month parsing issue : <p>Why is this not working? I'm going crazy here trying to find where I might have gone wrong but nothing comes to mind. Tested only in Chrome.</p> <pre><code>var startString = "30.01.2017"; var endString = "31.01.2017"; // is OK var startDate = moment(startString, "DD.MM.YYYY...
0debug
strptime format - Python : <p>I'm currently working with an API that returns date in the following format:</p> <pre><code>d1 = '2015-06-25T18:45:24' d2 = '2015-07-11T18:45:35' </code></pre> <p>So, to find the difference between two times, in days, I'm doing the following:</p> <pre><code>import datetime d1 = datetime...
0debug
S390PCIBusDevice *s390_pci_find_next_avail_dev(S390PCIBusDevice *pbdev) { int idx = 0; S390PCIBusDevice *dev = NULL; S390pciState *s = s390_get_phb(); if (pbdev) { idx = (pbdev->fh & FH_MASK_INDEX) + 1; } for (; idx < PCI_SLOT_MAX; idx++) { dev = s->pbdev[idx]; ...
1threat
Change Xml Color to Drawable : this is my first question, here I want to ask about xml, I want to change the color of the following xml into images. so the point I want mebubah color to the picture. how do I do? thank you this xml code : < color name="spring_loaded_panel_color" >#50e602ee < / color >
0debug
What wrong with my IDEA? : I cant understand whats wrong with my IDEA. In this code i getting errors like this when im trying to assign a value to a variable within a class. Also System.out.println doesnt work in this classes: 1.Identifier expected 2.Unexpected token 3.Unknown class "windows" public static ...
0debug
Replace quotes after double quotes in string : <p>I have following string:</p> <pre><code>&lt;something=""Some" random string" somethingelse="Another "random" string"&gt; </code></pre> <p>I need to change it to this</p> <pre><code>&lt;something="&amp;quot;Some&amp;quot; random string" somethingelse="Another &amp;q...
0debug
NanoTime in java 8 : I am a beginner in java I want compute the execution time of my methods with System.nanoTime and pass this time as stream argument to comparison method and put them in an Long array from [2] to [5], and return this array my problem is i do not know how can i do, because i tried different ways bu...
0debug
gnu make - Ignore clean command in Makefile : I have a project to compile with a lot of makefiles including a clean command. That's why i always have to start over again if there is an error. Question: Is there any possibility to tell make to ignore the clean command? I would have to touch > 100 Makefiles otherwis...
0debug
void decode_mb_coeffs(VP8Context *s, VP8ThreadData *td, VP56RangeCoder *c, VP8Macroblock *mb, uint8_t t_nnz[9], uint8_t l_nnz[9]) { int i, x, y, luma_start = 0, luma_ctx = 3; int nnz_pred, nnz, nnz_total = 0; int segment = mb->segment; int block_dc = 0; if (mb->mode !=...
1threat
What does character "^" do in Excel? : <p>I have a formula in Excel like this <code>D484/(1+$J$6)^B484</code>.</p> <p>What is <code>^</code> doing in this formula?</p>
0debug
static uint32_t dp8393x_readl(void *opaque, target_phys_addr_t addr) { uint32_t v; v = dp8393x_readw(opaque, addr); v |= dp8393x_readw(opaque, addr + 2) << 16; return v; }
1threat
void qemu_add_balloon_handler(QEMUBalloonEvent *func, void *opaque) { balloon_event_fn = func; balloon_opaque = opaque; }
1threat
def check(arr,n): g = 0 for i in range(1,n): if (arr[i] - arr[i - 1] > 0 and g == 1): return False if (arr[i] - arr[i] < 0): g = 1 return True
0debug
Does GraphQL obviate Data Transfer Objects? : <p>To my understanding, <a href="https://martinfowler.com/eaaCatalog/dataTransferObject.html" rel="noreferrer">Data Transfer Objects</a> (DTOs) are typically smallish, flattish, behavior-less, serializable objects whose main advantage is ease of transport across networks. ...
0debug
C# asp.net5 make a link to download PDF file : I make a link that download the PDF file When click on the Link. Here is my .cshtml: <html> <body> <h1>Hello Shuainan</h1> <a href="/Account/PdfDownload">download</a> <input type="button" value="Download" onClick="download('test.pdf')" /> ...
0debug
How to import data from a JSON into a Discord Bot Embed message? : I'm a complete dummy, trying to code a Discord.js bot without any prior coding knowledge. I'm trying to learn as I go. So, the project we are trying to make is a bot that will reply with a discord embed message. It's discord for an online game, where th...
0debug