problem
stringlengths
26
131k
labels
class label
2 classes
static hwaddr ppc_hash64_pteg_search(PowerPCCPU *cpu, hwaddr hash, uint32_t slb_pshift, bool secondary, target_ulong ptem, ppc_hash_pte64_t *pte) { CPUPPCState *env = &cpu->env; int i; uint64_t token; target_ulong pte0, pte...
1threat
Android list view Base adapter getView fire multiple times? : <p><strong>This is my XML</strong> </p> <pre><code>&lt;RelativeLayout android:id="@+id/preview_header" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/socialbottom" android:padding="10...
0debug
uint64_t helper_mullv (uint64_t op1, uint64_t op2) { int64_t res = (int64_t)op1 * (int64_t)op2; if (unlikely((int32_t)res != res)) { arith_excp(env, GETPC(), EXC_M_IOV, 0); } return (int64_t)((int32_t)res); }
1threat
Scala - programming a deck of cards : <p>so i have a task to make a deck of cards using scala. Im good at object oriented programming and so i made this in a few minutes. Now its time for me to learn functional programming. Oh boy.. Where do i begin with this? How do i even construct these cards? I was thinking maybe i...
0debug
jQuery $('#form').submit() doesn't do anything : <p>I have a rather basic form (using the POST method) that I want to submit when the user clicks on a link (outside said form). I also have a submit button in the form, which works perfectly, so it's not a problem with the form per se.</p> <p>Basically, what I have is (...
0debug
Ruby Simple method output : 139/5000 I want to print the table area entirely in one form, the bottom line in the above, but is this method a very simple and simple method? down vote area = find_by_id('SonDakika')`enter code here` p area.all('tr')[0].text`enter code here` p area.all('tr')[1].text`enter code h...
0debug
Send SMS with AWS Javascript SDK : <p>I want to send an SMS with the AWS javascript sdk with a verification code.</p> <pre><code>var AWS = require('aws-sdk'); AWS.config.region = 'us-east-1'; var sns = new AWS.SNS(); var params = { Message: 'this is a test message', MessageStructure: 'string', PhoneNumber: '+12...
0debug
How to trigger a Google Apps Script once an email get in the inbox? : <p>I have created a Google Apps Script that checks if an email has an attachment then send it to another email address.</p> <p>It's working fine, but I would like to create a trigger that would launch the script as soon as a new email arrives in the...
0debug
vu_message_read(VuDev *dev, int conn_fd, VhostUserMsg *vmsg) { char control[CMSG_SPACE(VHOST_MEMORY_MAX_NREGIONS * sizeof(int))] = { }; struct iovec iov = { .iov_base = (char *)vmsg, .iov_len = VHOST_USER_HDR_SIZE, }; struct msghdr msg = { .msg_iov = &iov, .msg_i...
1threat
Removing black background and make transparent from grabcut output in python open cv : <p>I have been trying to remove the black background from the grabcut output using python opencv. </p> <pre><code>import numpy as np import cv2 img = cv2.imread(r'myfile_1.png') mask = np.zeros(img.shape[:2],np.uint8) bgdModel = n...
0debug
Unable to find testhost.dll. Please publish your test project and retry : <p>I have a simple dotnet core class library with a single XUnit test method:</p> <pre><code>TestLib.csproj: &lt;Project Sdk="Microsoft.NET.Sdk"&gt; &lt;PropertyGroup&gt; &lt;TargetFramework&gt;netstandard2.0&lt;/TargetFramework&gt; &lt...
0debug
static void vnc_read_when(VncState *vs, VncReadEvent *func, size_t expecting) { vs->read_handler = func; vs->read_handler_expect = expecting; }
1threat
How to align rows in matplotlib legend with 2 columns : <p>I have an issue where some mathtext formatting is making some labels take up more vertical space than others, which causes them to not line up when placed in two columns in the legend. This is particularly important because the rows are also used to indicate re...
0debug
Typescript and React setting initial state with empty typed array : <p>Say I have the following snippet:</p> <pre><code>interface State { alarms: Alarm[]; } export default class Alarms extends React.Component&lt;{}, State&gt; { state = { alarms: [] }; </code></pre> <p>Since I am trying to set <code>alarms: ...
0debug
Writing HTML's Input Tag's Value To A File using php Script : <p>is there any way to write the values, passed by the user to a file using a php script. i have searched a lot around the web to find the examples for writing string to file using php but what they were doing was not working in scenario. actually they were ...
0debug
Reassign unique_ptr object with make_unique statements - Memory leak? : <p>I don't get what following statement would do (specially second line)?</p> <pre><code>auto buff = std::make_unique&lt;int[]&gt;(128); buff = std::make_unique&lt;int[]&gt;(512); </code></pre> <p>Will the second call to <code>make_unique</code> ...
0debug
int rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt, const uint8_t *buf, int len) { unsigned int ssrc, h; int payload_type, seq, ret; AVStream *st; uint32_t timestamp; int rv= 0; if (!buf) { if(s->st && s->parse_packet) { timestam...
1threat
static inline int64_t get_sector_offset(BlockDriverState *bs, int64_t sector_num, int write) { BDRVVPCState *s = bs->opaque; uint64_t offset = sector_num * 512; uint64_t bitmap_offset, block_offset; uint32_t pagetable_index, pageentry_index; pagetable_index = offset / s->block_size; ...
1threat
How to split a screen into different parts in PHP? : I have 3 strings in PHP which contains a list of test input for a function with two parameters. I want to parse the strings and get the individual parameter values. example: "a,b" => "a", "b" "/"string_param1/", /"string_param2/"" => "string...
0debug
How to group invoices by total amount and line number with SQL server 2008 : I have a table look like this: [enter image description here][1] [1]: http://i.stack.imgur.com/j1YkF.jpg I want to auto fill group invoice number if totord accumulation is about 20,000,000 or count distinct invtid maximum is 16. the group...
0debug
Fix div on scroll : I'm trying to fade in/out and fix the blue div on the left when scrolled relative to the image blocks on the right. http://www.warface.co.uk/#/testing/ pass: squared meta { /*This is the block I'm trying to stick/* background: blue; position: fixed; width: 372px...
0debug
Do I always need to return a value from a redux middleware? : <p>In the examples given in the <a href="http://redux.js.org/docs/advanced/Middleware.html#seven-examples" rel="noreferrer">redux docs</a>, there always seems to be something being returned from middlewares. However, when I call <code>next(action)</code> and...
0debug
serwer linux - Unable to initialize OpenSSL library : I have a problem with run my application on vps server. I have there Ubuntu. On my personal computer I install ubuntu too. On my computer my application runs and work but on server I got this: An unhandled exception occurred at $080C9936 : Exception : Un...
0debug
static av_cold void compute_alpha_vlcs(void) { uint16_t run_code[129], level_code[256]; uint8_t run_bits[129], level_bits[256]; int run, level; for (run = 0; run < 128; run++) { if (!run) { run_code[run] = 0; run_bits[run] = 1; } else if (...
1threat
canvas.mpl_connect in jupyter notebook : <p>I have the following code in test.py:</p> <pre><code>fig = plt.figure() ax = fig.add_subplot(111) ax.plot(np.random.rand(10)) def onclick(event): print('button=%d, x=%d, y=%d, xdata=%f, ydata=%f' % (event.button, event.x, event.y, event.xdata, event.ydata)) c...
0debug
Getting error: Uncaught Syntax Error: Unexpected token : <p>I need to add class to all the links that have "href=login". And i tried to use this javascript</p> <pre><code>jQuery(document).ready(function($){ $(.pageWidth).find('a[href*="/login/"]').addClass('OverlayTrigger');}) </code></pre> <p>Unfortunately, i tried ...
0debug
Error message is (#12) bio field is deprecated for versions v2.8 and higher : <p>I used version 2.0.3.RELEASE of spring-social-facebook and Facebook app api v2.8. I called Facebook login but returned this message. "(#12) bio field is deprecated for versions v2.8 and higher" How can i fix this?</p>
0debug
safari is not play video, how to play aal browser play video : safari browser is not play video, my code below youtuve video is not play, mp4 not play my site http://creativecartels.biz/demo/forget-reg/index.html http://creativecartels.biz/demo/forget-reg/index.html <div class="col-lg-5 col-md-6 col-sm-...
0debug
PostgreSQL regular expression capture group in select : <p>How can the matched regular expression be returned from an SQL select? I tried using <code>REGEXP_EXTRACT</code> with no luck (function not available). What I've done <em>that does work</em> is this:</p> <pre><code>SELECT column ~ '^stuff.*$' FROM table; </cod...
0debug
How to add a delay in Javascript : <p>I need to add a delay to some JavaScript code without importing anything. How do I do it?</p> <p>I need this for a unity project I am working on. It's like Minecraft but better and I need to add block break times. I have had a look on other websites but got nothing.</p> <p>I want...
0debug
static int decode_group3_1d_line(AVCodecContext *avctx, GetBitContext *gb, int pix_left, int *runs) { int mode = 0, run = 0; unsigned int t; for(;;){ t = get_vlc2(gb, ccitt_vlc[mode].table, 9, 2); run += t; if(t < 64){ pix_left -=...
1threat
How can I get pip to list the repositories it's using? : <p>I'm trying to get a codebase running on my machine, and pip isn't finding some of the dependencies. It seems to find them on another machine, so I'd like to see which repos pip is using on the two machines so I can compare.</p> <p>How can I do this?</p>
0debug
How to put a multi-row statement string into a variable? : <p>I want to a store a long string (specifically a SQL query) into a variable, which I'd like to have written on more row for a better readability.</p> <p>I'm using Jupyter notebook on Python 3.5 (Anaconda) if that's important.</p> <p>I've tried:</p> <pre><c...
0debug
Workaround for Chrome 53 printing table header twice on 2nd and later pages? : <p>Users of my website need to be able to print web pages consisting of content on the first printed page followed by a table on the second page. A stripped down version is (jsFiddle at <a href="https://jsfiddle.net/jaydeedub/n3qhvtvx/25/">...
0debug
How to know type of a linker whether it's a static/dynamic in c plus plus : How can we know that which type of linker(static/dynamic) our system is using? Is it decided on type of library(static/dynamic) we have used or is there any other thing?
0debug
SwsContext *getSwsContext(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat, int flags, SwsFilter *srcFilter, SwsFilter *dstFilter){ SwsContext *c; int i; int usesFilter; SwsFilter dummyFilter= {NULL, NULL, NULL, NULL}; #ifdef ARCH_X86 if(gCpuCaps.hasMMX) a...
1threat
¿Como puedo ordenar de manenara adecuada una lista de elementos en python? : Estoy ordenando una lista de elementos que remplace por nuevos, pero al cambiar las letras por un equivalente en numero y despues ordenarlo, pues me corta el ordenamiento y lo hace en partes. for (i) in range(len(unico)): if ...
0debug
static inline void gen_op_eval_fbu(TCGv dst, TCGv src, unsigned int fcc_offset) { gen_mov_reg_FCC0(dst, src, fcc_offset); gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset); tcg_gen_and_tl(dst, dst, cpu_tmp0); }
1threat
How can I change attribute value of Html tag ? : I have this HTML code. <!-- begin snippet: js hide: false console: true babel: false --> <!-- language: lang-html --> <div class="container-fluid"> <div class="block-header"> <h2>SECURITY DASHBOARD</h2> </div>...
0debug
VS2015 pubxml: how to exclude or eliminate the <PublishDatabaseSettings> section : <p>I need to exclude database related settings from the Web Deploy publishing. I tried to delete the section in the pubxml file, but it comes back when I create a deployment package.</p> <p>Is there any way way to exclude database rela...
0debug
void HELPER(cas2w)(CPUM68KState *env, uint32_t regs, uint32_t a1, uint32_t a2) { uint32_t Dc1 = extract32(regs, 9, 3); uint32_t Dc2 = extract32(regs, 6, 3); uint32_t Du1 = extract32(regs, 3, 3); uint32_t Du2 = extract32(regs, 0, 3); int16_t c1 = env->dregs[Dc1]; int16_t c2 = env->dregs[Dc...
1threat
How to add another condition in this functio : so i want to add another condition for another textfield and trying to make this code is more simple func textField(textField: UITextField, shouldChangeCharactersInRange range: NSRange, replacementString string: String) -> Bool { if let text = te...
0debug
php display confirmation message : I need to get confirmation before proceding. My code is: echo "<SCRIPT> confirm('Are you sure you want to continue') </SCRIPT>"; //press ok should keep on processing the code while cancel not. Currently any button pressed continue. How can I validate what button in the confi...
0debug
static int writev_f(BlockBackend *blk, int argc, char **argv) { struct timeval t1, t2; int Cflag = 0, qflag = 0; int c, cnt; char *buf; int64_t offset; int total = 0; int nr_iov; int pattern = 0xcd; QEMUIOVector qiov; while ((c = getopt(argc, argv, "CqP:")) != ...
1threat
Filing with VBA macros form do not valid : I have poor English, sorry :-) I have a macros to fill form on site. Macro work good, all web form get text from excell and it works fine. I get problem after filing form with macro. Web forms do not see text there macro inserted. Web forms need to do action with keybord i...
0debug
static void pc87312_class_init(ObjectClass *klass, void *data) { DeviceClass *dc = DEVICE_CLASS(klass); dc->realize = pc87312_realize; dc->reset = pc87312_reset; dc->vmsd = &vmstate_pc87312; dc->props = pc87312_properties; }
1threat
How to inject Webpack build hash to application code : <p>I'm using Webpack's [hash] for cache busting locale files. But I also need to hard-code the locale file path to load it from browser. Since the file path is altered with [hash], I need to inject this value to get right path.</p> <p>I don't know how can get Webp...
0debug
Check if element contains #shadow-root : <p>Is it possible to see if a Shadow DOM element exists? I'm not too concerned with manipulating it, or even really targeting it per-say. I understand the reasoning of the encapsulation. But I'd like to be able to style other elements in the regular DOM, based on whether or not ...
0debug
Setting state on componentDidMount() : <p>I know that it is an anti-pattern to set state on <code>componentDidMount</code> and a state should be set on <code>componentWillMount</code> but suppose I want to set the length of the number of <code>li</code> tags as a state. In that case, I can't set the state on <code>comp...
0debug
What is the python equivalent of below perl code? : I am trying to capture the result of a command in python. use Capture::Tiny ':all'; my ($stdout, $stderr, $exit_code) = capture { system( "$cmd"); };
0debug
static int mov_write_moov_tag(ByteIOContext *pb, MOVContext *mov) { int pos, i; pos = url_ftell(pb); put_be32(pb, 0); put_tag(pb, "moov"); mov->timescale = globalTimescale; for (i=0; i<MAX_STREAMS; i++) { if(mov->tracks[i].entry <= 0) continue; if(mov->tracks[i].enc...
1threat
C++ multi threaded sever : I'm working on a server that just connects a client and sends back what they type. So far it works well,but I want to make it multi-threaded so I can connect more than clients, so they can "Talk." Can you guys refer me to any source code that I can look over to make some adjustments to my own...
0debug
int ff_mjpeg_find_marker(MJpegDecodeContext *s, const uint8_t **buf_ptr, const uint8_t *buf_end, const uint8_t **unescaped_buf_ptr, int *unescaped_buf_size) { int start_code; start_code = find_marker(buf_ptr, buf_end); av_fa...
1threat
Does Python execute code from the top or bottom of the script : <p>I am working on learning Python and was wondering in what way the scripts are executed what i mean like this if Python runs the code from the beginning of the script or the bottom </p>
0debug
Create React App: using environment variables in index.html : <p>Is there a way to inject environment variables, e.g. <code>REACT_APP_MY_API</code> into the <code>index.html</code> file? </p> <p>According to <a href="https://github.com/facebook/create-react-app/pull/1440" rel="noreferrer">this</a>, it can be done, but...
0debug
Perl list referencing reversing : Folks, I am newbie to perl. And have been working with csv's, json's, list and hashes.</br> **I have written this code, but it is giving me error. I want to use this *$header_copy* in foreach loop.** 1. my @headers=qw/January February March April May June/; ...
0debug
Missing credentials for "PLAIN" nodemailer : <p>I'm trying to use nodemailer in my contact form to receive feedback and send them directly to an email. This is the form below.</p> <pre><code>&lt;form method="post" action="/contact"&gt; &lt;label for="name"&gt;Name:&lt;/label&gt; &lt;input type="text" name=...
0debug
JAVA LOOP FOR GAME : I'm having trouble with my code. For some reason, each time I run the code the " if (guess <1 || guess >10 ) System.out.println ("Your guess needs to be between 1 and 10");" statement is counted as a guessing attempt. The goal is to not have the attempt count if the player is guessing ...
0debug
static ssize_t usbnet_receive(VLANClientState *nc, const uint8_t *buf, size_t size) { USBNetState *s = DO_UPCAST(NICState, nc, nc)->opaque; struct rndis_packet_msg_type *msg; if (is_rndis(s)) { msg = (struct rndis_packet_msg_type *) s->in_buf; if (!s->rndis_state == RNDIS_DATA_INITIA...
1threat
How to check in Java whether the input string is of palindrome in nature or not? : I have a String input as "I LOVE MY COUNTRY INDIA COUNTRY MY LOVE I". This is a perfect palindrome sentence as the word sequence exactly matches from start to middle and end to middle.<br/> I want to create a function to prove this u...
0debug
void aio_context_set_poll_params(AioContext *ctx, int64_t max_ns, int64_t grow, int64_t shrink, Error **errp) { ctx->poll_max_ns = max_ns; ctx->poll_ns = 0; ctx->poll_grow = grow; ctx->poll_shrink = shrink; aio_notify(ctx); }
1threat
void acpi_pm1_evt_write_sts(ACPIREGS *ar, uint16_t val) { uint16_t pm1_sts = acpi_pm1_evt_get_sts(ar, ar->tmr.overflow_time); if (pm1_sts & val & ACPI_BITMASK_TIMER_STATUS) { acpi_pm_tmr_calc_overflow_time(ar); } ar->pm1.evt.sts &= ~val; }
1threat
Task<bool> causes Entity Framework to Hang : <p>When I change the method signature to be Task Entity Framework hangs at SaveChanges. Why would this be happening?</p> <p>This code fails</p> <pre><code>public async Task&lt;bool&gt; SaveAsync(agency agency) { using (var ctx = new AvnEntities()) { ...
0debug
cannot be cast to android.location.LocationListener : Here its my logcat 12-01 14:53:24.164 17910-17910/com.swetha.pc.barcoderead E/AndroidRuntime: FATAL EXCEPTION: main Process: com.swetha.pc.barcoderead, PID: 17910 ...
0debug
change filename : <p>I need some help in renaming a large amount of files I am using bash pretty cutting _Filestore and everything that ends after key and crt in files. Thx for your help</p> <hr> <p><strong>Current File</strong></p> <p>_Filestore.dev.orange.key_12345_1</p> <p>_Filestore.dev.orange.crt_57397_1</p> ...
0debug
Php fatal error- how to include class in index.php : I am having problem with my site. PHP Fatal error: Class 'innovation_ruby_util' not found in D:\inetpub\vhosts\blacklisthackers.com\httpdocs\wp-content\themes\innovation\index.php on line 7 Please help me adding classes in this code below 1. <?php /** *...
0debug
Why big websites don't prefer localstorage over cookie? : <p>I'd like to ask why big players like facebook, google still uses cookies if localstorage is much better and secure for same.</p>
0debug
I wanna use url's data in method : I wanna use url's data in method.Now urls.py is from django.urls import path from . import views urlpatterns = [ path('data/<int:id>', views.data, name='data'), ] I wrote in views.py @csrf_exempt def data(request,<int:id>): ...
0debug
Why we can't put null key in linkedHashMap in java : <p>We can put single null key in hashMap. but in linkedHashMap we can't pull null key. what is the reason behind this. </p>
0debug
void DBDMA_register_channel(void *dbdma, int nchan, qemu_irq irq, DBDMA_rw rw, DBDMA_flush flush, void *opaque) { DBDMAState *s = dbdma; DBDMA_channel *ch = &s->channels[nchan]; DBDMA_DPRINTF("DBDMA_register_channel 0x%x\n", nchan); ch->...
1threat
Change form fields value inside controller and then save it to db in Symfony : I am working on Symfony and i have got a problem.Which is as follows:- ***OrderAdminController:-*** <?php namespace AppBundle\Controller; use Symfony\Component\HttpFoundation\Request; use Sonata\AdminBundle\Con...
0debug
How to change the position of the object when the window size is changed? : <p>As in the title. I would like objects moving on the board to change position propositionally to change the size of the window. How to do it?</p>
0debug
static int flac_write_trailer(struct AVFormatContext *s) { ByteIOContext *pb = s->pb; uint8_t *streaminfo = s->streams[0]->codec->extradata; int len = s->streams[0]->codec->extradata_size; int64_t file_size; if (streaminfo && len > 0 && !url_is_streamed(s->pb)) { file_size = url_fte...
1threat
static int dct_quantize_c(MpegEncContext *s, DCTELEM *block, int n, int qscale) { int i, j, level, last_non_zero, q; const int *qmat; int minLevel, maxLevel; if(s->avctx!=NULL && s->avctx->codec->id==CODEC_ID_MPEG4){ minLevel= -2048; ...
1threat
static int process_cc608(CCaptionSubContext *ctx, int64_t pts, uint8_t hi, uint8_t lo) { int ret = 0; #define COR3(var, with1, with2, with3) ( (var) == (with1) || (var) == (with2) || (var) == (with3) ) if ( hi == ctx->prev_cmd[0] && lo == ctx->prev_cmd[1]) { } else if ( (hi == 0x10 && (lo >= 0x...
1threat
void pci_bus_get_w64_range(PCIBus *bus, Range *range) { range->begin = range->end = 0; pci_for_each_device_under_bus(bus, pci_dev_get_w64, range); }
1threat
static void cirrus_bitblt_cputovideo_next(CirrusVGAState * s) { int copy_count; uint8_t *end_ptr; if (s->cirrus_srccounter > 0) { if (s->cirrus_blt_mode & CIRRUS_BLTMODE_PATTERNCOPY) { cirrus_bitblt_common_patterncopy(s, s->cirrus_bltbuf); the_end: s->cirrus...
1threat
Android Permission 6.0 : Hi guys i just want to know on how can u have a listener for this one like i know android have onRequestPermissionsResult but the thing is if i changed it from the application information and manually changed the permission from there thats where my problem lies because i dont have any callback...
0debug
static void prom_set(uint32_t* prom_buf, int index, const char *string, ...) { va_list ap; int32_t table_addr; if (index >= ENVP_NB_ENTRIES) return; if (string == NULL) { prom_buf[index] = 0; return; } table_addr = sizeof(int32_t) * ENVP_NB_ENTRIES + index...
1threat
static void allocate_system_memory_nonnuma(MemoryRegion *mr, Object *owner, const char *name, uint64_t ram_size) { if (mem_path) { #ifdef __linux__ Error *err = NULL; memory_region_init_ram_from_file(mr, own...
1threat
Convert Date to DateTime using Joda : <p>Is there a way to convert a date in the format "YYYY-MM-dd" to "YYYY-MM-dd HH:mm:ss" using Joda?</p> <p>Eg: "2016-01-21" to "2016-01-21 00:00:00"</p>
0debug
This is my code for a simple java game. How can I display the letters already guessed so they cannot guess the same letter twice. : //import java.util; import java.util.Scanner; public class HangmanJava { public static void main(String[] args) //creates an array { Strin...
0debug
static void coroutine_fn add_aio_request(BDRVSheepdogState *s, AIOReq *aio_req, struct iovec *iov, int niov, bool create, enum AIOCBState aiocb_type) { int nr_copies = s->inode.nr_copies; SheepdogObjReq hdr; unsigned int wlen = 0; int ret; ...
1threat
static Rom *find_rom(target_phys_addr_t addr) { Rom *rom; QTAILQ_FOREACH(rom, &roms, next) { if (rom->fw_file) { continue; } if (rom->addr > addr) { continue; } if (rom->addr + rom->romsize < addr) { continue; } ...
1threat
function from Java to R : The java code that im having is completely complex for me to translate to R. Can anyone help to solve convert to R from this java codes, because it is my reference to learn. public static void enumerate(int n) { int[] a = new int[n]; enumerate(a, 0); } ...
0debug
int nbd_receive_negotiate(QIOChannel *ioc, const char *name, uint16_t *flags, QCryptoTLSCreds *tlscreds, const char *hostname, QIOChannel **outioc, off_t *size, Error **errp) { char buf[256]; uint64_t magic, s; int rc; ...
1threat
Data type mismatch in criteria expression. i can find the solution : Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim con As New OleDb.OleDbConnection Dim str As String = "Provider=Microsoft.ACE.OLEDB.12.0; Data Source=..\Visito...
0debug
How to use Blob URL, MediaSource or other methods to play concatenated Blobs of media fragments? : <p>Am attempting to implement, for lack of a different description, an offline media context.</p> <p>The concept is to create 1 second <code>Blob</code>s of recorded media, with the ability to </p> <ol> <li>Play the 1 s...
0debug
void xen_cmos_set_s3_resume(void *opaque, int irq, int level) { pc_cmos_set_s3_resume(opaque, irq, level); if (level) { xc_set_hvm_param(xen_xc, xen_domid, HVM_PARAM_ACPI_S_STATE, 3); } }
1threat
How can i express my code using functions? : How can i express my code by using functions, i have tried different solutions but still cant figure out how, any tip would help. It is a simple maze game that i have in my school, so it is a learning project and i dont need necessary the solution rather than any tip how to....
0debug
static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOVAtom atom) { AVStream *st; MOVStreamContext *sc; int ret; st = av_new_stream(c->fc, c->fc->nb_streams); if (!st) return AVERROR(ENOMEM); sc = av_mallocz(sizeof(MOVStreamContext)); if (!sc) return AVERROR(ENOMEM); ...
1threat
Is it possible to do this? : Admittedly im not a great coder ------------------------------------ So Im making a project for school and Its a dice game, This snippet of my code is like a catch 22 I need to define a variable otherwise it flags, so I do this but then every time the button is run it changes the val...
0debug
Using time module in Python : <p>I have a text file named as 'time' and want to save the current date and time from the computer in the text file every-time the player plays the game(Snake and ladder). Please help me to figure it. I have tried making a function for it and add the current date in the file and append th...
0debug
tensorflow neural net with continuous / floating point output? : <p>I'm trying to create a simple neural net in tensorflow that learns some simple relationship between inputs and outputs (for example, y=-x) where the inputs and outputs are floating point values (meaning, no softmax used on the output).</p> <p>I feel l...
0debug
static int read_frame_internal(AVFormatContext *s, AVPacket *pkt) { AVStream *st; int len, ret, i; av_init_packet(pkt); for(;;) { st = s->cur_st; if (st) { if (!st->need_parsing || !st->parser) { *pkt ...
1threat
static void test_visitor_out_enum_errors(TestOutputVisitorData *data, const void *unused) { EnumOne i, bad_values[] = { ENUM_ONE__MAX, -1 }; Error *err; for (i = 0; i < ARRAY_SIZE(bad_values) ; i++) { err = NULL; visit_type_EnumOne(data->ov, ...
1threat
.Net Core tag helper intellisense and color coding not working : <p>I am having issues with .NET core and tag helpers. The color coding and the intellisense are not displaying or being registered when I type in asp-for. I've tried creating a new solution in a separate instance, verified that the intellisense works, and...
0debug
How to use cronjobs with python email script? : <p>I am new to this, but am trying to learn. With a cronjob does it go in a complete other file or in the script its self? Here is my code if that helps.</p> <p><a href="https://i.stack.imgur.com/sXS7d.jpg" rel="nofollow noreferrer">My code</a></p> <p>I couldn't put in ...
0debug
void bdrv_get_backing_filename(BlockDriverState *bs, char *filename, int filename_size) { if (!bs->backing_hd) { pstrcpy(filename, filename_size, ""); } else { pstrcpy(filename, filename_size, bs->backing_file); } }
1threat
How did Neil Patel make the text on http://www.quicksprout.com/pro dynamically insert the cirt name into the HTML? : <p>This is an awesome way to appeal to folks from the city that they are browsing from. Is this some kind of JS technique? Would love a link to an example or if it already exists on GitHub? Sorry for ...
0debug