problem stringlengths 26 131k | labels class label 2
classes |
|---|---|
How Do I Read Filenames from a Folder and Add Them Into an Arraylist Without Having to Make an Array and Looping all the Answers Into the Arraylist? : For example, say I have a list of .txt files in a folder. What do I need to do in order for Java to read through each of the names of each file and add them into a stri... | 0debug |
Android Gradle CompilationFailedException after Android Studio Update : <p>I'm getting the following error when I build my project:</p>
<pre><code>org.gradle.api.internal.tasks.compile.CompilationFailedException: Compilation failed; see the compiler error output for details.
at org.gradle.api.internal.tasks.compil... | 0debug |
I wana to get all in mysql : I want fetch all rows in mysql column but it return only 1 is have try this out while($info=mysql_fetch_all($query2, mysql_assoc))
{
but not working please help me out | 0debug |
How Replace string with php : <p>I need to replace this kind of a string:</p>
<pre><code>https://r2---sn-vgqs7nez.c.docs.google.com/
https://r2---sn-testne4.c.docs.google.com/
https://r5---sn-vfghtgh.c.docs.google.com/
</code></pre>
<p>to this</p>
<pre><code>https://redirector.googlevideo.com/
</code></pre>
<p>usin... | 0debug |
int qemu_paio_error(struct qemu_paiocb *aiocb)
{
ssize_t ret = qemu_paio_return(aiocb);
if (ret < 0)
ret = -ret;
else
ret = 0;
return ret;
}
| 1threat |
Creating a symptom checker on Dialogflow : <p>Can a symptom checker, such as WebMd's be created in Dialogflow. Can dialog flow connect different user inputs (symptoms) to one output (disease) or do i need to use a different kind of framework for this?</p>
| 0debug |
C# make an image the background and take up the entire web page : So I'm working on a website and I want to add an image as the background and have it take up the entire web page so if there's scrolling the image is still available, but I'm lost at how I would do this. Can anyone help me out Thanks! | 0debug |
static void slavio_set_irq(void *opaque, int irq, int level)
{
SLAVIO_INTCTLState *s = opaque;
DPRINTF("Set cpu %d irq %d level %d\n", s->target_cpu, irq, level);
if (irq < 32) {
uint32_t mask = 1 << irq;
uint32_t pil = s->intbit_to_level[irq];
if (pil > 0) {
if (level) {
s->intregm_pen... | 1threat |
Does exists "with" keyword (or default method) on java? : I'm working on a code when I notice the following "with" keyword on the constructor and I wanted to know what kind of constructor (or technique) is this, and how to use it.
public static Database with(String key) {
if (sInstance == null) {
... | 0debug |
How can I have an image on the same line as text in html : <p>I am in HTML, and I want to make a professional header. My problem is that when I put my logo into my div and then put some links also in that div it splits them onto different lines. Is there a way to get around this?</p>
| 0debug |
Visual Leak Detector with Visual Studio 2017: no source code line numbers : <p>I try to use Visual Leak Detector with Visual Studio 2017 with Platform Toolset "Visual Studio 2017"
I have set the include directory and the library directory. Generating debug infos is on. Symbols for the exe are loaded.</p>
<p>(It works ... | 0debug |
Extract title from name in c# : <p>How do I extract title from name as Mr. from Mr.ABC or Dr. from Dr.XYZ or M/S. from M/S. PQR in C#?</p>
| 0debug |
from collections import Counter
def sort_counter(dict1):
x = Counter(dict1)
sort_counter=x.most_common()
return sort_counter | 0debug |
static uint64_t calc_rice_params(RiceContext *rc, int pmin, int pmax,
int32_t *data, int n, int pred_order)
{
int i;
uint64_t bits[MAX_PARTITION_ORDER+1];
int opt_porder;
RiceContext tmp_rc;
uint32_t *udata;
uint64_t sums[MAX_PARTITION_ORDER + 1][MAX_PART... | 1threat |
Python - merging 2 list together without overwriting duplicate values : for example
a = [a,b,c,d,a,b,c,d]
b = [1,2,3,4,5,6,7,8]
wanted output for dict:
dict = {'a':6, 'b':8, 'c':10, 'd':12}
tried using zip but it just overwrites | 0debug |
Part of code execute every 5 minutes C++ : I am try to implement wait in c++. I cannot use sleep since it stop the current execution.
For eg.
do
{
if(something)
{
//Do something
}
if(something)
{
//Do something
}
... | 0debug |
static void build_pci_bus_end(PCIBus *bus, void *bus_state)
{
AcpiBuildPciBusHotplugState *child = bus_state;
AcpiBuildPciBusHotplugState *parent = child->parent;
GArray *bus_table = build_alloc_array();
DECLARE_BITMAP(slot_hotplug_enable, PCI_SLOT_MAX);
DECLARE_BITMAP(slot_device_present, PCI... | 1threat |
static enum AVPixelFormat dshow_pixfmt(DWORD biCompression, WORD biBitCount)
{
switch(biCompression) {
case BI_BITFIELDS:
case BI_RGB:
switch(biBitCount) {
case 1:
return AV_PIX_FMT_MONOWHITE;
case 4:
return AV_PIX_FMT_RGB4;
... | 1threat |
static int vid_probe(AVProbeData *p)
{
if (p->buf_size < 4 || AV_RL32(p->buf) != MKTAG('V', 'I', 'D', 0))
return 0;
return AVPROBE_SCORE_MAX;
}
| 1threat |
calling a parameterized constructor using 'this' instance c# : class manning
{
public int i = 0;
public manning() : this(this.i)//why is this not possible.
{
this.i++;
Console.WriteLine(i);
}
public manning(int i)
{
i... | 0debug |
uninitialized float pointer (c++) : > so basically, I have this pointer in a struct, and it is used to fill the values of an array. it works as it should, but the visual studio keeps giving the same warning, saying that is uninitialized, and it's a NULL pointer, when it isn't. Can anyone explain/help?
struct S... | 0debug |
void vfio_put_group(VFIOGroup *group)
{
if (!QLIST_EMPTY(&group->device_list)) {
return;
}
vfio_kvm_device_del_group(group);
vfio_disconnect_container(group);
QLIST_REMOVE(group, next);
trace_vfio_put_group(group->fd);
close(group->fd);
g_free(group);
if (QLIST... | 1threat |
PHP - use of variable : <p>I want my PHP code to display one out of N .txt files on my webpage. (If I visit example.com/index.php?l=1 it should display 1.txt) I´m using a variable for the numbers called $m. $m is defined correctly as it is working on other pages.</p>
<p>My problem is that I can´t define the location o... | 0debug |
static void nvic_writel(NVICState *s, uint32_t offset, uint32_t value,
MemTxAttrs attrs)
{
ARMCPU *cpu = s->cpu;
switch (offset) {
case 0xd04:
if (value & (1 << 31)) {
armv7m_nvic_set_pending(s, ARMV7M_EXCP_NMI);
}
if (value & (1 << 28)... | 1threat |
static inline TCGv *compute_ldst_addr(DisasContext *dc, TCGv *t)
{
unsigned int extimm = dc->tb_flags & IMM_FLAG;
int stackprot = 0;
if (dc->ra == 1) {
stackprot = 1;
}
if (!dc->type_b) {
if (dc->ra == 0) {
return &cpu_R[dc->rb];
... | 1threat |
"Undo" canvas transformations for writing text : <p>When applying a transformation with canvas, the resulting text is also (obviously) transformed. Is there a way to prevent certain transformations, such as reflection, of affecting text?</p>
<p>For example, I set a global transformation matrix so the Y-axis points upw... | 0debug |
python logging dictConfig custom formatter is not being called : <p>i have the following ColoeredFormatter in my Module.</p>
<p>But The Formatter does not get called. I expect "hi" on the console, but i get "This is an info of the root logger".</p>
<p>i've already deleted all .pyc files, but it did not help.</p>
<p>... | 0debug |
def lcm(x, y):
if x > y:
z = x
else:
z = y
while(True):
if((z % x == 0) and (z % y == 0)):
lcm = z
break
z += 1
return lcm | 0debug |
How to add values dynamically/randomly in two different Tables in java and sqlite : When user input some values it should be added either in table1 or table2(Database) dynamically/randomly/automatically. i am using java and sqlite can anyone help me please?? | 0debug |
Regexp - Delete the one word before XXX, remove XXX too : <p>I need to remove a word XXX in a string and also one word before XXX.</p>
<p>How I can do that with C# Regexp?</p>
| 0debug |
document.getElementById('input').innerHTML = user_input; | 1threat |
void kbd_put_keycode(int keycode)
{
QEMUPutKbdEntry *entry = QTAILQ_FIRST(&kbd_handlers);
if (!runstate_is_running() && !runstate_check(RUN_STATE_SUSPENDED)) {
return;
}
if (entry) {
entry->put_kbd(entry->opaque, keycode);
}
}
| 1threat |
Can you change this code into jquery? : <p>I need help to change pure javascript code into jquery code</p>
<pre><code>document.getElementById('type').onchange = function (){
if(this.value == "Student"){
$("#cls").prop({disabled: false});
$("#sec").prop({disabled: false});
$(... | 0debug |
static void sigp_cpu_reset(void *arg)
{
CPUState *cpu = arg;
S390CPUClass *scc = S390_CPU_GET_CLASS(cpu);
cpu_synchronize_state(cpu);
scc->cpu_reset(cpu);
cpu_synchronize_post_reset(cpu);
}
| 1threat |
What's wrong? Why pointer stays constant? : <p>I learn C programming for a while and I had to create a program, which contains a function void hello() displays word 'Hello :)' and the number, how many time the function hello() was called. The code bellow displays 'Hello' but the number of function calling stays constan... | 0debug |
static BlockDriverAIOCB *quorum_aio_readv(BlockDriverState *bs,
int64_t sector_num,
QEMUIOVector *qiov,
int nb_sectors,
BlockDriverCompletionFunc *cb,
... | 1threat |
What is ViewModelStore and viewModelStoreOwner? : <p>I am very confused due to this new ViewModelProvider api(ViewModelProviders is deprecated) </p>
<p>As with the new changes there are new Constructors also (Source code). </p>
<h3>#1</h3>
<pre><code>public ViewModelProvider(@NonNull ViewModelStoreOwner owner) {
... | 0debug |
static void ff_h264_idct_add8_mmx2(uint8_t **dest, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]){
int i;
for(i=16; i<16+8; i++){
if(nnzc[ scan8[i] ])
ff_h264_idct_add_mmx (dest[(i&4)>>2] + block_offset[i], block + i*16, stride);
else if(block[i... | 1threat |
int rom_add_file(const char *file, const char *fw_dir,
target_phys_addr_t addr, int32_t bootindex)
{
Rom *rom;
int rc, fd = -1;
char devpath[100];
rom = g_malloc0(sizeof(*rom));
rom->name = g_strdup(file);
rom->path = qemu_find_file(QEMU_FILE_TYPE_BIOS, rom->name);
... | 1threat |
static void machine_numa_validate(MachineState *machine)
{
int i;
GString *s = g_string_new(NULL);
MachineClass *mc = MACHINE_GET_CLASS(machine);
const CPUArchIdList *possible_cpus = mc->possible_cpu_arch_ids(machine);
assert(nb_numa_nodes);
for (i = 0; i < possible_cpus->len; i++) {
... | 1threat |
int qemu_get_thread_id(void)
{
#if defined (__linux__)
return syscall(SYS_gettid);
#else
return getpid();
#endif
}
| 1threat |
void qemu_notify_event(void)
{
CPUState *env = cpu_single_env;
qemu_event_increment ();
if (env) {
cpu_exit(env);
}
if (next_cpu && env != next_cpu) {
cpu_exit(next_cpu);
}
exit_request = 1;
}
| 1threat |
Angular 2 - angular-cli: set global variable on build : <p>This is my first time trying to deploy an Angular2 application. I want to set the URL of an API endpoint, and I would like for it to be different in every environment.</p>
<p>Is there a way to make ng build or any other tools that would allow set this for me ... | 0debug |
Google App Engine 502 (Bad Gateway) with NodeJS : <p>I have a full web application using NodeJS, MongoDB (Mongoose as the driver) and ExpressJS.</p>
<p>The project works perfectly on my local machine. Today I decided to move everything to production. I'm using Google App Engine to host my application, and Compose (for... | 0debug |
Detach ItemTouchHelper from RecyclerView : <p>I have a RecyclerView with a working ItemTouchHelper. Everything works great, but I am wondering if there is a way I can detach the ItemTouchHelper from the RecyclerView without re-creating the list? For fun, this is the code I'm using to attach:</p>
<pre><code>ItemTouchH... | 0debug |
What is the return type hint of a generator function? : <p>I'm trying to write a <code>:rtype:</code> type hint for a generator function. What is the type it returns? </p>
<p>For example, say I have this functions which yields strings:</p>
<pre><code>def read_text_file(fn):
"""
Yields the lines of the text fi... | 0debug |
Getting DOM node text with Puppeteer and headless Chrome : <p>I'm trying to use headless Chrome and Puppeteer to run our Javascript tests, but I can't extract the results from the page. Based on <a href="https://stackoverflow.com/a/45799744/4794">this answer</a>, it looks like I should use <a href="https://github.com/G... | 0debug |
Cordova: Cannot find plugin.xml : <p>I am trying to remove this plugin from my coordova file and I am getting this issues</p>
<pre><code>Error: Cannot find plugin.xml for plugin 'org.apache.cordova.file-transfer'. Please try adding it again.
</code></pre>
<p>This is the cordova command to remove the plugin</p>
<pre>... | 0debug |
static int msmpeg4v12_decode_mb(MpegEncContext *s, int16_t block[6][64])
{
int cbp, code, i;
uint32_t * const mb_type_ptr = &s->current_picture.mb_type[s->mb_x + s->mb_y*s->mb_stride];
if (s->pict_type == AV_PICTURE_TYPE_P) {
if (s->use_skip_mb_code) {
if (get_bits1(&s->gb)) {
... | 1threat |
static uint32_t sm501_palette_read(void *opaque, target_phys_addr_t addr)
{
SM501State * s = (SM501State *)opaque;
SM501_DPRINTF("sm501 palette read addr=%x\n", (int)addr);
assert(0 <= addr && addr < 0x400 * 3);
return *(uint32_t*)&s->dc_palette[addr];
}
| 1threat |
Why warnings prevent us from writing optimized programs? : <p>Check out this code:</p>
<pre><code>#include <stdio.h>
unsigned short GetShort_With_Warning( unsigned long long val ) {
return *(unsigned short*)&val;
// mov ax,word ptr [val] // That's it. Elegance
}
unsigned short GetShort_Without_War... | 0debug |
Sum of a range? : I am very new to Python. I am trying to find the sum of all numbers less that 1000 divisible by 3 and 5. I have this so far:
```for i in range(0, 1000):
if i % 3 == 0:
print i
elif i % 5 == 0:
print i
b = sum(i)
print b```
I get a TypeError: 'int' object is not iter... | 0debug |
Sorting array not sorting : <p>I must set an array to accept 7 numbers from the user, then send the array to be sorted in ascending order. the array is not being sorted and its just given the values back the exact way they were entered.</p>
<pre><code>import java.util.Scanner;
public class arraySorted {
public static... | 0debug |
C# with windows form application : How can u add data to a specific row in a database from a windows form using the where clause
I used
"Insert into table1 (name, address) values ('"+textbox1.Text+"', '"+textbox2.Text+"') where (name ='"+textbox1.Text+"')", con
Thus did not work | 0debug |
How do you add migrate an existing database with alembic/flask-migrate if you did not start off with it? : <p>This is the chain of events that has and is happening</p>
<ul>
<li>Day 0: I developed and deployed my app </li>
<li>Day 1: I create the new database </li>
<li>Day 3: I realized I wanted to add a new row to my... | 0debug |
VB.net What does the Of() keyword do for declarations of non-generic non-collection classes? : <p>I am looking at the following class declaration in VB.net code:</p>
<pre><code>Public Class ClassB(Of ClassA)
</code></pre>
<p>ClassB is not a collection of ClassA.</p>
<p>What does the (Of ClassA) do?</p>
| 0debug |
static void qxl_render_update_area_unlocked(PCIQXLDevice *qxl)
{
VGACommonState *vga = &qxl->vga;
DisplaySurface *surface;
int i;
if (qxl->guest_primary.resized) {
qxl->guest_primary.resized = 0;
qxl->guest_primary.data = qxl_phys2virt(qxl,
... | 1threat |
what do lseek and offset do : <p>Can someone explain me what does this program do? I can't understand. I created a file named "FILE" and I wrote a five-letter word on it. Now, what does this program do? I don't understand what the offset is... Please explain me, I know it's easy concepts but I can't seem to understand ... | 0debug |
alert('Hello ' + user_input); | 1threat |
Read input file until certain line c++ : <p>I'm new to programming, so I was wondering...</p>
<p>If I have an input file consisting of 100 lines, how do I read only up to line 50 and print out each line?</p>
<p>Thanks.</p>
| 0debug |
Visual Studio 2015 Update 3 - Setup Blocked : <p>I am trying to install Visual Studio 2015 Update 3 from offline installer (iso file) and get this error:</p>
<p><a href="https://i.stack.imgur.com/9Mwsb.png"><img src="https://i.stack.imgur.com/9Mwsb.png" alt="enter image description here"></a></p>
<p>I am running on ... | 0debug |
python pandas sum by hour of day : <p>I'm working with the following dataset with hourly counts (df):
The datframe has 8784 rows (for the year 2016, hourly).</p>
<p><a href="https://i.stack.imgur.com/4wvBM.png" rel="noreferrer"><img src="https://i.stack.imgur.com/4wvBM.png" alt="dataframe (df)"></a></p>
<p>I'd like t... | 0debug |
window.location.href = 'http://attack.com?user=' + user_input; | 1threat |
static inline void gen_405_mulladd_insn(DisasContext *ctx, int opc2, int opc3,
int ra, int rb, int rt, int Rc)
{
TCGv t0, t1;
t0 = tcg_temp_local_new();
t1 = tcg_temp_local_new();
switch (opc3 & 0x0D) {
case 0x05:
... | 1threat |
FindBugs IDEA - ClassNotFoundException com.google.wireless.android.sdk.stats.IntellijIndexingStats : <p>FindBugs IDEA v1.0.1
Android Studio 3.4</p>
<p>I get this error when running FindBugs.
I don't use com.google.wireless.android.sdk anywhere in the app.</p>
<pre><code>Error:Internal error: (java.lang.ClassNotFoundE... | 0debug |
How to use servlet 3.1 in spring mvc? : <p>There are 2 different features available:</p>
<ol>
<li><p><strong>servlet 3.0</strong> allows to process request in a thread different from the container thread.</p></li>
<li><p><strong>servlet 3.1</strong> allows to read/write into socket without blocking reading/writing thr... | 0debug |
C++ beginner - trying to write a function but getting a identifier...is undefined : I am a student and am tasked with creating a program that will determine if a person is rich or not. My code is below and I keep getting an error that "identifier "isRich" is undefined. Can someone help me figure out where I went wron... | 0debug |
How do I get the `hanami routes` command to include additional objects? : In the [overview documentation for routes][1] there are examples of objects being used for route resolution such as `get '/rack-app', to: RackApp.new` and it works as advertised with code like this:
`options '/*', to: MyApp::CORSRequestHandler... | 0debug |
static av_cold void init_mv_penalty_and_fcode(MpegEncContext *s)
{
int f_code;
int mv;
for(f_code=1; f_code<=MAX_FCODE; f_code++){
for(mv=-MAX_MV; mv<=MAX_MV; mv++){
int len;
if(mv==0) len= ff_mvtab[0][1];
else{
int val, bit_size, code... | 1threat |
static int dirac_combine_frame(AVCodecParserContext *s, AVCodecContext *avctx,
int next, const uint8_t **buf, int *buf_size)
{
int parse_timing_info = (s->pts == AV_NOPTS_VALUE &&
s->dts == AV_NOPTS_VALUE);
DiracParseContext *pc = s->priv_data;
... | 1threat |
Passing array to component property in React : <p>How can I pass an array to a component as a property. Neither of the following achieve what I am looking for. I want to pass the array of items through, manipulate them in the component and output in the render method. </p>
<pre><code><List columns=['one', 'two', 't... | 0debug |
How to get height of UITableView when cells are dynamically sized? : <p>I have a UITableView with cells that are dynamically sized. That means I have set:</p>
<pre><code>tableView.estimatedRowHeight = 50.0
tableView.rowHeight = UITableViewAutomaticDimension
</code></pre>
<p>Now I want to get the height of the whole t... | 0debug |
static void avi_read_nikon(AVFormatContext *s, uint64_t end)
{
while (avio_tell(s->pb) < end) {
uint32_t tag = avio_rl32(s->pb);
uint32_t size = avio_rl32(s->pb);
switch (tag) {
case MKTAG('n', 'c', 't', 'g'):
{
uint64_t tag_end = avio_tell(s->pb) + siz... | 1threat |
static void avc_luma_vt_8w_msa(const uint8_t *src, int32_t src_stride,
uint8_t *dst, int32_t dst_stride,
int32_t height)
{
int32_t loop_cnt;
int16_t filt_const0 = 0xfb01;
int16_t filt_const1 = 0x1414;
int16_t filt_const2 = 0x1fb;
... | 1threat |
static int sctp_write(URLContext *h, const uint8_t *buf, int size)
{
SCTPContext *s = h->priv_data;
int ret;
if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
ret = sctp_wait_fd(s->fd, 1);
if (ret < 0)
return ret;
}
if (s->max_streams) {
struct sctp_... | 1threat |
How to configure ASP.NET Core 1.0 to use Local IIS instead of IIS Express? : <p>How can I setup a <strong>.Net Core 1.0</strong> project to use <strong>Local IIS</strong> instead of <strong>IIS Express</strong> when debugging?</p>
<p>I have tried modifying <strong>launchSettings.json</strong> file in various ways. For... | 0debug |
How do I send a message to someone mentioned using discord.js? : title
Oh yeah, and here's the code for me trying to do said title.
[self-explanatory, please tell me what is wrong][1]
[1]: https://i.stack.imgur.com/zborb.png | 0debug |
How to scrape a table with rvest and xpath? : <p>using the following <a href="http://www.r-bloggers.com/using-rvest-to-scrape-an-html-table/" rel="noreferrer">documentation</a> i have been trying to scrape a series of tables from marketwatch.com </p>
<p>here is the one represented by the code bellow: </p>
<p><a href=... | 0debug |
static VncServerInfo *vnc_server_info_get(VncDisplay *vd)
{
VncServerInfo *info;
Error *err = NULL;
info = g_malloc(sizeof(*info));
info->base = g_malloc(sizeof(*info->base));
vnc_init_basic_info_from_server_addr(vd->lsock, info->base, &err);
info->has_auth = true;
info->auth = g_s... | 1threat |
keycloak bearer-only clients: why do they exist? : <p>I am trying to wrap my head around the concept of <code>bearer-only</code> clients in Keycloak.</p>
<p>I understand the concept of public vs confidential and the concept of service accounts and the <code>grant_type=client_credentials</code> stuff. But with <code>be... | 0debug |
static AVFrame *apply_palette(AVFilterLink *inlink, AVFrame *in)
{
int x, y, w, h;
AVFilterContext *ctx = inlink->dst;
PaletteUseContext *s = ctx->priv;
AVFilterLink *outlink = inlink->dst->outputs[0];
AVFrame *out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
if (!out) {
... | 1threat |
static int blkdebug_debug_remove_breakpoint(BlockDriverState *bs,
const char *tag)
{
BDRVBlkdebugState *s = bs->opaque;
BlkdebugSuspendedReq *r, *r_next;
BlkdebugRule *rule, *next;
int i, ret = -ENOENT;
for (i = 0; i < BLKDBG__MAX; i++) {
... | 1threat |
Making a math equation for overtime : <p>right now i have an employee who is getting 500 dollars overtime when he works 40 hours and his basic salary is 3500 dollars, i need to have an equation to calculate the amount of dollars when he work any other amount of hours different salary or with basic salary 4000 dollars.... | 0debug |
struct pxa2xx_pcmcia_s *pxa2xx_pcmcia_init(target_phys_addr_t base)
{
int iomemtype;
struct pxa2xx_pcmcia_s *s;
s = (struct pxa2xx_pcmcia_s *)
qemu_mallocz(sizeof(struct pxa2xx_pcmcia_s));
s->io_base = base | 0x00000000;
iomemtype = cpu_register_io_memory(0, pxa2xx_pcmci... | 1threat |
Matrix, how to solve? : <p>Given the matrix M x N. How to print the number of the line containing the maximum number of identical elements? </p>
<pre><code>import random
n = int(input('Введите кол-во столбцов матрицы: '))
m = int(input('Введите кол-во строк матрицы: '))
matrix = [[random.randrange(0, 10) for y in rang... | 0debug |
How to get the response of AJAX from JQUERY : <p>I know this question has been asked many times but the guys who asked before me had a slightly different issue. I have a [simple page to upload photo][1]. This one is placed on my localhost. I can select file and upload image into upload folder. I can get response and us... | 0debug |
Can anyone help me how to creat a c program prints the center of the words inside a sentance? : <p>Example:
My name is ray => ( a )</p>
<p>Another example :
Hello the world. =>. ( l h r )</p>
| 0debug |
void ff_proresdsp_x86_init(ProresDSPContext *dsp)
{
#if ARCH_X86_64 && HAVE_YASM
int flags = av_get_cpu_flags();
if (flags & AV_CPU_FLAG_SSE2) {
dsp->idct_permutation_type = FF_TRANSPOSE_IDCT_PERM;
dsp->idct_put = ff_prores_idct_put_10_sse2;
}
if (flags & AV_CPU_FLAG_SSE4) {
... | 1threat |
Duplicating (and modifying) discrete axis in ggplot2 : <p>I want to duplicate the left-side Y-axis on a ggplot2 plot onto the right side, and then change the tick labels for a discrete (categorical) axis.</p>
<p>I've read the answer to <a href="https://stackoverflow.com/questions/40134648/duplicating-discrete-axis-in-... | 0debug |
inline static void RENAME(hcscale)(uint16_t *dst, int dstWidth, uint8_t *src1, uint8_t *src2,
int srcW, int xInc, int flags, int canMMX2BeUsed, int16_t *hChrFilter,
int16_t *hChrFilterPos, int hChrFilterSize, void *funnyUVCode,
int srcFormat, uint8_t *formatConvBuffer)
{
if(srcFormat==IMGF... | 1threat |
While loop inside While working just once in ruby? : <p>I am using while statement in ruby and another child while statement in that parent while to print :</p>
<pre><code>z = 0
i = 0
while z < 2
puts "hi coding"
while i < 4 do
puts "hello"
i +=1
end
z +=1
end
... | 0debug |
How to mock middleware in Express to skip authentication for unit test? : <p>I have the following in Express</p>
<pre><code> //index.js
var service = require('./subscription.service');
var auth = require('../auth/auth.service');
var router = express.Router();
router.post('/sync', auth.isAuthenticated, service.sy... | 0debug |
int vnc_tls_validate_certificate(VncState *vs)
{
int ret;
unsigned int status;
const gnutls_datum_t *certs;
unsigned int nCerts, i;
time_t now;
VNC_DEBUG("Validating client certificate\n");
if ((ret = gnutls_certificate_verify_peers2 (vs->tls.session, &status)) < 0) {
VNC_... | 1threat |
How to save the xml file in the directory I want (android studio) : <p>There is some filled document <code>xml Document doc = builder.newDocument ();</code> which I want to save to the <code>assets</code> folder of my application, how can I do this? I climbed to the Internet, but I could not find information, I was pr... | 0debug |
void kvm_arch_update_guest_debug(CPUState *env, struct kvm_guest_debug *dbg)
{
const uint8_t type_code[] = {
[GDB_BREAKPOINT_HW] = 0x0,
[GDB_WATCHPOINT_WRITE] = 0x1,
[GDB_WATCHPOINT_ACCESS] = 0x3
};
const uint8_t len_code[] = {
[1] = 0x0, [2] = 0x1, [4] = 0x3, [8] = 0... | 1threat |
Couldnt execute long sql statement in python? : <p>I have defined my sql statement as follows ( note the line breaks)</p>
<pre><code> def getTankSystemIds():
sql='select tt.TankSystemId,ts.sitecode,tt.productid ' \
'from [dbo].[TankSystems] tt' \
'left join [dbo].sites ts on tt.siteid... | 0debug |
Need the SQL Query to find out the below Result : below is the source table with data
PARENT_ID PARENT_NAME CHILD_GENDER
1111 AAA M
1111 AAA F
1234 BBB M
1234 BBB M
1235 CCC M
1236 DDD F
1236 DDD F
1236 DDD M
123... | 0debug |
int bdrv_commit(BlockDriverState *bs)
{
BlockDriver *drv = bs->drv;
int64_t sector, total_sectors;
int n, ro, open_flags;
int ret = 0;
uint8_t *buf;
char filename[1024];
if (!drv)
return -ENOMEDIUM;
if (!bs->backing_hd) {
return -ENOTSUP;
}
... | 1threat |
Smth is wrong with index (System.NullReferenceException) : <p>Need help to figure it out what's wrong with my code.
I get this error:
System.NullReferenceException: 'Object reference not set to an instance of an object.' at this line:</p>
<pre><code>post[0].Author = "Author at post 0";
</code></pre>
<p>The Code:</p>
... | 0debug |
static void init_proc_401x2 (CPUPPCState *env)
{
}
| 1threat |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.