problem
stringlengths
26
131k
labels
class label
2 classes
static void gen_tlbsx_booke206(DisasContext *ctx) { #if defined(CONFIG_USER_ONLY) gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); #else TCGv t0; if (unlikely(!ctx->mem_idx)) { gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); return; } if (rA(ctx->opcode)) { t0 =...
1threat
How To add new namespace in C# : I am creating MVC project behind i am using C# code. i have `CloudConfigurationManager` in using read db value . its showing red Error . i have searched google i need to add namespace. `using Microsoft.Azure;` i have added that also but again Getting Error Like t...
0debug
Is this a good approach for finding number of prime numbers within a certain range? : <p>During my programming exam in college I was told to write a program that can find the prime numbers from 0 to n.</p> <p>My approach was divide the numbers by 2,3,5 and 7, and the ones that doesn't returns a remainder of value 0 wo...
0debug
How to set table name for @ElementCollection in hibernate : <p>I am using</p> <pre><code>public class UserTask extends BaseObject implements Serializable { @ElementCollection(targetClass = java.lang.String.class) private List&lt;String&gt; userTaskMessage = new ArrayList&lt;&gt;(); . . . . </cod...
0debug
Is the Google Strategy in Passport.js deprecated with the end of Google+ : <p>I use Passport.js and passport-google-oauth20 in my nodejs aplication for authenticating with a "Google Strategy". I just received an email from Google indicating that I use "plus.people.get" from the Google+ API and that it will be deprecate...
0debug
how to get next user id? : I wanna print two rows, first with next five users and second with next 25 users after 5, I am getting an error while getting next id $quary= mysql_query("SELECT * FROM user ORDER BY id ASC "); while($auto_inc_result = mysql_fetch_array($quary)) { $last_id = $auto_...
0debug
Visual Studio 2012 Price only shows up as $0.00 : I'm trying to make a menu that calculates the total cost at the end, however the end cost is supposed to show up in the text box but it only shows $0.00 can anyone help. It is supposed to display as a total cost for your choice of main dish as well as how many sides and...
0debug
I got this QR code and what does this random text from qr code means? : <p><a href="https://i.stack.imgur.com/VeQrA.jpg" rel="nofollow noreferrer">QR code</a></p> <p>and this is the text I got after scanning : FPfX2KMf5fK5nOmMAl4TeHcVRf9FMxZCyViuvzUq2DP9T+rFxoYooeJ3OscXAWRF7RmysClQZW4nijM/ynxlCWK7M8nqg949Iq+X0WJ8icP+Y...
0debug
Is it possible to shuffle or randomly select entire rows of an array in Python? : <p>I'm working with a multidimensional array where each column contains ordered data and each row is a different sample. I would like to randomly downsample to a specific number of rows, but I don't know how to randomly select an entire ...
0debug
I want to do String validation : <p>We need to consider the below string as use cases , First I want to split by "," then by "@"</p> <p>After Splitting by @ if all the domain are same(either all gmail or all yahoo) its valid else invalid.</p> <p>Help me with split part.</p> <pre><code>String input1 = examp...
0debug
Explain the out put of this code about Pointers : #include<stdio.h> main() { char *p="Hello world"; int *q; p++; q=(int*)p; q++; printf("\n %s\n%s",p,q); } The output of this program is this: ello world world Can anybody explain how this program works
0debug
ImportError: libcudnn when running a TensorFlow program : <p>I encountered the following error when trying to run a TensorFlow program:</p> <pre> ImportError: libcudnn.<i>Version</i>: cannot open shared object file: No such file or director </pre>
0debug
Programs that lock the computer : <p>At my school we have started using a new typing software for our exams. This software is called Digiexam: <a href="https://www.digiexam.se/en/" rel="nofollow">https://www.digiexam.se/en/</a> When Digiexam is started the computer freezes so that the program window won't be shut down ...
0debug
static void tracked_request_end(BdrvTrackedRequest *req) { QLIST_REMOVE(req, list); }
1threat
How to manipulate datetime.timedelta and string (Python) : I was trying to sort out the average response time on services provided from **raw data** **What I did:** for aline in rows: delta_a = datetime.datetime.strptime(aline[0], "%Y-%m-%d") delta_b = datetime.datetime.strptime(alin...
0debug
Add a Foreign Key in PgAdmin : <p>I have <code>studidtemplates</code> table below:</p> <p><a href="https://i.stack.imgur.com/fSHCa.png" rel="noreferrer"><img src="https://i.stack.imgur.com/fSHCa.png" alt="enter image description here"></a></p> <p><code>template_id</code> is the primary_key</p> <p><a href="https://i....
0debug
qcrypto_block_luks_open(QCryptoBlock *block, QCryptoBlockOpenOptions *options, QCryptoBlockReadFunc readfunc, void *opaque, unsigned int flags, Error **errp) { QCryptoBlockLUKS *luks; ...
1threat
Sharing data across my gunicorn workers : <p>I have a Flask app, served by Nginx and Gunicorn with 3 workers. My Flask app is a API microservice designed for doing NLP stuff and I am using the spaCy library for it. </p> <p>My problem is that they are taking huge number of RAM as loading the spaCy pipeline <code>spacy....
0debug
static void blend_image_rgba(AVFilterContext *ctx, AVFrame *dst, const AVFrame *src, int x, int y) { blend_image_packed_rgb(ctx, dst, src, 1, x, y, 0); }
1threat
static void hpet_reset(void *opaque) { HPETState *s = opaque; int i; static int count = 0; for (i=0; i<HPET_NUM_TIMERS; i++) { HPETTimer *timer = &s->timer[i]; hpet_del_timer(timer); timer->tn = i; timer->cmp = ~0ULL; timer->config = HPET_TN_PERIODIC_C...
1threat
VIOsPAPRBus *spapr_vio_bus_init(void) { VIOsPAPRBus *bus; BusState *qbus; DeviceState *dev; dev = qdev_create(NULL, "spapr-vio-bridge"); qdev_init_nofail(dev); qbus = qbus_create(TYPE_SPAPR_VIO_BUS, dev, "spapr-vio"); bus = DO_UPCAST(VIOsPAPRBus, bus, qbus); bu...
1threat
Is it valid to "hide" a base class virtual function by making it pure virtual in derived classes? : <p>Consider the example:</p> <pre><code>#include &lt;iostream&gt; class A { public: virtual void f(); }; void A::f() { std::cout &lt;&lt; "f() from A\n"; } class B: public A { public: virtual void...
0debug
System Error C++ : <p>So I'm making a script to make a txt file and put data on it, but when I run the system(); function, I get a strange error. Here's the code.</p> <pre><code>#include &lt;iostream&gt; #include &lt;fstream&gt; #include &lt;stdlib.h&gt; using namespace std; int main() { string textFileName = "S...
0debug
static int read_header(AVFormatContext *s1) { VideoDemuxData *s = s1->priv_data; int first_index, last_index, ret = 0; int width = 0, height = 0; AVStream *st; enum PixelFormat pix_fmt = PIX_FMT_NONE; AVRational framerate; s1->ctx_flags |= AVFMTCTX_NOHEADER; st = avformat_ne...
1threat
m48t59_t *m48t59_init (qemu_irq IRQ, target_phys_addr_t mem_base, uint32_t io_base, uint16_t size, int type) { DeviceState *dev; SysBusDevice *s; M48t59SysBusState *d; dev = qdev_create(NULL, "m48t59"); qdev_prop_set_uint32(dev, "type", type); ...
1threat
long do_sigreturn(CPUSPARCState *env) { abi_ulong sf_addr; struct target_signal_frame *sf; uint32_t up_psr, pc, npc; target_sigset_t set; sigset_t host_set; int err=0, i; sf_addr = env->regwptr[UREG_FP]; trace_user_do_sigreturn(env, sf_addr); if (!lock_user_struct(VERIFY_...
1threat
how to get which value has duplicate maximum times in php array : i have an array and i want to find out which value has duplicated maximum times in the array.Can you please help me to solve it? Array ( [0] => 1 [1] => 2 [2] => 2 [3] => 1 [4] => 2 [5] => 2) The output i want is 2 as it has duplicated 4 times
0debug
create 2-D character array in java : <p>I want to create a character array like this one below: <a href="https://i.stack.imgur.com/k1BTG.png" rel="nofollow noreferrer">character array</a></p> <p>i am unable to find a method . Please help me out. Beginner in java</p>
0debug
builtins.TypeError: cannot convert 'method' object to bytes : <p>I am getting "builtins.TypeError: cannot convert 'method' object to bytes" while trying to decode bson data which I have encoded just before. I would like to get the decoded data into a dict for each loop (to insert it in a mongoDb Collection). </p> <p>I...
0debug
int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname) { char line[1024], group[64], id[64], arg[64], value[1024]; Location loc; QemuOptsList *list = NULL; QemuOpts *opts = NULL; int res = -1, lno = 0; loc_push_none(&loc); while (fgets(line, sizeof(line), fp) != N...
1threat
static int ape_probe(AVProbeData * p) { if (p->buf[0] == 'M' && p->buf[1] == 'A' && p->buf[2] == 'C' && p->buf[3] == ' ') return AVPROBE_SCORE_MAX; return 0; }
1threat
Merge Vue props with default values : <p>I have an options prop in my Vue component that has a default value.</p> <pre><code>export default { props: { options: { required: false, type: Object, default: () =&gt; ({ someOption: false, someOtherOption: { a: true, ...
0debug
How to fixed the unexpected $EOF in this script?, i've trying to fix but can't : <p>How to fixed the unexpected $EOF in this code, i've trying to delete some thing and adding some thing but it not work, i was using google to learn how to fixed it but i not found some thing are work well to my code, this it a code:</p> ...
0debug
double parse_number_or_die(const char *context, const char *numstr, int type, double min, double max) { char *tail; const char *error; double d = av_strtod(numstr, &tail); if (*tail) error = "Expected number for %s but found: %s\n"; else if (d < min || d > ...
1threat
How to add the same element N times? : <p>I have two lists:</p> <pre><code>list1 = [1,2,6] list2 = [] </code></pre> <p>And i have a number: N</p> <p>How can I append the numbers of list1 to list2 so that the sum of the list2 is equal to N.</p> <p>Exemple:</p> <pre><code>n = 10 list2 = [2,2,6] </code></pre> <p>I c...
0debug
C++: How do I assign a value from a 2D dynamic array to another 2D dynamic array since 'temp[0][0] = array[0][0]' doesn't work? : <p>I'm new to c++, and I'm trying to figure out how to get a 2D dynamic array called temp to get values from another 2D dynamic array called array. I couldn't figure out how to assign any va...
0debug
static int disas_dsp_insn(CPUState *env, DisasContext *s, uint32_t insn) { int acc, rd0, rd1, rdhi, rdlo; TCGv tmp, tmp2; if ((insn & 0x0ff00f10) == 0x0e200010) { rd0 = (insn >> 12) & 0xf; rd1 = insn & 0xf; acc = (insn >> 5) & 7; if (acc != 0) ...
1threat
Flutter background of unsafe area in SafeArea widget. : <p>When I provide the <code>SafeArea</code> to a Widget, then it gets some margin from the notches and home button (horizontal line in iPhone X +). How can I change the background of the unsafe area ? (The margin portion)? </p>
0debug
Modern Web Application - Design : <p>I am building a large web application in node.js and I'm always faced with the question 'where should the heavy lifting be done?' I was always taught that the 'logic' should always be done in the backend of the application, but with modern computers and browsers being so powerful it...
0debug
Sequelize: Using Multiple Databases : <p>Do I need to create multiple instances of Sequelize if I want to use two databases? That is, two databases on the same machine.</p> <p>If not, what's the proper way to do this? It seems like overkill to have to connect twice to use two databases, to me.</p> <p>So for example, ...
0debug
Where is the default .NET Core SDK path in MacOS : <p>I've recently installed the .NET Core SDK for MacOS in order to create a demo application using the new JetBrains Rider EAP.</p> <pre><code>Project 'WebApi' load failed Can't initialize DotNetCore: Please select DotNet Core SDK path. To get instructions how to set...
0debug
Member specialization of alias declaration in different namespaces : <p>I just encountered a strange difference in behavior between clang and gcc where I wanted to compile code which looks similar to the following:</p> <pre class="lang-cpp prettyprint-override"><code>namespace n1 { template &lt;class T1, class T2&gt...
0debug
static int doTest(uint8_t *ref[4], int refStride[4], int w, int h, enum AVPixelFormat srcFormat, enum AVPixelFormat dstFormat, int srcW, int srcH, int dstW, int dstH, int flags, struct Results *r) { static enum AVPixelFormat cur_srcFormat; static int c...
1threat
Automatic cookie handling with OkHttp 3 : <p>I am using okhttp 3.0.1. </p> <p>Every where I am getting example for cookie handling that is with okhttp2 </p> <pre><code>OkHttpClient client = new OkHttpClient(); CookieManager cookieManager = new CookieManager(); cookieManager.setCookiePolicy(CookiePolicy.ACCEPT_ALL); c...
0debug
Specific questions about Blockchain : <p>I have familiarized with the blockchain technology for some time through internet research and tutorials, but, as blockchain often appears as a business topic, I could not find good answers to some technical questions. I hope, some of you could help me:</p> <ol> <li>The concept...
0debug
int av_write_frame(AVFormatContext *s, int stream_index, const uint8_t *buf, int size) { AVStream *st; int64_t pts_mask; int ret, frame_size; st = s->streams[stream_index]; pts_mask = (1LL << s->pts_wrap_bits) - 1; ret = s->oformat->write_packet(s, stream_index, buf...
1threat
Visual Studio not downloading DLL for NuGet package : <p>We have a few NuGet packages on our local TeamCity server, and use these in various projects. I have just come back from holiday, grabbed the latest from source code, and tried to rebuild, only to get a pile of compilation errors due to a missing DLL.</p> <p>It ...
0debug
Convert dd/mm/yyyy to yyyy-mm-dd in php : <p>I need to convert date format in php , But i am getting getting error</p> <p>here is my code </p> <pre><code> $test = new DateTime('23/09/2016'); echo date_format($test, 'Y-m-d'); </code></pre> <p>But i am getting error as </p> <pre><code>Message: DateTime::__construc...
0debug
static int mpeg1_decode_picture(AVCodecContext *avctx, UINT8 *buf, int buf_size) { Mpeg1Context *s1 = avctx->priv_data; MpegEncContext *s = &s1->mpeg_enc_ctx; int ref, f_code; init_get_bits(&s->gb, buf, buf_size); ref = get_bits(&s->gb, 10); s->pict_...
1threat
Terms in neural networks : I’m reading a paper about sound separation by using neural network method and I have problems with some terms on it I hope you guys can help in definitions, Here is the question what is the effect of annealing the temperature parameter in a softmax activation function?
0debug
static int dv_decode_video_segment(AVCodecContext *avctx, void *arg) { DVVideoContext *s = avctx->priv_data; DVwork_chunk *work_chunk = arg; int quant, dc, dct_mode, class1, j; int mb_index, mb_x, mb_y, last_index; int y_stride, linesize; DCTELEM *block, *block1; int c_offset; u...
1threat
Why do I get a 'cannot find symbol' error in this program? : <p>When I run the following program, I get a 'cannot find symbol' error. It is probably caused by a stupid mistake, but I have spent about an hour trying to fix it and I have no idea what the problem is. Here is the code:</p> <pre><code>import java.util.*; ...
0debug
Getting facebook page with app_scoped_user_id is not possible anymore? : <p>Below url gaves the user's facebook page till yesterday. But it's not working anymore.</p> <p><a href="https://www.facebook.com/app_scoped_user_id/xxxxxxxxxxxxx/" rel="noreferrer">https://www.facebook.com/app_scoped_user_id/xxxxxxxxxxxxx/</a><...
0debug
How can I use javacript std input/output in repl.it : I write a program for finding the factorial of a given number. But I can't find the place where I give std input and std output on this website. [Website][1] [1]: https://repl.it/@AshiqurRahman1/Stdin-and-Stdout-in-jS
0debug
int qemu_init_main_loop(void) { int ret; qemu_init_sigbus(); ret = qemu_signal_init(); if (ret) { return ret; } ret = qemu_event_init(); if (ret) { return ret; } qemu_cond_init(&qemu_cpu_cond); qemu_cond_init(&qemu_system_cond); qem...
1threat
void qmp_block_set_io_throttle(const char *device, int64_t bps, int64_t bps_rd, int64_t bps_wr, int64_t iops, int64_t iops_rd, int64_t iops_wr, bool has_bps_max, ...
1threat
Multiple if Statments issue : I am having a problem with multiple if statements. I am using && but it seems to only work for the first statement. The code is like such: <!-- begin snippet: js hide: false console: true babel: false --> <!-- language: lang-html --> global $post; $args = array( 'post_id...
0debug
static int bands_dist(OpusPsyContext *s, CeltFrame *f, float *total_dist) { int i, tdist = 0.0f; OpusRangeCoder dump; ff_opus_rc_enc_init(&dump); ff_celt_enc_bitalloc(f, &dump); for (i = 0; i < CELT_MAX_BANDS; i++) { float bits = 0.0f; float dist = f->pvq->band_cost(f->pv...
1threat
static int ebml_read_binary(AVIOContext *pb, int length, EbmlBin *bin) { av_free(bin->data); if (!(bin->data = av_malloc(length))) return AVERROR(ENOMEM); bin->size = length; bin->pos = avio_tell(pb); if (avio_read(pb, bin->data, length) != length) { av_freep(&bin->data); ...
1threat
Just upgrade my site to 1.9.3.0 and got error SQLSTATE[42S22]: Column not found: 1054 Unknown column 'catalog_product_entity_group_price.is_percent' : <p>Before I was using Magento 1.9.2.4 and today I got message that need to upgrade my magento with latest update some critical updates too.</p> <p>After upgrading my we...
0debug
static void xhci_runtime_write(void *ptr, hwaddr reg, uint64_t val, unsigned size) { XHCIState *xhci = ptr; int v = (reg - 0x20) / 0x20; XHCIInterrupter *intr = &xhci->intr[v]; trace_usb_xhci_runtime_write(reg, val); if (reg < 0x20) { trace_usb_xhci_u...
1threat
void hmp_block_set_io_throttle(Monitor *mon, const QDict *qdict) { Error *err = NULL; qmp_block_set_io_throttle(qdict_get_str(qdict, "device"), qdict_get_int(qdict, "bps"), qdict_get_int(qdict, "bps_rd"), qdict_get...
1threat
How to write this code cleaner, without repetition? : <pre><code> $("#yl").click(function(){updateYear("sub")}); $("#yr").click(function(){updateYear("add")}); $("#ml").click(function(){updateMonth("sub")}); $("#mr").click(function(){updateMonth("add")}); $("#dl").click(function(){updateDay("sub")}); $("#dr"...
0debug
PHP check youtube channel existence without API : <p>I want to make simple <code>curl</code> call to check if youtube channel exists. Is it possible without using google API ?</p>
0debug
Swift tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) is not called : I have a Viewcontroller -> UIVIew -> UITableview. `tableView(_ tableView: UITableView, numberOfRowsInSection section: Int)` and `tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath)` is called but not `ta...
0debug
How to create parameters with arrays? : <p>I'm trying to set a parameter as an array, but I get "unexpected token..." at {name[2]}.</p> <pre><code>// javascript const name = ['Jin', 'Kazuya', 'Heiachi'] function Intro(name, profession, city) { document.write("My name is " + name + ", I'm a" + profession + " from...
0debug
Access Google spreadsheet API without auth token : <p>I have created Google Spreadsheet, and given edit access to all (can edit even without login).</p> <p>Here is the <a href="https://docs.google.com/spreadsheets/d/1DKp_nAw37yppmAcfmVI7h340mC2kkI89EOHPGdxu620/edit#gid=0" rel="noreferrer">link</a>. I would like to upd...
0debug
How to code a "if X or If Y AND Z" in JavaScript? : <p>I'm trying to code something who could be say by "If X or if Y AND Z" but it looks like I made a mistake</p> <pre><code>if((machine.isUsed == false) || (if(this.whoUseIt.includes(Session.get("loggedUser")))&amp;&amp;(machine.isUsed))){ </code></pre> <p>I need to ...
0debug
int ff_cbs_write_packet(CodedBitstreamContext *ctx, AVPacket *pkt, CodedBitstreamFragment *frag) { int err; err = ff_cbs_write_fragment_data(ctx, frag); if (err < 0) return err; av_new_packet(pkt, frag->data_size); if (err < 0) ...
1threat
ReactJS Bootstrap Navbar and Routing not working together : <p>I am trying to create a simple Webapp using ReactJS, and I wanted to use the <code>Navbar</code> provided by React-Bootstrap. </p> <p>I created a <code>Navigation.js</code> file containing a class <code>Navigation</code> to separate the <code>Navbar</code>...
0debug
int vnc_zlib_send_framebuffer_update(VncState *vs, int x, int y, int w, int h) { int old_offset, new_offset, bytes_written; vnc_framebuffer_update(vs, x, y, w, h, VNC_ENCODING_ZLIB); old_offset = vs->output.offset; vnc_write_s32(vs, 0); vnc_zlib_start(vs); vnc_raw_send_f...
1threat
Does casting a char array to another type violate strict-aliasing rules? : <p>Consider these two functions:</p> <pre><code>int f1() { alignas(int) char buf[sizeof(int)] = {}; return *reinterpret_cast&lt;int*&gt;(buf); } int f2() { alignas(int) char buf[sizeof(int)] = {}; char* ptr = buf; return *reinterpret...
0debug
void set_numa_modes(void) { CPUArchState *env; int i; for (env = first_cpu; env != NULL; env = env->next_cpu) { for (i = 0; i < nb_numa_nodes; i++) { if (node_cpumask[i] & (1 << env->cpu_index)) { env->numa_node = i; } } } }
1threat
Angular2 keyup event update ngModel cursor position jumps to end : <p>I am having an issue with an Angular2 directive that should do the following:</p> <ul> <li>Detect if the user enters '.' character.</li> <li>If the next char is also '.', remove the duplicate '.' and move the cursor position to after the '.' char</l...
0debug
document.getElementById('input').innerHTML = user_input;
1threat
static int raw_open_common(BlockDriverState *bs, const char *filename, int bdrv_flags, int open_flags) { BDRVRawState *s = bs->opaque; int fd, ret; ret = raw_normalize_devicepath(&filename); if (ret != 0) { return ret; } s->open_flags = open_flags ...
1threat
What is faster, and how can I measure such things? : <pre><code>using System.Collections.Generic; using System.IO </code></pre> <p>Which variant is faster?</p> <p>This?</p> <pre><code>List&lt;short&gt; a = new List&lt;short&gt;(); a.Add(0); a.Add(1); a.Add(2); FileStream fs = new FileStream("file", FileMode.OpenOrCr...
0debug
Building a Search Engine. : <p>I am trying to build a website. User able input certain data from the search field which returns relevant information from the database. What approach should I take to do this project? I am new in programming. I just need suggestions and steps. Thank you. Preferred P.L is Java and MySQL.<...
0debug
Navigating through links using Selenium in Python : <p>I'm trying to scrape data from a site with multiple pages linked via a <strong>NEXT</strong> button </p> <p>The successive page URL has no correspondence with the previous page URL as one might assume</p> <p>(In that case modifying the path would've solved the pr...
0debug
Does Spark maintain parquet partitioning on read? : <p>I am having a lot trouble finding the answer to this question. Let's say I write a dataframe to parquet and I use <code>repartition</code> combined with <code>partitionBy</code> to get a nicely partitioned parquet file. See Below:</p> <pre><code>df.repartition(col...
0debug
static int bad_mode_switch(CPUARMState *env, int mode) { switch (mode) { case ARM_CPU_MODE_USR: case ARM_CPU_MODE_SYS: case ARM_CPU_MODE_SVC: case ARM_CPU_MODE_ABT: case ARM_CPU_MODE_UND: case ARM_CPU_MODE_IRQ: case ARM_CPU_MODE_FIQ: return 0; ...
1threat
How to access Flutter Back button functionality? : <p>I would like to present an AdWords interstitial before the user returns to the previous page. How can I do this when the return button is pressed?</p>
0debug
static void ppc_core99_init(QEMUMachineInitArgs *args) { ram_addr_t ram_size = args->ram_size; const char *cpu_model = args->cpu_model; const char *kernel_filename = args->kernel_filename; const char *kernel_cmdline = args->kernel_cmdline; const char *initrd_filename = args->initrd_filename; ...
1threat
Simple password-protection for React app on Heroku : <p>I have a simple React app, created with create-react-app, that I'd like to deploy to Heroku (or somewhere easy) and password-protect. The protection can be really simple—just a single password is fine.</p> <p>I started looking into HTTP basic auth but didn't find...
0debug
How can i use a TRIM fonction in a SQL Query? : Hi i would like to use the trim fonction but don't realy know how it working. I need to select items in a table and export it on a CSV file. It's working fine but sometime when i have a specif data (here it's a string), the csv file write it with à CR LF and write a...
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 ...
1threat
How can I use database with javascript? : <pre><code>&lt;script&gt; function process_Login(){ var c = document.getElementById("usr").value; var d = document.getElementById("pwd").value; if(c.length==0){ alert("ERROR: Your ID account is NULL"); } else if(isNaN(c)){...
0debug
Beginner programmer, and I received an error : printf("The rate of train 1 and train 2 respectively are what values?\n"); scanf("%d%d", &rate_1_mph, &rate_2_mph); printf("What was the total distance the trains were apart initially?\n"); scanf("%d", &distance_total_mile); printf("The time it takes both trai...
0debug
Tarck anonymous users without forcing users to go through authentication proccess : i want to track all users ( both authenticated users and anonymous users) , so far the solution i found are not good. first of all we can use cookie but as we all know its not a reliable solution , second of all we can use browser...
0debug
Trying ot create an admin "login" : I am trying to make an "admin" login and it isn't working, help? @echo off title RPG BETA color 0b set /p player=Welcome to Xero, what's your name?: if '%player%' == 'Admin' goto admin :intro echo Hello %player%! pause goto s...
0debug
Use static_cast to dynamic polymorphism : <p>I used a static_cast to polymorphism. I read that I should use dynamic_cast, but I can't get why. Code works in both way (with static and dynamic cast).</p> <p>Could anybody show me an example with necessary dynamic_cast operator? </p> <pre><code>class Base { public: ...
0debug
matplotlib ylabel TypeError: 'str' object is not callable : <p>I have noticed some strange behavior that I can't understand in matplotlib.pyplot </p> <p>When I call the ylabel method I get as TypeError as seen below. This does not happen with the xlabel method. The string value there is find and my plot prints.</p> ...
0debug
How to detect a 401 with axios and stop the console error : <p>I am trying to use axios to call an API and return data.</p> <p>I have the following code which works fine</p> <pre><code>axios.get('http://api/courses') .catch(function (error) { if (error.response) { console.log(error.response.status); }...
0debug
static void grlib_gptimer_enable(GPTimer *timer) { assert(timer != NULL); ptimer_stop(timer->ptimer); if (!(timer->config & GPTIMER_ENABLE)) { trace_grlib_gptimer_disabled(timer->id, timer->config); return; } trace_grlib_gptimer_enable(timer->id, t...
1threat
static int set_palette(AVFrame * frame, const uint8_t * palette_buffer, int buf_size) { uint32_t * palette = (uint32_t *)frame->data[1]; int a; if (buf_size < 256*3) return AVERROR_INVALIDDATA; for(a = 0; a < 256; a++){ palette[a] = AV_RB24(&palette_buffer[a * 3]) * 4; } ...
1threat
Why inbuilt classes in Java doesn't have default constructors and arguments need to be passes while creating an object of that class? : I wanted to know why inbuilt classes in Java doesn't have default constructors but arguments need to be passed while creating an object of that class? Ex: public final class Stri...
0debug
How to center the Clicked position in the Recyclerview : <p>I want to center the clicked position in the <code>Recyclerview</code>. I am able to scroll the <code>Recyclerview</code> to certain position but i want to middle that position in the screen. I used this method to scroll to that position.</p> <pre><code>video...
0debug
Codeigniter session is not working on PHP 7 : <p>I am using <strong>codeigniter version 3.0.6</strong> on <strong>PHP 5.6</strong> and it works fine. but when I run same project on <strong>PHP 7.1</strong> , codeigniter session is not working. I set session like below</p> <pre><code>$login_session = $this-&gt;session-...
0debug
how to compare the elemnts of an array : <p>Given a non-empty array, return true if there is a place to split the array so that the sum of the numbers on one side is equal to the sum of the numbers on the other side. </p>
0debug
i want to get style attribute using jquery : Hello i want get height from below div using Jquery <div class="profile-tracker" style="width: 577px; height: 404px; position: absolute; top: -2px; left: -2px; z-index: 290;"></div>
0debug