problem
stringlengths
26
131k
labels
class label
2 classes
Python: minimum not defined : <p>I was using this code to seperate max and min values and it worked for the first few times. but afterwards when debugging it threw up Exception Unhandled: name "minimum" is not defined. Any bit of help would be much appreciated, the code was not written by myself but my friend cant help...
0debug
Anaconda Navigator won't launch (windows 10) : <p>Anaconda navigator won't launch, I tried reinstalling it, that did not work either. anancondas' command prompt shows an error message. I've tried googling the answer, I guess I'm bad at it. <a href="https://i.stack.imgur.com/KEjpf.png" rel="noreferrer">this is what I s...
0debug
nginx 'invalid number of arguments in "map" directive' : <p>I'm trying to reverse-proxy a websocket, which I've done with nginx before with no issue. Weirdly, I can't seem to re-create my prior success with something so simple. I've been over and over the config file but can't seem to find my error.</p> <p>Here's my f...
0debug
static void test_ide_none(void) { char *argv[256]; setup_common(argv, ARRAY_SIZE(argv)); qtest_start(g_strjoinv(" ", argv)); test_cmos(); qtest_end(); }
1threat
qemu_irq spapr_allocate_irq(uint32_t hint, uint32_t *irq_num, enum xics_irq_type type) { uint32_t irq; qemu_irq qirq; if (hint) { irq = hint; } else { irq = spapr->next_irq++; } qirq = xics_assign_irq(spapr->icp, irq, type); ...
1threat
Getting error `\365\277\357\376 in the terminal : <p>The task is to output every second word from the string</p> <p>I made a loop to check every character in the string and while it reaches a space the boolean will change it value to the opposite so before it reaches the next space it will copy the characters from fir...
0debug
Typescript promise generic type : <p>I've a sample Promise function like below. On success I return a <code>number</code> and on false I return <code>string</code>. The compiler is complaining to specify some kind of generic type to the promise. In this case what type I've to specify? Do I've to specify like <code>Prom...
0debug
Start app as root with pm2 : <p>I have a daemon that must be run as root on startup.</p> <p>I use pm2 to start other apps but can not figure out if it can start an app as root. Can it be done?</p> <p>If not, what are my options?</p>
0debug
DIRAC_PIXOP(put, ff_put, mmx) DIRAC_PIXOP(avg, ff_avg, mmx) DIRAC_PIXOP(avg, ff_avg, mmxext) void ff_put_dirac_pixels16_sse2(uint8_t *dst, const uint8_t *src[5], int stride, int h) { if (h&3) ff_put_dirac_pixels16_c(dst, src, stride, h); else ff_put_pixels16_sse2(dst, src[0], stride, h); ...
1threat
Replace n/a with NA for ALL columns postgreSQL : how do I update *ALL* columns of a table in psql? rather than doing them one column at a time. Table1 Field1 | Field 2 | Field 3 123 | 987 | n/a 456 | n/a | 101 n/a | abcdef | n/a So the output should be: Table1 ...
0debug
dplyr 0.7.5 change in select() behavior : <p>select() in dplyr 0.7.5 returns a different result from dplyr 0.7.4 when using a named vector to specify columns. </p> <pre><code>library(dplyr) df &lt;- data.frame(a = 1:5, b = 6:10, c = 11:15) print(df) #...
0debug
Xcode - There are no dSYMs available for download : <p>I want to extract the dSYM file from but when I click on <em>"Download dSYMs..."</em> in the <em>Organizer</em> I get the follow message: "There are no dSYMs available for download.". </p> <p>I'm using Xcode 7.2 with a workspace generated by Cocoapods 0.39. </p> ...
0debug
warning: dereferencing 'void *' pointer error : With a C program written for solving a heat problem I am getting following error: [enter image description here][1] The program was meant for this: [enter image description here][2] Here is my code: <!-- begin snippet: js hide: false console: true babel: fals...
0debug
static int get_delayed_pic(DiracContext *s, AVFrame *picture, int *got_frame) { DiracFrame *out = s->delay_frames[0]; int i, out_idx = 0; int ret; for (i = 1; s->delay_frames[i]; i++) if (s->delay_frames[i]->avframe->display_picture_number < out->avframe->display_picture_number) {...
1threat
Convert JsonArray to Model(using wrapper class)(Json deserialization) : I want to deserialize a jsonarray into list of object. please advice. json string is here: [{ id: 1, customer: "Joe Black", items: { id: 1, description: "One", unit_price: 1.00, quantity: 1 } },{ id: 2, customer: "Jo...
0debug
count the ocurrence of a number and put the counters in a list (scheme) : This is an example of what the program have to do; (count ‘(1 2 3 4 5 6)) => (1 1 1 1 1 1) (count ‘(6 8 3 6 6 1)) => (1 0 1 0 0 3 0 1)
0debug
How does the code change if i change f from int to double? : int f=1; //this is to store factorial value double s=1; for(int i=1;i<=10;i++){ f=f*i; //Even though i is int,changing f from int value to double value brigs a difference s=s+(double)(1/f); } System.out.printl...
0debug
static int file_read_dir(URLContext *h, AVIODirEntry **next) { #if HAVE_DIRENT_H FileContext *c = h->priv_data; struct dirent *dir; char *fullpath = NULL; *next = ff_alloc_dir_entry(); if (!*next) return AVERROR(ENOMEM); do { errno = 0; dir = readdir(c->dir);...
1threat
Condensing multiple System.out.prinln() into one : <p>I have </p> <pre><code> for( int x = 0; x &lt; rp.studentRecords.length; x++){ System.out.println("Student name: " +rp.studentRecords[x].getName()); System.out.println("Major: "+ rp.studentRecords[x].getClass().getName()); System.out....
0debug
static void apic_startup(APICState *s, int vector_num) { CPUState *env = s->cpu_env; if (!env->halted) return; env->eip = 0; cpu_x86_load_seg_cache(env, R_CS, vector_num << 8, vector_num << 12, 0xffff, 0); env->halted = 0; }
1threat
need some guidance or help regarding this program i wrote to approximate the value of pi : the code works but the result keeps getting bigger whenever i put 2 or a higher value in it #include <iostream> using namespace std; int main() { double pi = 0; long i; long n; ...
0debug
In python How can i return all tuples in liste? : so this is my list: list_tuple = [(x1,x2,x3)(x4,x5,x6)(x7,x8,x9)] and i'm want to return only all tuple so How can i retun all tuples this is what i try: for i in list_tuple: print(i) this is what he did x1,x2,x3 the result expected is...
0debug
What is Difference between Static Variable and Static method and Static Class? : <p>I was in interview, the interviewer asked me this question, I couldn't satisfy him with proper answers he was looking for, Need help, Thanks </p>
0debug
def concatenate_elements(test_tup): res = tuple(i + j for i, j in zip(test_tup, test_tup[1:])) return (res)
0debug
static int sclp_parse(const char *devname) { QemuOptsList *device = qemu_find_opts("device"); static int index = 0; char label[32]; QemuOpts *dev_opts; if (strcmp(devname, "none") == 0) { return 0; } if (index == MAX_SCLP_CONSOLES) { fprintf(stderr, "qemu: too man...
1threat
document.write('<script src="evil.js"></script>');
1threat
static void blkreplay_bh_cb(void *opaque) { Request *req = opaque; qemu_coroutine_enter(req->co, NULL); qemu_bh_delete(req->bh); g_free(req); }
1threat
Android with NavigationBar : I'm working with navigationBar and I want to click the button on activity and navigationBar will show, but I don't know how to do Normally, when we scroll from edge left to center,right,.. the navigation will be showed so I want to click button and navigationbar will show such that
0debug
How to Merging two arrays in c using pointers : I Know How to Insert one array into Pointer array. But I`m not able to merging arrays to a pointer array... Please any one help me to create a pointer array by merging two arrays.... #include<stdio.h> int main(){ int n,m,i,A[100],B[100], *C; printf("Enter s...
0debug
static av_cold int imc_decode_init(AVCodecContext *avctx) { int i, j, ret; IMCContext *q = avctx->priv_data; double r1, r2; if ((avctx->codec_id == AV_CODEC_ID_IMC && avctx->channels != 1) || (avctx->codec_id == AV_CODEC_ID_IAC && avctx->channels > 2)) { av_log_ask_for_sample(av...
1threat
Incomplete type is not allowed(here is my code). Please help me : #include<iostream> #include<string> using namespace std; class GradeBook;//GradeBook class definition { public: //constructor initializes courseName GradeBook(string name) { setCourseName(name); } ...
0debug
Serverless API gateway transforming request into base64 : <p>I have a serverless app which uploads files to s3 (via POST request) and serves them (via GET request)</p> <p>I am using <code>serverless-apigw-binary</code> and <code>serverless-apigwy-binary</code> plugins to allow me to return binary data in the form of a...
0debug
Please check a newbie's script : <p>Please check my script below.</p> <p>Im trying to add some color to some of the text... this is what i have managed to work out thus far.. is it correct?</p> <pre><code>&lt;center&gt; You will be redirected to the number one proven training system in &lt;span style="color:blue;font...
0debug
Angular2 *ngFor animation of pushed away elements : <p>I've seen many animation tutorials for the entering or leaving elements ("New element" on the image below), but the rest of elements (Element 1 and 2), that are pushed apart usually just teleport to their new location.</p> <p><a href="https://i.stack.imgur.com/4C4...
0debug
static void float_to_int16_3dnow(int16_t *dst, const float *src, int len){ int i; for(i=0; i<len; i+=4) { asm volatile( "pf2id %1, %%mm0 \n\t" "pf2id %2, %%mm1 \n\t" "packssdw %%mm1, %%mm0 \n\t" "movq %%mm0, %0 \n\t" ...
1threat
int fw_cfg_add_i16(FWCfgState *s, uint16_t key, uint16_t value) { uint16_t *copy; copy = g_malloc(sizeof(value)); *copy = cpu_to_le16(value); return fw_cfg_add_bytes(s, key, (uint8_t *)copy, sizeof(value)); }
1threat
Python len() method not returning value : <p>I have started learning python programming language and learning string in python. </p> <p>i am using following code to find the length of string.</p> <pre><code>a = "Hello, World!" print(a.len()) </code></pre> <p>but code is not working. I know i am using method len afte...
0debug
static int kvm_has_msr_star(CPUState *env) { static int has_msr_star; int ret; if (has_msr_star == 0) { struct kvm_msr_list msr_list, *kvm_msr_list; has_msr_star = -1; msr_list.nmsrs = 0; ret = kvm_ioctl(env->kvm_state, KVM_GET_MSR_INDE...
1threat
unsigned long av_adler32_update(unsigned long adler, const uint8_t * buf, unsigned int len) { unsigned long s1 = adler & 0xffff; unsigned long s2 = adler >> 16; while (len > 0) { #if CONFIG_SMALL while (len > 4 && s2 < (1U << 31)) { DO4(buf); ...
1threat
static int rate_control(AVCodecContext *avctx, void *arg) { SliceArgs *slice_dat = arg; VC2EncContext *s = slice_dat->ctx; const int sx = slice_dat->x; const int sy = slice_dat->y; int quant_buf[2], bits_buf[2], quant = s->q_start, range = s->q_start/3; const int64_t top = slice_dat->bits...
1threat
static int latm_decode_audio_specific_config(struct LATMContext *latmctx, GetBitContext *gb, int asclen) { AACContext *ac = &latmctx->aac_ctx; AVCodecContext *avctx = ac->avctx; MPEG4AudioConfig m4ac = {0}; int config_start_bit = get_bits_count(...
1threat
How add new fields to the existing type in another package : I have a AUTH package and there i have USER STRUCT and i want to extend the user struct without modifying the package code. package auth type User struct { gorm.Model UserEmail string UserPass string Test string } N...
0debug
Set localstorage items before page loads in puppeteer? : <p>We have some routing logic that kicks you to the homepage if you dont have a JWT_TOKEN set... I want to set this before the page loads/before the js is invoked.</p> <p>how do i do this ?</p>
0debug
JavaScript bubble sort modification (Sorting doesn't happen in some cases.) : I need loop "i" stopped immediately, when sorting will be done. It doesn't work with all possible values of the array. Sorting doesn't happen in some cases. [pen link][1] var arr = [11, 12, 0, 1, 2, 4, 3, 5, 6, 7, 8, 9, 10, 13]; ...
0debug
How to get 'android.enableR8=true' to pass without warning? : <p>I added the new setting:</p> <pre> android.enableR8 = true </pre> <p>to my Gradle file but and I got the following warning from the compiler </p> <blockquote> <p>WARNING: The option setting 'android.enableR8=true' is experimental and unsupported.</p>...
0debug
static void reanalyze(MpegTSContext *ts) { AVIOContext *pb = ts->stream->pb; int64_t pos = avio_tell(pb); if(pos < 0) return; pos += ts->raw_packet_size - ts->pos47_full; if (pos == TS_PACKET_SIZE) { ts->size_stat[0] ++; } else if (pos == TS_DVHS_PACKET_SIZE) { t...
1threat
AngularJS 2 with SQL : <p>Is it possible to make the database on SQL for our Angular 2 app ?</p>
0debug
How to detect if another app is running as slide over in iOS 11? : <p>The multitasking features got updates in iOS 11, one of those was <a href="https://support.apple.com/en-us/HT207582" rel="noreferrer">slide over</a> which is demonstrated in the gif below.</p> <p><a href="https://i.stack.imgur.com/479Hs.gif" rel="no...
0debug
PHP SQL query wont work : I want to get the last time my database was updated, so i use this query in my PHP code: $query = mysqli_query($mysqli, "SELECT UPDATE_TIME FROM information_schema.tables WHERE TABLE_SCHEMA = 'map_db' AND TABLE_NAME = ".$objects_tab.""); $lastUpdateT...
0debug
int ff_slice_thread_init(AVCodecContext *avctx) { int i; ThreadContext *c; int thread_count = avctx->thread_count; #if HAVE_W32THREADS w32thread_init(); #endif if (!thread_count) { int nb_cpus = av_cpu_count(); av_log(avctx, AV_LOG_DEBUG, "detected %d logical cores\n", ...
1threat
C++ Simple , or not? : I have problem with list with two way pointers, i have structure that i need to use: struct Uczestnik{ enum Plec{K,M,W}; Uczestnik(Plec p) : plec(p) {} Plec plec; }; And i need to make class List that works like list with two way pointers, and elem...
0debug
Multiple VPC and Subnet with same CIDR blocks : <p>I realized that I can create multiple AWS VPCs and Subnets with Same CIDR blocks, I am not sure what is the philosophy behind that and how it is possible.</p>
0debug
Pandas Get a List Of All Data Frames loaded into memory : <p>I am using pandas to read several csv files into memory for processing and at some point would like to list all the data frames I have loaded into memory. Is there a simple way to do that? (I am thinking something like %ls but only for the data frames that I ...
0debug
static uint64_t msix_table_mmio_read(void *opaque, target_phys_addr_t addr, unsigned size) { PCIDevice *dev = opaque; return pci_get_long(dev->msix_table + addr); }
1threat
How can I write an optimal Swap ( T a, T b ) algorithm in C#? : My mission for this lonely Friday night is to write a C# swap algorithm public void Swap<T> ( ref T a, ref T b ) { // ... } that works on any class or data type `T` and is as efficient as possibe. Help critique the method I'...
0debug
static bool invalid_qmp_mode(const Monitor *mon, const char *cmd, Error **errp) { bool is_cap = g_str_equal(cmd, "qmp_capabilities"); if (is_cap && mon->qmp.in_command_mode) { error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND, "Capabilities negotiation ...
1threat
Can a Perl program know the line number where __DATA__ begins? : <p>Is there a way to get the line number (and maybe filename) where a <strong>__DATA__</strong> token was coded? Or some other way to know the actual line number in the original source file where a line of data read from the <em>DATA</em> filehandle came...
0debug
Is there something similar to NEGATIVE_INFINITY in php? : <p>I love the negative infinity value in javascript, I think it's useful and clean in many case to use it but couldn't find something similar in PHP, does it exists?</p>
0debug
My code work when i run on my lap but when i upload it to hackerrank i got error at atoi : i am doing a problem from hackerrank here is the problem: https://www.hackerrank.com/challenges/time-conversion/problem __tl;lr__ we take time like 08:00:00PM and convert it to 20:00:00 the str_split function i take from th...
0debug
static int irq_cpu_hotplug_init(SCLPEvent *event) { irq_cpu_hotplug = *qemu_allocate_irqs(trigger_signal, event, 1); return 0; }
1threat
static int kvm_get_dirty_pages_log_range(MemoryRegionSection *section, unsigned long *bitmap) { unsigned int i, j; unsigned long page_number, addr, addr1, c; unsigned int len = ((section->size / TARGET_PAGE_SIZE) + HOST_LONG_BITS - 1) / HOST_LONG_BITS; ...
1threat
TIC TCP Conn Error on iOS 10 logs : <p>Is anyone getting the following CFNetwork notices in their iOS 10 logs?</p> <pre><code>(CFNetwork)[1142] &lt;Notice&gt;: TIC TCP Conn Event [28:0x1741845e0]: 1 Err(0) (CFNetwork)[1142] &lt;Notice&gt;: TIC TCP Conn Connected [28:0x1741845e0]: Err(0) (CFNetwork)[1142] &lt;Notice&gt...
0debug
static int unix_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size) { QEMUFileSocket *s = opaque; ssize_t len; for (;;) { len = read(s->fd, buf, size); if (len != -1) { break; } if (errno == EAGAIN) { yield_until_fd_readable(s->fd...
1threat
Spring beans not found in library jar : <p>I created a jar with some spring beans and included that jar in my other java project.</p> <p>Now, if I run the parent project using spring boot, then the project can find the beans of the dependency jar but if I create a war of the parent project and deploy it on tomcat, the...
0debug
How can I check if a username already exists in a MySQLi row? : <p>This is my database <a href="https://i.stack.imgur.com/D1rF8.png" rel="nofollow noreferrer">Database img</a></p> <p>Imagine the blurred text is simply "test". </p> <p>I have a basic login/signup form which inserts their data into a database. I want to...
0debug
static inline void h264_loop_filter_luma_intra_c(uint8_t *pix, int xstride, int ystride, int alpha, int beta) { int d; for( d = 0; d < 16; d++ ) { const int p2 = pix[-3*xstride]; const int p1 = pix[-2*xstride]; const int p0 = pix[-1*xstride]; const int q0 = pix[ 0*xstrid...
1threat
How to campare two object properties? : public class CellAtt { private String brand; private long serial; private double price; public CellAtt(String brand, long serial, double price) { this.brand = brand; this.serial = serial; this.price = price; } pub...
0debug
static av_cold int xwd_encode_init(AVCodecContext *avctx) { avctx->coded_frame = av_frame_alloc(); if (!avctx->coded_frame) return AVERROR(ENOMEM); return 0; }
1threat
static int http_server(void) { int server_fd, ret, rtsp_server_fd, delay, delay1; struct pollfd poll_table[HTTP_MAX_CONNECTIONS + 2], *poll_entry; HTTPContext *c, *c_next; server_fd = socket_open_listen(&my_http_addr); if (server_fd < 0) return -1; rtsp_server_fd = socket_ope...
1threat
for loop skipping items C# : I have the below for loop int listCount = _itemCollection.Count; foreach (int i=0;i<listCount;i++) { var item = _itemCollection[i]; // just to prevent changes in all places inside the for loop ...
0debug
How to use Dependency Injection in AWS Lambda C# implementation : <p>I have created Lambda functions using AWS.Net SDK, .net core version 1.0. I want to implement dependency injection. Since lambda functions triggered and run independently in AWS environment, there is no such class like <code>Startup</code> present. Ho...
0debug
Is it possible in Java Stream sorting while reduce? : I need to sort my stream after every reduce operation. Is it possible to do something like this with using Java Stream or should I just use loop for that? [example][1] [1]: https://i.stack.imgur.com/FIBrM.png I know, that reduce does not work like this, but...
0debug
static void spapr_core_plug(HotplugHandler *hotplug_dev, DeviceState *dev, Error **errp) { sPAPRMachineState *spapr = SPAPR_MACHINE(OBJECT(hotplug_dev)); MachineClass *mc = MACHINE_GET_CLASS(spapr); sPAPRMachineClass *smc = SPAPR_MACHINE_CLASS(mc); sPAPRCPUCore *core = ...
1threat
static int jpeg2000_decode_tile(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile, AVFrame *picture) { int compno, reslevelno, bandno; int x, y; uint8_t *line; Jpeg2000T1Context t1; for (compno = 0; compno < s->ncomponents; compno++) { Jpeg2000Co...
1threat
What is difference between reactstrap and react-bootstrap? : <p>I found two different bootstraps for reactjs </p> <ol> <li>npm install --save reactstrap react react-dom</li> <li>npm install react-bootstrap bootstrap</li> </ol> <p>What is the basic and main difference between both?</p>
0debug
Mac terminal doesn't recognize ll command, only works with ls. How to fix it? Thanks : <p>currently I am using my mac terminal for programming. I just want to display the files on terminal but ll does not work. It complained like this $ -bash:ll:command not found. Anybody could help me out there? Thanks..</p>
0debug
static void trigger_console_data(void *opaque, int n, int level) { sclp_service_interrupt(0); }
1threat
static int avui_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet) { uint8_t *dst, *src = pic->data[0]; int i, j, skip, ret, size, interlaced; interlaced = avctx->field_order > AV_FIELD_PROGRESSIVE; if (avctx->height == 486) { ...
1threat
java jpa This query return error : This query return below error. Any one has any idea ??? @SqlQuery("SELECT * FROM employee WHERE id = (:id) ") Employee getByid(@Bind("id") Integer id); 2018-08-29 11:12:19.532 ERROR 9736 --- [nio-8080-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for se...
0debug
How to unsubscribe Observer? : <p>There is observer:</p> <pre><code>export class ListenerService { private action: Subject&lt;IActionData&gt; = new Subject(); apply(data?: IActionData) { this.action.next(data); } changes(): Observable&lt;any&gt; { return this.action.asObservable(); ...
0debug
static void usb_serial_read(void *opaque, const uint8_t *buf, int size) { USBSerialState *s = opaque; int first_size = RECV_BUF - s->recv_ptr; if (first_size > size) first_size = size; memcpy(s->recv_buf + s->recv_ptr + s->recv_used, buf, first_size); if (size > first_size) m...
1threat
CSS selector :last-of-type not working if another div is included : <p>This is my HTML</p> <pre><code>&lt;div id="funnel"&gt; &lt;div class="funnel_column_cont"&gt;This is a first div.&lt;/div&gt; &lt;div class="funnel_column_cont"&gt;This is a second div.&lt;/div&gt; &lt;div class="funnel_column_cont"&gt;...
0debug
What is does (0 & 1) do in JavaScript? : <p>I am looking through the source of a library I'm working with, and I found something I haven't seen before.</p> <pre><code>$(item).each(function(child) { oddEven = (i &amp; 1); targetNode.append(jasper_build_product(this,oddEven)); i++; }); </code...
0debug
int qcow2_snapshot_goto(BlockDriverState *bs, const char *snapshot_id) { BDRVQcowState *s = bs->opaque; QCowSnapshot *sn; int i, snapshot_index, l1_size2; snapshot_index = find_snapshot_by_id_or_name(bs, snapshot_id); if (snapshot_index < 0) return -ENOENT; sn = &s->snapshots[s...
1threat
Swift Class Its Empty veriable : [It's empty][1] How can I keep the name in class? I will assign a variable value to the function I want to use and then I will use that variable in the load screen import UIKit class userInfo{ var name : String ...
0debug
void mtree_info(fprintf_function mon_printf, void *f) { MemoryRegionListHead ml_head; MemoryRegionList *ml, *ml2; QTAILQ_INIT(&ml_head); mon_printf(f, "memory\n"); mtree_print_mr(mon_printf, f, address_space_memory.root, 0, 0, &ml_head); QTAILQ_FOREACH(ml, &ml_head, queue) { ...
1threat
How to create arraylist in kotlin from arrayObject : I try to make Arraylist of my obbjects, but i want into ArrayList of below code . Here my code is :- var i = 1.0 var list: ArrayList<Any> = ArrayList() while (i <= n) { intPerMonth = P * R P = P - (e - intP...
0debug
static int usb_audio_handle_data(USBDevice *dev, USBPacket *p) { USBAudioState *s = (USBAudioState *) dev; int ret = 0; switch (p->pid) { case USB_TOKEN_OUT: switch (p->devep) { case 1: ret = usb_audio_handle_dataout(s, p); break; default: ...
1threat
Getting error message "expected an indented block" : <p>I keep on getting the error message "expected an indented block"</p> <pre><code>month = int(input('Please enter a month in numeric form: ')) day = int(input('Please enter a day in numeric form: ')) year = int(input('Please enter a two-digit year in numeric form: ...
0debug
static int hls_delete_old_segments(HLSContext *hls) { HLSSegment *segment, *previous_segment = NULL; float playlist_duration = 0.0f; int ret = 0, path_size, sub_path_size; char *dirname = NULL, *p, *sub_path; char *path = NULL; segment = hls->segments; while (segment) { p...
1threat
static uint32_t virtio_net_get_features(VirtIODevice *vdev) { uint32_t features = (1 << VIRTIO_NET_F_MAC); return features; }
1threat
int pcistb_service_call(S390CPU *cpu, uint8_t r1, uint8_t r3, uint64_t gaddr, uint8_t ar) { CPUS390XState *env = &cpu->env; S390PCIBusDevice *pbdev; MemoryRegion *mr; int i; uint32_t fh; uint8_t pcias; uint8_t len; uint8_t buffer[128]; if (env->ps...
1threat
static void init_proc_970GX (CPUPPCState *env) { gen_spr_ne_601(env); gen_spr_7xx(env); gen_tbl(env); spr_register(env, SPR_HID0, "HID0", SPR_NOACCESS, SPR_NOACCESS, &spr_read_generic, &spr_write_clear, 0x60000000); ...
1threat
void spapr_drc_reset(sPAPRDRConnector *drc) { sPAPRDRConnectorClass *drck = SPAPR_DR_CONNECTOR_GET_CLASS(drc); trace_spapr_drc_reset(spapr_drc_index(drc)); g_free(drc->ccs); drc->ccs = NULL; if (drc->unplug_requested) { spapr_drc_release(drc); } if (drc->de...
1threat
java.lang.IllegalArgumentException: Failed to find configured root that contains /storage/emulated/0/Pictures/ : <p>Looking for some help on an error I am getting while trying to store Pictures taken with the camera for an App I am trying to develop. The error is </p> <p>java.lang.IllegalArgumentException: Failed to f...
0debug
Data Scraping using Python : I developed a script using python to scrape name of phone from this url "https://www.jumia.com.ng/mobile-phones/" Here is my script: from urllib.request import urlopen as uReq from bs4 import BeautifulSoup as soup my_url = 'https://www.jumia.com.ng/mobile-phones/' uClien...
0debug
static int vfio_initfn(PCIDevice *pdev) { VFIODevice *pvdev, *vdev = DO_UPCAST(VFIODevice, pdev, pdev); VFIOGroup *group; char path[PATH_MAX], iommu_group_path[PATH_MAX], *group_name; ssize_t len; struct stat st; int groupid; int ret; snprintf(path, sizeof(path), ...
1threat
Write java to execute curl command line : <p>I want to write java code to implement this curl command:</p> <pre><code> curl --form "file=@7_018011.gif" --form "apikey=helloworld" --form "language=por" https://api.ocr.space/Parse/Image &gt;&gt; m.txt </code></pre> <p>where <b>@7_018011.gif</b> is the name of the i...
0debug
CSS module hover styles when inside another module : <p>In a React/Webpack app with <a href="https://github.com/css-modules/css-modules" rel="noreferrer">CSS modules</a> I have a module <code>.card</code> in its own .scss file and another module named <code>.stat</code> which is a content to be shown in the <code>.card...
0debug
Why is the result of my Program is always underweight in BMI here is my code : Dim Weight, Height, Bmi_value As Integer Weight = TextBox1.Text Height = TextBox2.Text Bmi_value = (Weight / Height ^ 2) TextBox3.Text = Bmi_value Select Case Bmi_value Case 0.0 ...
0debug