problem stringlengths 26 131k | labels class label 2
classes |
|---|---|
Scala program to display the output in format below. : Find the missing code in the Scala program to display the output in the following format.
Output: Array[(Int, String)] = Array((4,anar), (5,applelichi), (6,bananagrapes), (7,oranges))
Program
val a = sc.parallelize(List("apple","banana","oranges","grapes",... | 0debug |
ReactJS Module build failed: SyntaxError: Unexpected token - ReactDOM.render : <p>Why am I getting this error below? My statement <code>ReactDOM.render(<App />, container);</code> is 100% legit code.</p>
<p>My github repo: <a href="https://github.com/leongaban/react_starwars" rel="noreferrer">https://github.com/... | 0debug |
how to create an sql table without using create keyword? : <p>is there any options available to create a new sql table without using 'create' keyword</p>
| 0debug |
static uint64_t master_abort_mem_read(void *opaque, hwaddr addr, unsigned size)
{
return -1ULL;
}
| 1threat |
static bool bdrv_exceed_io_limits(BlockDriverState *bs, int nb_sectors,
bool is_write, int64_t *wait)
{
int64_t now, max_wait;
uint64_t bps_wait = 0, iops_wait = 0;
double elapsed_time;
int bps_ret, iops_ret;
now = qemu_get_clock_ns(vm_clock);
if ((bs... | 1threat |
static int print_drive(DeviceState *dev, Property *prop, char *dest, size_t len)
{
DriveInfo **ptr = qdev_get_prop_ptr(dev, prop);
return snprintf(dest, len, "%s", (*ptr)->id);
}
| 1threat |
How to check that an image come from the device camera HTML5 : I'm having a trouble a bit rare, at least for me.
The thing is that I'm developing a web site that simulates to be an mobile app (something like a web mobile first site) and to do this, I found around a method to open the device camera when the user click ... | 0debug |
Retrieving an array from within an a JSONArray in android : I've got the following JSON String:
{
"error":false,
"message":"modules retrieved successfully",
"subjectsEnrolled":
{
"studentNumber":"PT2014-1282",
"courseId":1,
"moduleNames":... | 0debug |
Python2.7 sort list of dictionaries alphabetically by Country, value : So I have a list of dictionaries in python, called all_data, here is an example of one such dictionary in all data:
'URL: 104.214.150.216/aa.exe, IP Address: 104.214.150.216, Country: US, ASN: 8075, MD5: bdd562a14e1fb7308a92a50e7cf017de'
A... | 0debug |
static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv,
int i, AVIOContext *pb, int default_stream_exists)
{
AVStream *st = s->streams[i];
AVCodecContext *codec = st->codec;
ebml_master subinfo, track;
int native_id = 0;
int qt_id = 0;
int bit_d... | 1threat |
What is the use of encapsulation parameter in component portion in angular js 2 : Kindly explain the `encapsulation` parameter in angular js 2. when i add this parameter i have some error message. how can i remove it.
@Component({
selector: 'app-add',
templateUrl: './add.component.html... | 0debug |
PLSQL DYNAMIC INSERTION : I have a TABLE_A,which contains a column with comma separeted values as data,now i have to put these comma separated values into TABLE B of 250 columns,this has to be done dynamically? | 0debug |
def get_ludic(n):
ludics = []
for i in range(1, n + 1):
ludics.append(i)
index = 1
while(index != len(ludics)):
first_ludic = ludics[index]
remove_index = index + first_ludic
while(remove_index < len(ludics)):
ludics.remove(ludics[remove_index])
remove_index = remove_index + first_ludic - 1
... | 0debug |
static int local_name_to_path(FsContext *ctx, V9fsPath *dir_path,
const char *name, V9fsPath *target)
{
if (dir_path) {
v9fs_path_sprintf(target, "%s/%s", dir_path->data, name);
} else {
v9fs_path_sprintf(target, "%s", name);
}
return 0;
}
| 1threat |
Bootstrap overriding my custom css : <p>I am creating a website for an internship I'm in at the moment and we opted to include a drop-down navbar. The navbar works fine, but the css involved seems to be overriding my custom css as it applies to my html tag background colour and my h1 tag fonts, sizes, colours, etc. any... | 0debug |
How to get url from parameter using Javascript/ jQuery : <p>I was trying to make a site just like <a href="https://null-24.com/download/?link=" rel="nofollow noreferrer">https://null-24.com/download/?link=</a>"Your site"</p>
<p>if i enter <a href="https://null-24.com/download/?link=https://www.instandroid.net" rel="no... | 0debug |
static inline uint8_t *ram_chunk_end(const RDMALocalBlock *rdma_ram_block,
uint64_t i)
{
uint8_t *result = ram_chunk_start(rdma_ram_block, i) +
(1UL << RDMA_REG_CHUNK_SHIFT);
if (result > (rdma_ram_block->local_host_addr + rdma... | 1threat |
static av_cold void construct_perm_table(TwinContext *tctx,enum FrameType ftype)
{
int block_size;
const ModeTab *mtab = tctx->mtab;
int size = tctx->avctx->channels*mtab->fmode[ftype].sub;
int16_t *tmp_perm = (int16_t *) tctx->tmp_buf;
if (ftype == FT_PPC) {
size = tctx->avctx->ch... | 1threat |
Android studio grid layout don't show any view : I have a grid layout that is a child of another layout (like frame layout or constraint layout ) . I drag and drop views on it like button or image view but it didn't show !! . How can i fix this problem ?
[pic1][1]
[pic2][2]
[1]: https://i.stack.imgur.com/... | 0debug |
static int r3d_read_redv(AVFormatContext *s, AVPacket *pkt, Atom *atom)
{
AVStream *st = s->streams[0];
int tmp;
int av_unused tmp2;
uint64_t pos = avio_tell(s->pb);
unsigned dts;
int ret;
dts = avio_rb32(s->pb);
tmp = avio_rb32(s->pb);
av_dlog(s, "frame num %d\n", tmp)... | 1threat |
static void do_video_out(AVFormatContext *s,
OutputStream *ost,
AVFrame *next_picture,
double sync_ipts)
{
int ret, format_video_sync;
AVPacket pkt;
AVCodecContext *enc = ost->enc_ctx;
AVCodecContext *mux_enc = ost->st->c... | 1threat |
What is the difference between Component, Behaviour and MonoBehaviour? And why these are separated? : <p>MonoBehaviour extends Behaviour and Behaviour extends Component.
I want to know why these classes are separated and semantic meanings of these classes.
Are there any purpose to separate these classes? And are there ... | 0debug |
static uint32_t get_generic_seed(void)
{
uint8_t tmp[120];
struct AVSHA *sha = (void*)tmp;
clock_t last_t = 0;
static uint64_t i = 0;
static uint32_t buffer[512] = { 0 };
unsigned char digest[20];
uint64_t last_i = i;
av_assert0(sizeof(tmp) >= av_sha_size);
if(TEST){
... | 1threat |
static int64_t *concat_channels_lists(const int64_t *layouts, const int *counts)
{
int nb_layouts = 0, nb_counts = 0, i;
int64_t *list;
if (layouts)
for (; layouts[nb_layouts] != -1; nb_layouts++);
if (counts)
for (; counts[nb_counts] != -1; nb_counts++);
if (nb_counts > IN... | 1threat |
static void syborg_virtio_writel(void *opaque, target_phys_addr_t offset,
uint32_t value)
{
SyborgVirtIOProxy *s = opaque;
VirtIODevice *vdev = s->vdev;
DPRINTF("writel 0x%x = 0x%x\n", (int)offset, value);
if (offset >= SYBORG_VIRTIO_CONFIG) {
return vir... | 1threat |
how to do the activat route in angular? : My url
http://xx.xx.xxx.xxx:xxxx/#/Test?name=7779394
how can i get '7779394'?
i tried the follow code:
this.activatedRoute.queryParams.subscribe(params => {
this.ind = params.name;
console.log("this.ind " + params.name);
});
but the res... | 0debug |
Not able to add Intent in menifest : I want to add intent to differebt values of the navigation drawer but i am getting an error
> java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.tanis.myapplication/com.example.tanis.myapplication.MenuItems.Home}: java.lang.ClassCastException: com... | 0debug |
Efficient table comarison : What is the best way to find way to select values present in one table but not in other - left join,not in or not exists.
There probably isn't a universal answer - so would appreciate the used-case where each is advisable.
| 0debug |
How to run NUnit test in Visual Studio Team Services : <p>When I try to execute <strong>NUnit</strong> test in VSTS task I am getting the following error:</p>
<pre><code>Warning: The path 'C:\a\1\s\INCASOL.IP\packages' specified in the 'TestAdapterPath' does not contain any test adapters, provide a valid path and try ... | 0debug |
How to get "Manage User Secrets" in a .NET Core console-application? : <p>When I create a new ASP .NET Core <strong>Web</strong>-Application, I can right-click the project in Visual Studio, and I see a context-menu entry called "Manage User Secrets". </p>
<p>When I create a new .NET Core <strong>Console</strong>-Appli... | 0debug |
How to check a condition in android alwaysly? : i want to develop an app to change device audio status , if that is silent change it with a button to Normal and so on.
i Want to check Audio Status of device in my app always and if device is silent change my button text to silent and if it was normal , change it to n... | 0debug |
How to decode Base64 URL safe? : <p>I need to decode a value from Base64 URL safe, what is best approach to do that? </p>
<p>I didn't find any good solution over the web, and I also have no code which I built myself. </p>
| 0debug |
opening a file gives not expexted return value : could someone please explain me, why file opening is not successful? why printing "file" will give -1? Is it a problem with char *source ?
int opf(char *source){
int file;
file=open(source,O_RWR);
printf("%d",file);
... | 0debug |
static void rtl8139_transfer_frame(RTL8139State *s, const uint8_t *buf, int size, int do_interrupt)
{
if (!size)
{
DEBUG_PRINT(("RTL8139: +++ empty ethernet frame\n"));
return;
}
if (TxLoopBack == (s->TxConfig & TxLoopBack))
{
DEBUG_PRINT(("RTL8139: +++ transmit lo... | 1threat |
Java J-Date Choosers cannot be resolved : my datechoosers are coming up as if they don't exist and I'm very confused what im doing wrong :( I originally had textfields for dates then swapped them to jdatechoosers and this is coming up for both areas(ignore that it says arrival time and departure time instead of departu... | 0debug |
Convert dd-MON-yyyy to julian date : I want to convert dd-MON-yyyy to Julian date as part of SQL query. It would be of great help if anyone could guide on how to achieve this.
new JulianDate().ConvertToJulian(date1) worked when date1 was in mm/dd/yyyy format. But when date1 is in dd-MON-yyyy format i get the error:
... | 0debug |
i have written the code(vim ubuntu) correct but on HACKERS EARTH it is showing compilation error : #include<stdio.h>
main(){
int n;
scanf("%d",&n);
int zz,count;
int i=5;
while(zz>=1)
{
zz=n/i;
count+=zz;
i=i*5;
}
printf("%d",count... | 0debug |
sql query to delete data from 2 tables : currently trying to accomplish the following task adn i using this sql to doit but still not working
'' DoCmd.RunSQL " delete tbl_siphon_req_info.* from tbl_siphon_req_info a, tbl_siphon_PO b where concat(a.ross_PO_nbr, a.ross_sku12) = Concat(b.PO_ID, Sbstr(bitem_id,1,12))"... | 0debug |
static void tcg_reg_sync(TCGContext *s, TCGReg reg, TCGRegSet allocated_regs)
{
TCGTemp *ts = s->reg_to_temp[reg];
assert(ts->val_type == TEMP_VAL_REG);
if (!ts->mem_coherent && !ts->fixed_reg) {
if (!ts->mem_allocated) {
temp_allocate_frame(s, temp_idx(s, ts));
} else i... | 1threat |
Filter text file with another text file using php : I have got two text files and i need to filter file1 with file2 and put the results in file3.
file1:
1232131-72-427-Q john johnson -----more data----------more data-----<br>
8765438-43-542-T peter dudeson -----more data----- -----more data-----<br>
3456761-21-... | 0debug |
static void vp8_decode_mb_row_no_filter(AVCodecContext *avctx, void *tdata,
int jobnr, int threadnr)
{
decode_mb_row_no_filter(avctx, tdata, jobnr, threadnr, 0);
}
| 1threat |
I want to Add a column that show the record number sequence : <p>I want to search top 5 salary from record that i have done but i want another column that contain the number sequence of these salaries like who is at number One and who is at number second and so on </p>
| 0debug |
nodeJs - can't acces required properties : <p>I have 2 separate files - the main script file and config.js located in the same folder.</p>
<p>I then require the config.js as a variable, and try to access it's url property, but somehow it does not get injected properly. What am I doing wrong?</p>
<p>If I define a loca... | 0debug |
def last(arr,x,n):
low = 0
high = n - 1
res = -1
while (low <= high):
mid = (low + high) // 2
if arr[mid] > x:
high = mid - 1
elif arr[mid] < x:
low = mid + 1
else:
res = mid
low = mid + 1
return res | 0debug |
void cpu_check_irqs(CPUState *env)
{
uint32_t pil = env->pil_in | (env->softint & ~SOFTINT_TIMER) |
((env->softint & SOFTINT_TIMER) << 14);
if (pil && (env->interrupt_index == 0 ||
(env->interrupt_index & ~15) == TT_EXTINT)) {
unsigned int i;
for (i = 15; i > 0... | 1threat |
how to change value of a var in reverse geocoding function : <p>I am trying to get address info for my project. I can see the address by alert() method if i write it inside the geocode function. but if i outside of the function, it returns <strong>undefined</strong>. </p>
<p>tried to write the variable name like <stro... | 0debug |
cannot access rules in external CSSStyleSheet : <p>I am having trouble figuring out why <code>.cssRules</code> and <code>.rules</code> won't work in my simplistic color generator project.</p>
<p>I have a <code><link></code> element to link my external CSS file:</p>
<pre><code><link href="ColorGenerator.css" ... | 0debug |
Anyone know what this format is called? : We are switching to this format from a integer. Anyone know what is called?
`c1ddb295-51df-4fca-bc10-8dc1cb8e0d78
18680788-b9ba-4b1a-a93a-81e89830616f
97eb5b39-9963-4d8f-a41e-71adcf7763c6
a51ec154-fcf1-47a3-96bb-33d7d4b20fe0
2567be1e-5f6c-4bb5-8a15-0f37cd67a271
8a978ed7-4... | 0debug |
What are parts of html like "src=" called? : <p>Elements, attributes, or...? I'm pretty ignorant and it'd be faster to learn if I knew what they were. To be clear, I don't mean the image that follows src, but src itself. Thanks for your time.</p>
| 0debug |
Golang: does embedded fields count towards interfaces : In Golang, we can have embedded fields inside of `struct`. The embedded field gets "promoted", and the new `struct` gets to used the functions of the embedded fields as if it's part of its own. So my question is, does the embedded fields' functions count towards i... | 0debug |
static int sector_limits_lun2qemu(int64_t sector, IscsiLun *iscsilun)
{
int limit = MIN(sector_lun2qemu(sector, iscsilun), INT_MAX / 2 + 1);
return limit < BDRV_REQUEST_MAX_SECTORS ? limit : 0;
}
| 1threat |
static av_cold int cinepak_encode_init(AVCodecContext *avctx)
{
CinepakEncContext *s = avctx->priv_data;
int x, mb_count, strip_buf_size, frame_buf_size;
if (avctx->width & 3 || avctx->height & 3) {
av_log(avctx, AV_LOG_ERROR, "width and height must be multiples of four (got %ix%i)\n",
... | 1threat |
where do I find the project id for the gitlab api? : <p>I use gitlab on their servers. I would like to download my latest built artifacts (build via gitlab-ci) via the API like this </p>
<p><code>curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.com/api/v3/projects/1/builds/8/artifacts"</code></p>
<... | 0debug |
void ich9_lpc_pm_init(PCIDevice *lpc_pci)
{
ICH9LPCState *lpc = ICH9_LPC_DEVICE(lpc_pci);
ich9_pm_init(lpc_pci, &lpc->pm, qemu_allocate_irq(ich9_set_sci, lpc, 0));
ich9_lpc_reset(&lpc->d.qdev);
}
| 1threat |
static int ppce500_load_device_tree(CPUPPCState *env,
PPCE500Params *params,
hwaddr addr,
hwaddr initrd_base,
hwaddr initrd_size)
{
int ret = -1;
uint64_t mem_re... | 1threat |
Python says else has invalid syntax : <p>I'm not sure if it's just because I'm not very good at this but what's happening is I'm trying to get</p>
<pre><code>jug = input('Welcome to the 1-99 site swap generator. Enter a number
between/including 1 and 99 and I will determine whether or not it is possible to juggle it'... | 0debug |
static int pcx_encode_frame(AVCodecContext *avctx,
unsigned char *buf, int buf_size, void *data)
{
PCXContext *s = avctx->priv_data;
AVFrame *const pict = &s->picture;
const uint8_t *buf_start = buf;
const uint8_t *buf_end = buf + buf_size;
int bpp, nplanes, i,... | 1threat |
static int decode_frame(NUTContext *nut, AVPacket *pkt, int frame_code){
AVFormatContext *s= nut->avf;
ByteIOContext *bc = &s->pb;
int size, stream_id, flags, discard;
int64_t pts, last_IP_pts;
size= decode_frame_header(nut, &flags, &pts, &stream_id, frame_code);
if(size < 0)
re... | 1threat |
Angular2 - Show/Hide section on selection of radio button : <p>I have to show or hide sections based on selection of radio button </p>
<pre><code> <input name="options" [(ngModel)]="options" type="radio" [value]="true" [checked]="options==true"/> Yes
<input name="options"[(ngModel)]="options" type="rad... | 0debug |
Site is not loading .htaccess rewrite rule error. How to fix this ? : The site does not load anymore and in error log file I can see. This happened suddenly after attempting to load files such as video and img.
EROOR messages are :
RewriteRule: cannot compile regular expression '^([0-9]+)\\/([^\\d\\/]+)([0-9]+).**\... | 0debug |
T_CONSTANT_ENCAPSED_STRING : <pre><code>this is my code:
<?php
functionrequire 'zMovie/phpmailer/PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp.live.com'; // Specify main and backup SMTP servers
$mail->SM... | 0debug |
This javascript code doesn't work in Internet Explorer 11 : <pre><code> <script>
const images = document.querySelectorAll('.view-content img')
images.forEach(item => {
const src = item.getAttribute('data-original');
const newSrc = 'https://example.com' + src;
item.setAttribute('src', newSrc);
})
</scr... | 0debug |
static void raw_aio_unplug(BlockDriverState *bs)
{
#ifdef CONFIG_LINUX_AIO
BDRVRawState *s = bs->opaque;
if (s->use_aio) {
laio_io_unplug(bs, s->aio_ctx, true);
}
#endif
}
| 1threat |
void usb_test_hotplug(const char *hcd_id, const int port,
void (*port_check)(void))
{
QDict *response;
char *cmd;
cmd = g_strdup_printf("{'execute': 'device_add',"
" 'arguments': {"
" 'driver': 'usb-tablet',"
... | 1threat |
SQL - Deleting duplicate columns only if another column matches : <p>I have the following table (TBL_VIDEO) with duplicate column entries in "TIMESTAMP", and I want to remove them <strong>only if the "CAMERA" number matches.</strong></p>
<p>BEFORE:</p>
<pre><code>ANALYSIS_ID | TIMESTAMP | EMOTION | CAMERA
-----------... | 0debug |
static uint32_t calc_rice_params(RiceContext *rc, int pmin, int pmax,
int32_t *data, int n, int pred_order)
{
int i;
uint32_t bits[MAX_PARTITION_ORDER+1];
int opt_porder;
RiceContext tmp_rc;
uint32_t *udata;
uint32_t sums[MAX_PARTITION_ORDER+1][MAX_PARTIT... | 1threat |
static ssize_t qio_channel_websock_readv(QIOChannel *ioc,
const struct iovec *iov,
size_t niov,
int **fds,
size_t *nfds,
... | 1threat |
(C++) Bool functions. *New to programming* : I have a bit of a problem with bool functions. The second sentence prints out no matter the salary I would input.
My task:
//Define a function that will decide if someone can rent an apartment based on the salary he/she makes.
//The rent should be at most one-third... | 0debug |
static inline void tm2_high_chroma(int *data, int stride, int *last, int *CD, int *deltas)
{
int i, j;
for (j = 0; j < 2; j++) {
for (i = 0; i < 2; i++) {
CD[j] += deltas[i + j * 2];
last[i] += CD[j];
data[i] = last[i];
}
data += stride;
... | 1threat |
Android Studio Simple TaxiMeter : Good evening,
l am trying to learn Android Studio. l have limited information about Java, l searched everywhere to solve this but l keep receivin error and couldn't fix it on my own. l want to make a simple calculator. Customer will enter the how many kilometers he/she went and the ... | 0debug |
struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *env,
target_ulong pc)
{
struct kvm_sw_breakpoint *bp;
TAILQ_FOREACH(bp, &env->kvm_state->kvm_sw_breakpoints, entry) {
if (bp->pc == pc)
return bp;
}
return NULL;
}
| 1threat |
static TranslationBlock *tb_alloc(target_ulong pc)
{
TranslationBlock *tb;
if (tcg_ctx.tb_ctx.nb_tbs >= tcg_ctx.code_gen_max_blocks ||
(tcg_ctx.code_gen_ptr - tcg_ctx.code_gen_buffer) >=
tcg_ctx.code_gen_buffer_max_size) {
return NULL;
}
tb = &tcg_ctx.tb_ctx.tbs[tcg_ct... | 1threat |
I am trying to make a game : I am trying to make 2D shooter with python tkinter
Here are my progress
from tkinter import *
root = Tk()
c = Canvas(root, height=500, width=500, bg='blue')
c.pack()
circle1x = 250
circle1y = 250
circle2x = 250
circle2y = 250
... | 0debug |
Javascript - How build min file when write js plugin : <p>I just write a small js plugin and i don't know minify it like other <code>MIT</code> License plugin ex: <a href="https://github.com/jquery/jquery" rel="nofollow noreferrer">jquery</a>, <a href="https://github.com/OwlCarousel2/OwlCarousel2" rel="nofollow norefer... | 0debug |
How can I change a particular variable to some other throughout the whole program? : How can I change a particular variable to some other throughout the whole program?
I had made a program about a year ago, when I was still a newbie. I have used all types of meaningless variables, which right now, make no sense to m... | 0debug |
Why entityManager.merge() method returns new managed entity? : JPA merge() is used to update detached entity. But why it dont pass the same detached entity to persistent context, why return new managed entity? | 0debug |
Python regular expression to capture last word with missing line feed : <p>I need to capture words separated by tabs as illustrated in the image below.</p>
<p><a href="https://i.stack.imgur.com/nv3Pg.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/nv3Pg.png" alt="enter image description here"></a></... | 0debug |
store split data into array variable : I'd like to store split data in array like this:
$cp="my name is abcd";
$i=0;
$length=str_word_count($cp);
foreach ($cp as $c ) {
$array[i]=$c;
$i++;
}
for($j=0;$j<$length;$j++){
echo $array[j];
}
it's not working... | 0debug |
int ff_h264_decode_slice_header(H264Context *h, H264Context *h0)
{
unsigned int first_mb_in_slice;
unsigned int pps_id;
int ret;
unsigned int slice_type, tmp, i, j;
int last_pic_structure, last_pic_droppable;
int must_reinit;
int needs_reinit = 0;
int field_pic_flag, bottom_fiel... | 1threat |
static void gic_dist_writew(void *opaque, target_phys_addr_t offset,
uint32_t value)
{
gic_dist_writeb(opaque, offset, value & 0xff);
gic_dist_writeb(opaque, offset + 1, value >> 8);
}
| 1threat |
Spring controller gets invoked but returns 404 : <p>I am writing a Spring Boot application. I have written a simple controller that gets invoked whenever the endpoint is hit, but it still returns status 404 and not the specified return value.</p>
<p><strong>HelloController</strong></p>
<pre><code>@Controller
public c... | 0debug |
Flattering objects + arrays + objects into one object javascript : <p>I will go straight to the point, so here is what I have:</p>
<pre><code> const someObj = {
one: [
{
id: 123,
text: "lalala"
},
{
id: 456,
text: "lalala2"
},
... | 0debug |
How do I receive files from my Android app on my website? : I would like the users of my Android app to be able to send zip files to my server using `http`. The use case I am imaging looks like this:
- The user sends a zip file and a String containing a password using a `HttpClient` and `HttpPost` (as described [he... | 0debug |
How do I generate a list of the text with that has given color with MS Word? : I am looking for a way to create a new document containing all the text with a specific format from my document.
See below for what I wrote so far, but I'm stuck at two points:
- how do I stop my loop when end of document is reached?
... | 0debug |
How do I replace all of Column A's values with Column B's values unless Column B's value is NaN? : <p>Given the following DataFrame:</p>
<pre><code>import numpy as np
import pandas as pd
df = pd.DataFrame({"ColA": [1, 2, np.nan, 4, np.nan],
"ColB": [np.nan, 7, np.nan, 9, 10]})
ColA ColB
0 1.... | 0debug |
Questa CDC. Is there any command to invoke CDC in questa CDC (like in midelsim .vsim for simulation, in cadence simvision)? : Is there any command to invoke CDC in questa CDC (like in midelsim .vsim for simulation, in cadence simvision)? | 0debug |
Confused with comma's in PHP : <p>I know is a stupid question but well i am trying so hard but i can't figure out on where i am missing the comma i am totally confused ,The below code is giving me an error.</p>
<p>it would be great if someone can help me out with a referencing on comma and tips / Tricks on them :) </... | 0debug |
UIStackView inside UICollectionViewCell autolayout issues after running on Xcode 10 beta : <p>My stack view contains an image and label to display some tasks. They were all left aligned on multiple rows. </p>
<p>I didn't have any issue running on Xcode 9, but when I run on Xcode 10 beta 6, I get some autolayout issues... | 0debug |
static bool raw_is_inserted(BlockDriverState *bs)
{
return bdrv_is_inserted(bs->file->bs);
}
| 1threat |
static uint64_t unin_data_read(void *opaque, hwaddr addr,
unsigned len)
{
UNINState *s = opaque;
PCIHostState *phb = PCI_HOST_BRIDGE(s);
uint32_t val;
val = pci_data_read(phb->bus,
unin_get_config_reg(phb->config_reg, addr),
... | 1threat |
How to remove view controller stack and only show one view controller : <p>When I present another view controller, it shows this view:</p>
<p><a href="https://i.stack.imgur.com/85FPy.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/85FPy.png" alt="enter image description here"></a></p>
<p>How do I c... | 0debug |
a very very simple fortran question for you but a maddening chalenge for me: : a very very simple question for you but a maddening chalenge for me:
whats wrong whit this Fortran code:
program NAME
implicit none
real :: i, j(i)
do i=1, 100
j(i)=2*i
write(*,*) i , j(i)
... | 0debug |
How to take arbitrary number of pranthesis from user for add function : add(5)(10)(20) i.e. one should be able to supply arbitrary number of parenthesis.Any help? | 0debug |
void ff_release_unused_pictures(MpegEncContext *s, int remove_current)
{
int i;
for(i=0; i<s->picture_count; i++){
if(s->picture[i].data[0] && !s->picture[i].reference
&& s->picture[i].owner2 == s
&& (remove_current || &s->picture[i] != s->current_picture_ptr)
... | 1threat |
Why go doesn't report "slice bounds out of range" in this case? : <p>Here's the code to reproduce:</p>
<pre><code>package main
import "fmt"
func main() {
var v []int
v = append(v,1)
v = append(v,v[1:]...)
fmt.Println("hi", v)
}
</code></pre>
<p><code>v[1]</code> will report <code>index out of range... | 0debug |
static void lsi_mmio_write(void *opaque, target_phys_addr_t addr,
uint64_t val, unsigned size)
{
LSIState *s = opaque;
lsi_reg_writeb(s, addr & 0xff, val);
}
| 1threat |
Why sorting mixed list does not work : <p>Been scratching my head this one for quite some time:</p>
<pre><code>mixed = [-131.23, 33213, 4454, 566, -33, 465. -377.312, 5.6656]
print(sorted(mixed, key=float))
</code></pre>
<p>Expected output is:</p>
<pre><code>[-131.23, -377.312, -33, 5.6656, 566, 4454, 33213]
</code>... | 0debug |
Is there an array method in ruby for "must include at least one of these but can't include anything else"? : I'm doing an exercise where the input is an array containing multiple n, s, e and w strings denoting directions. I need a way to give a false if anything else is in there, but the array doesn't necessarily have ... | 0debug |
ReGex Help -- extracting the number beside the word : <p>Using PHP, I need to know how to obtain the number that's beside the phrase "Page count:". Here's how the output looks like.</p>
<pre><code>$string = 'Author: Microtest Windows Version 1.1
Creation time: 2016-02-12 02:51:00
Last modified by: Some Name
Last modif... | 0debug |
executeQuery NullPointerException Error : <p>I'm begginer at this that's probably why I'm having this error while I'm trying to do something very simple.</p>
<p>I just want to get the current user ID and use it in other classes. But I'm getting NullPointerException Error for the ExecuteQuery() line.</p>
<p>Let me sha... | 0debug |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.