problem
stringlengths
26
131k
labels
class label
2 classes
How to fit C# application in every resolution : <p>i want to know how to fit c# application in every Resolution my c# application open in my computer is perfect but when i install this application on my client machine so it's show half application.</p> <p>What I have tried:</p> <pre><code>this.WindowState = FormWindo...
0debug
static void sigp_restart(CPUState *cs, run_on_cpu_data arg) { S390CPU *cpu = S390_CPU(cs); SigpInfo *si = arg.host_ptr; struct kvm_s390_irq irq = { .type = KVM_S390_RESTART, }; switch (s390_cpu_get_state(cpu)) { case CPU_STATE_STOPPED: cpu_synchronize_state(c...
1threat
static void lsi_do_command(LSIState *s) { SCSIDevice *dev; uint8_t buf[16]; uint32_t id; int n; DPRINTF("Send command len=%d\n", s->dbc); if (s->dbc > 16) s->dbc = 16; pci_dma_read(PCI_DEVICE(s), s->dnad, buf, s->dbc); s->sfbr = buf[0]; s->command_complete = 0; ...
1threat
How to do audit on Hyperledger? : How to do audit on Hyperledger? In the link of below: [https://github.com/hyperledger/fabric/blob/ffbf21a5b781b938f4168def6541f6fbae792d31/docs/biz/usecases.md][1] [https://github.com/hyperledger/fabric/blob/cca26e6d9aa9e6fab2b5c17d311709130b52c46e/docs/protocol-spec.md][2] The...
0debug
static int vaapi_encode_mjpeg_init_picture_params(AVCodecContext *avctx, VAAPIEncodePicture *pic) { VAAPIEncodeContext *ctx = avctx->priv_data; VAEncPictureParameterBufferJPEG *vpic = pic->codec_picture_params; VAAPIEncodeMJPEGContext ...
1threat
make navigation transparent when on home page otherwise default : <p>I am creating a navigation in which I try to put two backgrounds 1. Transparent (Only show when a user at homepage) 2. Default Color(When a user visit other pages)</p> <p>I try to solve this using javascript by checking up the address bar URL but the...
0debug
static int tcp_open(URLContext *h, const char *uri, int flags) { struct sockaddr_in dest_addr; char hostname[1024], *q; int port, fd = -1; TCPContext *s; const char *p; fd_set wfds; int fd_max, ret; struct timeval tv; socklen_t optlen; s = av_malloc(sizeof(TCPCon...
1threat
static uint32_t hpet_time_after(uint64_t a, uint64_t b) { return ((int32_t)(b) - (int32_t)(a) < 0); }
1threat
Cluster and Fork mode difference in PM2 : <p>I've searched a lot to figure out this question, but I didn't get clear explanation. Is there only one difference thing that clustered app can be scaled out and forked app cannot be?</p> <p>PM2's public site explains Cluster mode can do <a href="http://pm2.keymetrics.io/doc...
0debug
static void nand_command(NANDFlashState *s) { unsigned int offset; switch (s->cmd) { case NAND_CMD_READ0: s->iolen = 0; break; case NAND_CMD_READID: s->ioaddr = s->io; s->iolen = 0; nand_pushio_byte(s, s->manf_id); nand_pushio_byte(s, s->chip_...
1threat
Checking number of parameters passed in a function : I'm writing a bash function that takes a directory D as a parameter. If given no parameter, D should be ".", if 2 or more parameters are passed in, the function should output an error and exit the program. But my function is not working. Please help!! ```` di...
0debug
How to merge two array value matching by key value using Node.js/Javascript : I need one help. I need to match two array and merge by matching key value using Javascript/Node.js. I am explaining my code below. var userData=[{'email':'a@gmail.com','name':'Raj'},{'email':'b@gmail.com','name':'Rahul'}]; var us...
0debug
int ff_af_queue_add(AudioFrameQueue *afq, const AVFrame *f) { AudioFrame *new_frame; AudioFrame *queue_end = afq->frame_queue; while (queue_end && queue_end->next) queue_end = queue_end->next; if (!(new_frame = av_malloc(sizeof(*new_frame)))) return AVERROR(ENOMEM)...
1threat
Schedule a .Net Core console application on windows using Task Scheduler : <p>Is it possible to schedule a .net core console application to run every day at a specific time using the Task Scheduler?</p>
0debug
How can i display time and date in notification? : How can i send a notification for user with the time and date? After user have done the appointment, it will send a notification for user to let user know the date and time.Anyone can help me? [This is my data of date and time store in firebase][1] [1]: https:/...
0debug
MigrationState *unix_start_outgoing_migration(Monitor *mon, const char *path, int64_t bandwidth_limit, int detach, int blk, int inc) { FdMigrationState *s; struct sockaddr_un addr; int ret; addr.sun_fam...
1threat
static av_cold int vp8_free(AVCodecContext *avctx) { VP8Context *ctx = avctx->priv_data; vpx_codec_destroy(&ctx->encoder); av_freep(&ctx->twopass_stats.buf); av_freep(&avctx->coded_frame); av_freep(&avctx->stats_out); free_frame_list(ctx->coded_frame_list); return 0; }
1threat
VBA How to paste data a certain number of times : I have 2 lines: L39 = DR L40 = CR And I want to copy those two lines down a certain number of times. I have already calculated that using variable Template_row. So if Template_row = 128, I would want those 128 rows to be filled down with DR & CR.
0debug
When I use Deployment in Kubernetes, what's the differences between apps/v1beta1 and extensions/v1beta1? : <p>I use the <a href="https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master/docs/tutorials/stateless-application/deployment.yaml" rel="noreferrer">yaml file</a>, which is in the Kubernetes offic...
0debug
How to create a subfolders for each items when having a database : I was a hard time giving this a title as I am not sure what this is called. Anyhow, my question is how can do folders for each item when a have a database. Take this site as an example, whenever you click on a question it takes you to a new page with t...
0debug
query = 'SELECT * FROM customers WHERE email = ' + email_input
1threat
Hi! I wonder why we have to use setter and getter methods to define sth? : ***Using Setter and Getter** class sum { int a; int b; int c; public void setSum(int a, int b) { c = a + b; } public int getSum() { return c; } public static voi...
0debug
i am not able to figure out What is printed to the console : what will be the output of the following code ?`enter code here` String[] letters = {"laid","leave","lean","ease","east","legals","revo","fights","limit","live "}; int result = Stream.of(letters) .filter(w -> isVowel(w.charAt(3)...
0debug
GoogleTrans API Error - Expecting value: line 1 column 1 (char 0) : <p>I am having this error when translating thousands of text data in an iteration:</p> <pre><code>Expecting value: line 1 column 1 (char 0) </code></pre> <p>My code for translating big amounts of text:</p> <pre><code>translatedList = [] for index, r...
0debug
Why is "bdefh" the output of a java recursion code in which the call to the method preceds and follows the System.out.print? : Is anyone able to figure out how this recursion code works and why it outputs what it does? maybe you could include the steps it goes through to get to what it outputs? Thank you so much! The c...
0debug
int avcodec_check_dimensions(void *av_log_ctx, unsigned int w, unsigned int h){ if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/4) return 0; av_log(av_log_ctx, AV_LOG_ERROR, "picture size invalid (%ux%u)\n", w, h); return -1; }
1threat
static int get_block_status(BlockDriverState *bs, int64_t offset, int64_t bytes, MapEntry *e) { int64_t ret; int depth; BlockDriverState *file; bool has_offset; int nb_sectors = bytes >> BDRV_SECTOR_BITS; assert(bytes < INT_MAX); depth = 0...
1threat
springboot embedded tomcat and tomcat-embed-jasper : <p>I sometimes see these following declaration in pom.xml...</p> <pre><code> &lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt; &lt;artifactId&gt;spring-boot-starter-web&lt;/artifactId&gt; &lt;/d...
0debug
How to return parts of a string with regular expression : <p>I have multiple strings in the format:</p> <pre><code>"s mus_musculus.1 3003214 6673 + 195471971 ctctcctatggcggggaaggtgcctggatgtctaaagc-----------------ctgaa-atggggatctatcccagaagctgtgtagcttctgcctgtcccagaagctgtgttgtttct" </code></pre> <p>How ...
0debug
Creating a list of lists into a dictionary : <p>I'm trying to find a code that transforms a list of lists into a dictionary. Lets say I have a list that is </p> <pre><code>list_one = [['id1', 'id2', id3', 'id4', 'id5'], ['1', 'Cat', '400', 'Fur', '50'], ['2', 'Dog', '500', 'Smelly', '60']] </co...
0debug
Profiling iOS Today Widget (Instruments) : <p>is that a way to analyze other targets in Instruments? I am trying to profile my widget target there but Instruments keep displaying a dialog saying "please take appropriate action to initiate the launch of <code>com.appId.widget</code>".</p> <p>Any ideas?</p>
0debug
def make_flip(ch): return '1' if (ch == '0') else '0' def get_flip_with_starting_charcter(str, expected): flip_count = 0 for i in range(len( str)): if (str[i] != expected): flip_count += 1 expected = make_flip(expected) return flip_count def min_flip_to_make_string_alternate(str): return mi...
0debug
void HELPER(set_r13_banked)(CPUState *env, uint32_t mode, uint32_t val) { env->banked_r13[bank_number(mode)] = val; }
1threat
Has angular been replaced with typescript? : <p>So I went through a good tutorial of Angular 1.x. I visited angular.io to have a look at Angular 2. All I can see is Typescript, Javascript, and Dart references. Is what I learnt about Angular pointless now and should I start learning Typescript?</p> <p>Thanks</p>
0debug
Add attributes to implode : i need add to $attr['ids'] array with $gallery_setting. function the_featured_image_gallery( $atts = array() ) { $gallery_setting = get_theme_mod( 'featured_image_gallery' ); if ( is_array( $gallery_setting ) && ! empty( $gallery_setting ) ) { ...
0debug
How to get data and time from the date object in javascript : <p>How can we get date and time from the date object. So if we have a date object such as Date 2099-09-06T06:30:00.000Z , how can we get date and time as different values from it. I am using ExtJs, so if we can do in Extjs too would be great.</p>
0debug
Copy complete virtualenv to another pc : <p>I have a <code>virtualenv</code> located at <code>/home/user/virtualenvs/Environment</code>. Now I need this environment at another PC. So I installed <code>virtualenv-clone</code> and used it to clone <code>/Environment</code>. Then I copied it to the other PC via USB. I can...
0debug
Date.now().toISOString() throwing error "not a function" : <p>I am running Node v6.4.0 on Windows 10. In one of my Javascript files I am trying to get an ISO date string from the Date object:</p> <pre><code>let timestamp = Date.now().toISOString(); </code></pre> <p>This throws: Date.now(...).toISOString is not a fun...
0debug
Not generation of core : <pre><code>#include&lt;stdio.h&gt; #include &lt;stdlib.h&gt; int *ip_range ; int main() { ip_range = (int *) malloc(1); ip_range[0]=2; ip_range[10]=2; ip_range[20]=2; ip_range[33787]=12444; printf("%d\n", ip_range[33787]); } </code></pre> <p>I have malloc just 1 block then why i...
0debug
static void gen_sse(CPUX86State *env, DisasContext *s, int b, target_ulong pc_start, int rex_r) { int b1, op1_offset, op2_offset, is_xmm, val; int modrm, mod, rm, reg; SSEFunc_0_epp sse_fn_epp; SSEFunc_0_eppi sse_fn_eppi; SSEFunc_0_ppi sse_fn_ppi; SSEFunc_0_eppt sse_f...
1threat
static int decode_block(AVCodecContext *avctx, void *tdata, int jobnr, int threadnr) { EXRContext *s = avctx->priv_data; AVFrame *const p = s->picture; EXRThreadData *td = &s->thread_data[threadnr]; const uint8_t *channel_buffer[4] = { 0 }; const uint8_t *buf = s->buf;...
1threat
Cocoapods error: linker command failed with exit code 1 (use -v to see invocation) : <p>First time using cocoa pods (latest version) for dependencies in the latest Xcode 7.2.1 with Swift 2.1. I initialize my project folder and then edit the podfile and add my dependencies. When I run <code>pod install</code> it runs w...
0debug
void acpi_pcihp_device_plug_cb(HotplugHandler *hotplug_dev, AcpiPciHpState *s, DeviceState *dev, Error **errp) { PCIDevice *pdev = PCI_DEVICE(dev); int slot = PCI_SLOT(pdev->devfn); int bsel = acpi_pcihp_get_bsel(pdev->bus); if (bsel < 0) { error_setg(errp, ...
1threat
static void tgen64_ori(TCGContext *s, TCGReg dest, tcg_target_ulong val) { static const S390Opcode oi_insns[4] = { RI_OILL, RI_OILH, RI_OIHL, RI_OIHH }; static const S390Opcode nif_insns[2] = { RIL_OILF, RIL_OIHF }; int i; if (val == 0) { return; ...
1threat
How do I separate out a sub-series in R? : I've got a csv file: id,device_id,type,value,timestamp 1432,4,temperature,21,2015-06-01T00:00:00Z 1433,4,motion,0,2015-06-01T00:00:15Z 1434,4,power,0,2015-06-01T00:00:30Z 1435,4,battery,4.16,2015-06-01T00:00:46Z 1448,4,temperature,21,2015-06-01T...
0debug
sql - how to make sure one admin account in database will not get deleted : I have tblUserAccounts with columns Username, Password, and UserLevel. It currently have only one row with Admin UserLevel. And in my C# program, only admin accounts can update / delete accounts. How can I prevent someone to delete all rows fro...
0debug
Change platform on Elastic Beanstalk from PHP to Node.js : <p>I'm trying to change the platform on an existing Elastic Beanstalk instance from PHP 7 to Node.js. However, via the AWS Dashboard, I can only change/upgrade the version of PHP. </p> <p>Is it currently possible to make this change through the dashboard or co...
0debug
static void ne2000_write(void *opaque, target_phys_addr_t addr, uint64_t data, unsigned size) { NE2000State *s = opaque; if (addr < 0x10 && size == 1) { ne2000_ioport_write(s, addr, data); } else if (addr == 0x10) { if (size <= 2) { ne2000_asic_...
1threat
hello guys look my app i am facing weird & unexpected issue in android app : Hello guys my app is ready to install But problem faced when i install & debug app in device it's show 2 apps install in device (one open with Splashscreen & another open without Splashscreen ) plz find my error. here is manifest file bel...
0debug
def sum_list(lst1,lst2): res_list = [lst1[i] + lst2[i] for i in range(len(lst1))] return res_list
0debug
how can I make BottomNavigationBar stick on top of keyboard flutter : <p>I am trying to make a simple chat app, so I created a scaffold and my body, will be the messages and my <code>bottomNavigationBar</code> would be my typing field and sending icon. </p> <p>I added a text field but when typing the navigation bar is...
0debug
automatic login from email link : <p>I'm trying to create a link in (PHP), when clicked user automatically login in the website passing the authentication. Example: like Facebook is sending the link to verified your account after clicking browser open the Facebook and the user is login</p>
0debug
def lcopy(xs): return xs[:]
0debug
static void vfio_listener_region_add(MemoryListener *listener, MemoryRegionSection *section) { VFIOContainer *container = container_of(listener, VFIOContainer, listener); hwaddr iova, end; Int128 llend, llsize; void *vaddr; int ret; VFIOHostDMAWindow ...
1threat
How to separate from 1 column to multiple column MS SQL SERVER : i have table need to separate the data to multiple column. "Site Name","PJ.143 USJ 1| 2A (MP)","PMAC ID:","0067","Channel No:","01" How to separate from 1 column to multiple column MS SQL SERVER Thanks.
0debug
progblem with triggers in pl/sql : SQL> get f:/sqlprog/trigger_3; 1 create or replace trigger t2 before insert or update on programmer for each row 2 declare 3 cursor c1 is select prof1, prof2 from programmer; 4 beign 5 for r1 in c1 loop 6 if r1.pname...
0debug
Dynamic char array from class dont printing the proper result : <p>i am making a project in which user will add the info of car and one function will show all the available cars.But the i cannot be able to copy names of car from one array to another here is the code.</p> <pre><code>#include &lt;fstream&gt; #include &l...
0debug
Schema.org in JSON LD format recognized by Google, but Facebook pixel helper does not detect it : <p>I have added schema.org tags in <code>JSON LD</code> format using <code>&lt;script&gt;</code>, when I test my page using <a href="https://search.google.com/structured-data/testing-tool/u/0/" rel="noreferrer">Google stru...
0debug
Is it possible to return only a part of an object? : <p>I have a class with 10 variables, for example. I create an instance of it and I return it, and, obviously, it returns the 10 variables.</p> <p>What I'd like to know is if is it possible to return an object made of (for example) the 5 first variables.</p>
0debug
void vnc_display_open(const char *id, Error **errp) { VncDisplay *vs = vnc_display_find(id); QemuOpts *opts = qemu_opts_find(&qemu_vnc_opts, id); QemuOpts *sopts, *wsopts; const char *share, *device_id; QemuConsole *con; bool password = false; bool reverse = false; const char *v...
1threat
Fatal error: use of unimplemented initializer in custom navigationcontroller : <p>I'm creating a custom navigation controller. I have something like this:</p> <pre><code>public class CustomNavigationController: UINavigationController { // MARK: - Life Cycle override init(rootViewController: UIViewController)...
0debug
static void neon_store_scratch(int scratch, TCGv var) { tcg_gen_st_i32(var, cpu_env, offsetof(CPUARMState, vfp.scratch[scratch])); dead_tmp(var); }
1threat
A field of a struct which consists of 3 items. How can this compile? : <p>I've seen code like this:</p> <pre><code>type Product struct { Name string `db:"product_name"` Id int `db:"id"` } type Stocks { Name string `db:"stock_name"` Price float `db...
0debug
static void update_odml_entry(AVFormatContext *s, int stream_index, int64_t ix) { AVIOContext *pb = s->pb; AVIContext *avi = s->priv_data; AVIStream *avist = s->streams[stream_index]->priv_data; int64_t pos; int au_byterate, au_ssize, au_scale; avio_flush(pb); pos = avio_tell(pb); ...
1threat
Environment variable set in batch file cannot be accessed in the C code compiled by the file : <p>I'm setting a var using <code>set TEST_VAR=5</code> and then I'm compiling a C code. Error found during compilation is TEST_VAR is an undeclared variable.</p>
0debug
Passing data with unwind segue : <p>I created two view controllers. I created a segue from the first to the second to pass data. Now I want to pass data from the second view controller to the first one. I went through many similar questions and I'm not able to implement those as I lack the knowledge on how unwinding wo...
0debug
How can you get python to detect strings from integers : <p>In my program I need a hand in trying to get python to say that a input is invalid, the code asks for numbers, if you input a letter I would like it to say its invalid rather than breaking, is there any way I can do this?</p>
0debug
Need to hide button until quiz is submitted : <p>I am needing to hide the button at the bottom that says "chapter two" until the quiz above is submitted. There is already a class being added when the quiz is submitted that is called "qmn_results_page"</p> <p>So, ideally, I can write something that would say when "qmn_...
0debug
static int mov_create_chapter_track(AVFormatContext *s, int tracknum) { MOVMuxContext *mov = s->priv_data; MOVTrack *track = &mov->tracks[tracknum]; AVPacket pkt = { .stream_index = tracknum, .flags = AV_PKT_FLAG_KEY }; int i, len; uint8_t chapter_properties[43] = { 0, 0, 0, 0, 0, 0, 0, ...
1threat
Ruby: split number into equal parts or what's closest to that : I have a random number and I would like to divide it into several parts (addends) with conditions that a part can not be more than 20 and the parts must be as close to each other as possible. For example, if my random number is 41, addends should be 14,...
0debug
I am stuck with this code, kindly guide me - get & set methods in Java? : <p>I am stuck in this below code, especially the below part</p> <pre><code>public String getBalanceForCid(double balance){ double b = 0; if (cid = custid) b = balance; else b; return ...
0debug
Can't find node_modules after deployment : <p><strong>This title might be a bit misleading but please bear with me for a while.</strong></p> <p>I have made a simple <code>Angular2</code> app on visual studio 2015 and now I have <code>published it on Azure</code>.</p> <p>Having node_modules in the development environm...
0debug
Nested rows in bootsrap grid : I would create grid in Bootstrap 3.3.7 which is nested in another parent grid. Here's the HTML **Parent component** <div> <div class="row"> <div class="col-md-3 border">.col-md-3</div> // <div class="col-md-9 border"> <nested-app></nest...
0debug
def slope(x1,y1,x2,y2): return (float)(y2-y1)/(x2-x1)
0debug
Swift unexpectedly found nil when there is actual value : <p>I have following code:</p> <pre><code>class User { var listsDict : [String : List]! func addList (list : List) -&gt; Void { print(list.name) listsDict[list.name] = list } func listForName (name: String) -&gt; List? { ...
0debug
static av_cold int cook_decode_init(AVCodecContext *avctx) { COOKContext *q = avctx->priv_data; const uint8_t *edata_ptr = avctx->extradata; const uint8_t *edata_ptr_end = edata_ptr + avctx->extradata_size; int extradata_size = avctx->extradata_size; int s = 0; unsigned int channel_mask =...
1threat
How to ssh another VM without password : <p>Now, I have two SuSe11SP3 VM. I want to ssh another VM without password. Because I often use <code>scp</code> to copy files between the two VMs. But the password is too long, I don't want to change password. I know maybe I can use publickey, my question is how can I achieve b...
0debug
Alphabetize in Perl - Assignment due Sunday : here is the prompt I have: Write a Perl program that reads in an arbitrary number of strings from the command line and displays them sorted alphabetically. Here's what I have: #!/usr/bin/perl use strict; use warnings; # read command line argu...
0debug
from array import array def positive_count(nums): n = len(nums) n1 = 0 for x in nums: if x > 0: n1 += 1 else: None return round(n1/n,2)
0debug
how to save a scikit-learn pipline with keras regressor inside to disk? : <p>I have a scikit-learn pipline with kerasRegressor in it:</p> <pre><code>estimators = [ ('standardize', StandardScaler()), ('mlp', KerasRegressor(build_fn=baseline_model, nb_epoch=5, batch_size=1000, verbose=1)) ] pipeline = Pipeli...
0debug
Create View with two ViewModels : <p>I am working on online resume building project using ASP.NET MVC and let me tell you that I am not that much familiar with MVC.I have two view models, one for the information about experience and another for other resume details.Basically one person can have more than one experiece ...
0debug
static void musicpal_register_devices(void) { sysbus_register_dev("mv88w8618_pic", sizeof(mv88w8618_pic_state), mv88w8618_pic_init); sysbus_register_dev("mv88w8618_pit", sizeof(mv88w8618_pit_state), mv88w8618_pit_init); sysbus_register_dev("mv88w8618_fla...
1threat
static bool virtio_blk_sect_range_ok(VirtIOBlock *dev, uint64_t sector, size_t size) { if (sector & dev->sector_mask) { if (size % dev->conf->logical_block_size) { return true;
1threat
static int decode_main_header(NUTContext *nut){ AVFormatContext *s= nut->avf; ByteIOContext *bc = &s->pb; uint64_t tmp, end; unsigned int stream_count; int i, j, tmp_stream, tmp_mul, tmp_pts, tmp_size, count, tmp_res; end= get_packetheader(nut, bc, 1); end += url_ftell(bc) - 4; ...
1threat
what is the default weight initializer for conv in pytorch? : <p>The question <a href="https://stackoverflow.com/questions/49433936/how-to-initialize-weights-in-pytorch">How to initialize weights in PyTorch?</a> shows how to initialize the weights in <code>Pytorch</code>. However, what is the default weight initialize...
0debug
How to use the EditorFor to fill in the model property(string) with the same name? : In my case, I need to fill in one property of model with several identical "input", using EditorFor. @model EditFormApplication.Models.NewForm @using (Html.BeginForm("EditForm", "Home", FormMethod.Post)) } @H...
0debug
Parse a String using PHP : I am trying to parse a string but I am having a hard time. Here is an example piece of data. I need to get the part highlighted in bold so I can lookup the name up in our database. [AZ - Domestic] **Acme Technologies LLC** - (8484383)" So far, here is what I have tried: $string =...
0debug
I'm tring to increase the stack size in Visual Studio 2017 : I keep getting a stack Overflow! Probably my code could be written a lot better, I know. But I just need to increase the stack size for just one routine (a recursion with a very big array :-( ) I was told to solve it like that: In my Project -> Pr...
0debug
Quadratic equation program in C# : Could you tell me what's wrong with my code for calculating quadratic equation? Don't be cringed out on the way of my work, because i'm in still very new to the program. class Program { static void Main(string[] args) { double a, b, c, ...
0debug
Visualization of the distribution of times over different trials : <p>I want to visualize the distribution of times using their median and IQR for the control (blue) and the intervention (orange) group of different trials like in my example created by powerpoint.</p> <p>I have only aggregated data in the following for...
0debug
Outlook - Select specific user for VBA script : I have written a code to limit the number of emails for To, CC and BCC fields, The code works fine. The only problem I am facing is that the code affects all the users and not for a specific user which I select. e.g: user1@xyz.com user2@xyz.com I want...
0debug
File.ReadAllText does not return full content in c# : In my c# progran, I have an image which is successfully stored in a byte[ ] data called bytes. I successively write it into a .txt file using the following code using (FileStream file = new FileStream("text.text", FileMode.Create, FileAccess.Write)) { ...
0debug
Inject a service into an Ember Object [not an Ember Controller] : <p>I'm trying to inject an Ember service into an Ember Object but keep getting the following error:</p> <pre><code>"Assertion Failed: Attempting to lookup an injected property on an object without a container, ensure that the object was instantiated vi...
0debug
int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size){ int i, j; uint32_t c; if (bits < 8 || bits > 32 || poly >= (1LL<<bits)) return -1; if (ctx_size != sizeof(AVCRC)*257 && ctx_size != sizeof(AVCRC)*1024) return -1; for (i = 0; i < 256; i++) { ...
1threat
static void kvm_arm_gic_get(GICState *s) { uint32_t reg; int i; int cpu; if (!kvm_arm_gic_can_save_restore(s)) { DPRINTF("Cannot get kernel gic state, no kernel interface"); return; } kvm_gicd_access(s, 0x0, 0, &reg, false); s->enabled ...
1threat
static void targa_decode_rle(AVCodecContext *avctx, TargaContext *s, const uint8_t *src, uint8_t *dst, int w, int h, int stride, int bpp) { int i, x, y; int depth = (bpp + 1) >> 3; int type, count; int diff; diff = stride - w * depth; x = y = 0; while(y < h){ type = *src++...
1threat
Can these multiple if statements be condensed? : <p>I made a simple program that tells the user what cards are still in a deck based on the cards seen.If one looks at the code you can see that there are several if statements that do almost the same thing. Could anyone help me condense these?</p> <pre class="lang-py pr...
0debug
JQuery if x Checkboxes checked change link : i need a jquery script. I have three Chechboxes and two links. If all three checkboxes are checked, it show link 1. If only 1 or 2 checkboxes are checked, it show link 2. Thanks in advance.
0debug
alert('Hello ' + user_input);
1threat
void sparc_cpu_list(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...)) { unsigned int i; for (i = 0; i < ARRAY_SIZE(sparc_defs); i++) { (*cpu_fprintf)(f, "Sparc %16s IU " TARGET_FMT_lx " FPU %08x MMU %08x NWINS %d ", sparc_defs[i].name, spar...
1threat