problem
stringlengths
26
131k
labels
class label
2 classes
C language how to print to file without overwriting it in a recurssive function? : <p>I have multiple functions that are recursive. They print multiple times the results. I need to create a file that contains all those outputs. The functions that print are:void print_inorder,void print_preorder, void print pre_order;</...
0debug
Why does console tell me that .filter is not a function? : <pre><code>var str = "I am a string."; console.log(str.split('')); var fil = function(val){ return val !== "a"; }; console.log(str.filter(fil)); </code></pre> <p>When I run this, it says the str.filter is not a function.</p>
0debug
int xtensa_get_physical_addr(CPUXtensaState *env, bool update_tlb, uint32_t vaddr, int is_write, int mmu_idx, uint32_t *paddr, uint32_t *page_size, unsigned *access) { if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU)) { return get_physical_addr_mmu(env, update_tlb, ...
1threat
Need help compressing .txt files in python 3.4.3 and not losing data whilst compressing them : I'm trying to compress my .txt file which are being made within another code but every time i compress them they go into a winrar file and lose all there data within them so all the text goes. This is the code i'm using: ...
0debug
Flask-SQLAlchemy import error. "Imported but unused" : <p>I used sqlacodegen to extract the a .py file containing classes of my db tables. I am using pythonanywhere. However for all the imports it is showing that "imported but unused".</p> <p>You can see though column has been used, it shows the sqlalchemy.Column impo...
0debug
Javascript to Group Array of Object into combination of two values : <pre><code>var data=[ {custType:1,code:'savings',efDate:'2/3/19',exDate'2/3/19'}, {custType:1,code:'savings',efDate:'2/3/19',exDate:'2/3/19'}, {custType:1,code:'savings',efDate:'2/3/19',exDate:'2/3/19'}, {custType:1,code:'current',efDate:'2/3/19',exDa...
0debug
How do I make a basic c++ calculator calculate decimals : <p>I have a decent grasp with c++, and I made a basic calculator that can add, subtract, multiply, and divide. but I am having a hard time trying to get it to calculate decimals. Help please???</p>
0debug
static inline int mdec_decode_block_intra(MDECContext *a, int16_t *block, int n) { int level, diff, i, j, run; int component; RLTable *rl = &ff_rl_mpeg1; uint8_t * const scantable = a->scantable.permutated; const uint16_t *quant_matrix = ff_mpeg1_default_intra_matrix; const int qscale = a...
1threat
Enable logging in docker mysql container : <p>I'm trying to get familiar with the docker ecosystem and tried to setup a mysql database container. With <code>docker-compose</code> this looks like:</p> <pre><code>version: '2' services: db: image: mysql:5.6.33@sha256:31ad2efd094a1336ef1f8efaf40b88a5019778e7d9b8a857...
0debug
int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size) { int ret = -ENOSYS; #ifdef KVM_CAP_COALESCED_MMIO KVMState *s = kvm_state; if (s->coalesced_mmio) { struct kvm_coalesced_mmio_zone zone; zone.addr = start; zone.size = size; ret = kvm_vm_i...
1threat
How to check if an index exists in elasticsearch using a python script and perform exception handling over it? : <p>How do I check whether an index exists or not using a python query?</p> <p>I'm passing my index as a variable assigned outside the query as :-</p> <pre><code> i=int(datetime.datetime.now().strftime('%d'...
0debug
PHP: Getting values by date : <p>Im new In PHP!.</p> <p>I have an array that contains dates and vlaues. How do i get all values of specific date?. EXp: I would like to get all values from year 2015. If someone Knows can guide me.</p>
0debug
Multiple conditions in ngClass - Angular 4 : <p>How to use multiple conditions for ngClass? Example: </p> <pre><code>&lt;section [ngClass]="[menu1 ? 'class1' : '' || menu2 ? 'class1' : '' || (something &amp;&amp; (menu1 || menu2)) ? 'class2' : '']"&gt; </code></pre> <p>something like this. I got same class for 2 menu...
0debug
static void visit_type_TestStruct(Visitor *v, TestStruct **obj, const char *name, Error **errp) { Error *err = NULL; visit_start_struct(v, (void **)obj, "TestStruct", name, sizeof(TestStruct), &err); if (err) { goto out; } ...
1threat
Are asserts disabled in release build? : <p>Are asserts disabled in 'release' build?</p> <p>How optional flags like <code>-O0</code>,<code>-O3</code>,<code>-g</code> of <code>g++</code> affects it's behaviour?</p>
0debug
Using array.push() inside my own array method gives error (JavaScript) : I have this code example: function s () { this.func = []; this.func.addF = function (str) { this.func.push(str); } } When I create an Instance of that object: var a = new s (); a.func....
0debug
Visual Studio 2017 only has offline Nuget Packages for .NET Core 2.x. How to get online packages? : <p>I want to get NuGet Packages from Nuget online, but Visual Studio is only giving me 'Microsoft Visual Studio Offline Packages' as an option. </p> <p><a href="https://i.stack.imgur.com/qGEWY.jpg" rel="noreferrer"><img...
0debug
static void virtio_ccw_stop_ioeventfd(VirtioCcwDevice *dev) { VirtIODevice *vdev; int n, r; if (!dev->ioeventfd_started) { return; } vdev = virtio_bus_get_device(&dev->bus); for (n = 0; n < VIRTIO_PCI_QUEUE_MAX; n++) { if (!virtio_queue_get_num(vdev, n)) { ...
1threat
Need to edit google script to copy a row and move to another sheet : Right now this script is erasing the data in the row and deleting the row after moving the row to the other sheet. The idea is to keep the data on the row and just copy over the row when the commissions have been verified. The companies and products o...
0debug
document.getElementById('input').innerHTML = user_input;
1threat
static int get_uint64_as_uint32(QEMUFile *f, void *pv, size_t size, VMStateField *field) { uint64_t *v = pv; *v = qemu_get_be32(f); return 0; }
1threat
static void reset_used_window(DisasContext *dc) { dc->used_window = 0; }
1threat
How to code in python a system $dF/dt=A$ with $F$ and $A$ matrices? : I'd like to code in python a coupled system of differential equations like : $dF_{ij}/dt=A_{ij}$ where $A_{ij}$ is a function of the matrix $F$. Meaning a system of 1st order differential equations. For the same system but with vectors : ...
0debug
Spiting a line to object in java : i am reading a file.i need to convert each value to java object. ` String sCurrentLine; BufferedReader br = null; int pointer = 1; try { br = new BufferedReader(new FileReader("src/main/java/com/ali/trillium/p0f.log")); } catch (...
0debug
Could anyone give suggestion on where to start learning Python? : <p>I'm a beginner, and looking to learn the python language. If you have any suggestions on where I should start it would be nice if you would leave a comment.</p> <p>Thanks.</p>
0debug
static void find_best_state(uint8_t best_state[256][256], const uint8_t one_state[256]) { int i, j, k, m; double l2tab[256]; for (i = 1; i < 256; i++) l2tab[i] = log2(i / 256.0); for (i = 0; i < 256; i++) { double best_len[256]; double p =...
1threat
Haskell - Tranform leters into numbers : i'm very new to haskell and would like to make a program to turn characters in a string into numbers. Something like this: A = 06 B = 07 C = 08 ... Z So for example: Input: Hi Output: 14 15 Does anyone know how I can go about doing this? ...
0debug
static int kvm_get_debugregs(CPUState *env) { #ifdef KVM_CAP_DEBUGREGS struct kvm_debugregs dbgregs; int i, ret; if (!kvm_has_debugregs()) { return 0; } ret = kvm_vcpu_ioctl(env, KVM_GET_DEBUGREGS, &dbgregs); if (ret < 0) { return ret; } for (i = 0; i < 4; ...
1threat
how to parse the JSON data start with "/{}" in android : I want to parse the JSON data which response starts with the slash. I am using retrofit for parsing the data. thanks in advance. /{ "data": [ { "id": "1", "text": "Lorem ipsum dolor sit a...
0debug
How to group an object in Javascript? : <p>I have two arrays:</p> <pre><code>let props = ['a', 'b', 'c', 'd', 'e']; let values = ['a', 'f', 'k', 'd', 'l']; </code></pre> <p>I need to get an object like:</p> <pre><code>{ "a": [ { "b": "f", "c": "k" } ], "d": [ ...
0debug
How to get Current Location with SwiftUI? : <p>Trying to get current location with using swiftUI. Below code, couldn't initialize with didUpdateLocations delegate. </p> <pre><code>class GetLocation : BindableObject { var didChange = PassthroughSubject&lt;GetLocation,Never&gt;() var location : CLLocation { ...
0debug
START_TEST(invalid_array_comma) { QObject *obj = qobject_from_json("[32,}"); fail_unless(obj == NULL); }
1threat
See which domains use a Google Maps API key? : <p>Is there any way to check which domains/websites use a specific API like "Google Maps Embed API" in console.cloud.google.com?</p> <p>It's a project with multiple keys which don't indicate where they were used.</p> <p>Background: There is a key used on multiple sites a...
0debug
static int nbd_co_writev(BlockDriverState *bs, int64_t sector_num, int nb_sectors, QEMUIOVector *qiov) { BDRVNBDState *s = bs->opaque; return nbd_client_session_co_writev(&s->client, sector_num, nb_sectors, qiov); }
1threat
MigrationState *migrate_get_current(void) { static bool once; static MigrationState current_migration = { .state = MIGRATION_STATUS_NONE, .xbzrle_cache_size = DEFAULT_MIGRATE_CACHE_SIZE, .mbps = -1, .parameters = { .compress_level = DEFAULT_MIGRATE_COMPRESS_LE...
1threat
Camunda - Configurar Service task como external task : **Camunda** Como configurar uma service task como external task?
0debug
How to delete text between a word and a Cell marker : [enter image description here][1] [1]: https://i.stack.imgur.com/nPAjA.png How Can I delete the text between <\de> and cell marker throughout my word document?.
0debug
How to download and install Microsoft's Visual Studio C/C++ compiler without Visual Studio : <p>I'm trying to run c code on my windows. (I had been running it so far on repl.it). But it is proving harder than it is supposed to be. MinGW is not installing due to some reason. And I've spent a lot of time trying to run it...
0debug
r: convert a string to date : <p>I have a string like that:</p> <pre><code>201601 201603 201604 201606 201501 </code></pre> <p>And I'd like to convert to Date, like so:</p> <pre><code>2016-01 2016-03 2016-04 2016-06 2015-01 </code></pre> <p>I have tried:<code>df$month_key=as.Date(df$month_key,format="YYYYmm")</...
0debug
how to create an UIImage by pdf file in Xcode : [use the pdf as icon][1] [1]: http://i.stack.imgur.com/N3OVK.png when i want to use the pdf icon in project,i do like this [UIImage imageNamed:@"icon_file_open"]; but is that ok? [UIImage imageNamed:] will always retain the image in memory,is there an...
0debug
Zip single file : <p>I am trying to zip a single file in python. For whatever reason, I'm having a hard time getting down the syntax. What I am trying to do is keep the original file and create a new zipped file of the original (like what a Mac or Windows would do if you archive a file).</p> <p>Here is what I have so ...
0debug
checkbox in MVC controller to convert into bit : I have a scenario in MVC where in One table from my DB row contains Active(bit) how to update the row in MVC using Checkbox. If it's checked then the value must be 1 if not it must take 0 how to do these any one please help here. Please help me out by model view and co...
0debug
Does the "new" Facebook Marketplace have a listing API? : <p>Facebook recently launched a slightly better, and certainly more prominent, Marketplace to sell goods locally. Is there an API for adding listings or does anyone know if there will be an API?</p>
0debug
static void block_dirty_bitmap_add_prepare(BlkActionState *common, Error **errp) { Error *local_err = NULL; BlockDirtyBitmapAdd *action; BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, common, commo...
1threat
Getter-Setter method and Array List : <p>I have a class NewClass2 and a class with main method. Basically what I want to to is I wanna save a book title, release date, number of pages and the isbn number in an ArrayList and then print the Info.</p> <pre><code>public class NewClass2 { int pages; String released...
0debug
StrongARMState *sa1110_init(MemoryRegion *sysmem, unsigned int sdram_size, const char *rev) { StrongARMState *s; int i; s = g_new0(StrongARMState, 1); if (!rev) { rev = "sa1110-b5"; } if (strncmp(rev, "sa1110", 6)) { error_report("Machi...
1threat
On Android Studio, the inspection "Unused resources" doesn't work for all modules on my project : <p>I run it this way "Menu -> Analyze -> Run Inspection by Name -> Unused resources" and I select entire project but it doesn't find any unused resources outside my main App Module. So I then run it for individual modules ...
0debug
Explain Why StackOverFlow error raised in this Program..? : <p>I was practicing java, and i wrote this program and once i run it, this raise an error StackOverFlow Error why ?</p> <pre><code>public class MyClass { MyClass s=new MyClass(); public static void main(String args[]) { MyClass s1=new MyCl...
0debug
static uint64_t get_cluster_offset(BlockDriverState *bs, uint64_t offset, int allocate, int compressed_size, int n_start, int n_end) { BDRVQcowState *s = bs->opaque; int min_index, i, j, l1_index, l2_i...
1threat
JAVA: How do I determine if the input is a palindrome? : <p>Please use the method below. </p> <p>I am trying to get rid of all white spaces, punctuations and make everything lowercase. Then I want to see whether the string is a palindrome (same when read from the front and back.</p> <p>I can't figure it out.</p> <pr...
0debug
Docker ERROR: Error processing tar file(exit status 1): unexpected EOF : <p>I needed space and executed: <code>docker rmi $(docker images -f "dangling=true" -q)</code></p> <p>Since then I can't with docker-compose: <code>docker-compose build</code>, I get the error: <code>ERROR: Error processing tar file(exit status 1...
0debug
Front end "micro services" with Angular 2 : <p>I'm looking for a solution for a bit of an odd situation. Let's take a quick look at the angular2-seed project so I can better explain: <a href="https://github.com/mgechev/angular2-seed/tree/master/src/client/app" rel="noreferrer">https://github.com/mgechev/angular2-seed/t...
0debug
insert the values through a stored procedure in oracle : i have the following code in sql server,kindly let me know whats the appropriate code of inserting values through a stored procedure in oracle: CREATE PROCEDURE INSERTPRODUCTRECORD ( @PNAME VARCHAR(5), @CATEGORY VARCHAR(50), @PRICE I...
0debug
Run function in input if it is empty? : <p>Is there anyway I can check if an input is empty using javascript and then run a function? I'd like it to be in the input itself if possible. </p> <p>There is <code>onChange</code> so is there an <code>ifEmpty</code> lol?</p>
0debug
static int ffm_read_header(AVFormatContext *s, AVFormatParameters *ap) { FFMContext *ffm = s->priv_data; AVStream *st; ByteIOContext *pb = s->pb; AVCodecContext *codec; int i, nb_streams; uint32_t tag; tag = get_le32(pb); if (tag != MKTAG('F', 'F', 'M', '1')) go...
1threat
jquery, i want with twoo thumbs buttons if i clic one other's change and vice versa...? : i try to do some thumb button, if i clic one other's is déclic, and vice versa, but if i clic, he other's stay cliqued, and vice versa,and he stay together cliqued and i can uncli, however, i try to remove or add class on toggle, ...
0debug
static unsigned int dec_move_pr(DisasContext *dc) { TCGv t0; DIS(fprintf (logfile, "move $p%u, $r%u\n", dc->op1, dc->op2)); cris_cc_mask(dc, 0); if (dc->op2 == PR_CCS) cris_evaluate_flags(dc); t0 = tcg_temp_new(TCG_TYPE_TL); t_gen_mov_TN_preg(t0, dc->op2); cris_alu(dc, CC_OP_MOVE, cpu_R[dc->op...
1threat
Changing indentation settings in the Spyder editor for Python : <p>I am using the Spyder editor for Python. I need to change the indentation setting (e.g., let "tab" mean "4 spaces").</p> <p>How do I accomplish this?</p>
0debug
How to ask print questions statement? : What is questions written in python is it possible to get print **statement**? > print statement
0debug
int i2c_send(I2CBus *bus, uint8_t data) { I2CSlaveClass *sc; I2CNode *node; int ret = 0; QLIST_FOREACH(node, &bus->current_devs, next) { sc = I2C_SLAVE_GET_CLASS(node->elt); if (sc->send) { ret = ret || sc->send(node->elt, data); } else { ret =...
1threat
static int dshow_read_header(AVFormatContext *avctx) { struct dshow_ctx *ctx = avctx->priv_data; IGraphBuilder *graph = NULL; ICreateDevEnum *devenum = NULL; IMediaControl *control = NULL; int ret = AVERROR(EIO); int r; if (!ctx->list_devices && !parse_device_name(avctx)) { ...
1threat
static int tiff_unpack_strip(TiffContext *s, uint8_t *dst, int stride, const uint8_t *src, int size, int lines) { int c, line, pixels, code, ret; const uint8_t *ssrc = src; int width = ((s->width * s->bpp) + 7) >> 3; if (size <= 0) return AVERROR_I...
1threat
Value to be from a selection of 3 and not null : I'm using oracle to create a table called module: Module(ModuleId, ModuleTitle, ModuleLeader, Credits, CourseworkPercentage, ExamPercentage) ModuleId being the PK. A constraint/check which i have to implement is for 'Credits' to be not null and it must be equal ...
0debug
static void migrate_fd_cleanup(void *opaque) { MigrationState *s = opaque; qemu_bh_delete(s->cleanup_bh); s->cleanup_bh = NULL; if (s->file) { trace_migrate_fd_cleanup(); qemu_mutex_unlock_iothread(); qemu_thread_join(&s->thread); qemu_mutex_lock_iothread(); ...
1threat
In python argparse, is there a use case for nargs=1? : <p>It seems as though it would always make more sense to use the default action of <code>store</code> without specifying <code>nargs</code> so the output is always as expected, instead of sometimes being a <code>list</code> and sometimes not. I'm just curious if I ...
0debug
i am building an ios app in swift and when i enter a number this happens : on this line of code i get this error if diceRoll == userGuessTextField.text { 2016-02-04 18:38:34.756 How Many Fingers[2972:158461] Can't find keyplane that supports type 4 for keyboard iPhone-PortraitChoco-NumberPad; using 1336863583_...
0debug
static int vmdk_init_tables(BlockDriverState *bs, VmdkExtent *extent, Error **errp) { int ret; int l1_size, i; l1_size = extent->l1_size * sizeof(uint32_t); extent->l1_table = g_try_malloc(l1_size); if (l1_size && extent->l1_table == NULL) { return...
1threat
static int get_qPy_pred(HEVCContext *s, int xC, int yC, int xBase, int yBase, int log2_cb_size) { HEVCLocalContext *lc = s->HEVClc; int ctb_size_mask = (1 << s->sps->log2_ctb_size) - 1; int MinCuQpDeltaSizeMask = (1 << (s->sps->log2_ctb_size - ...
1threat
Maintaining Qt Application as Module and Library : <p>How to Maintain 500 qt ui widget form in a single Application. Is it Possible to separate as form application as Module or library. If it is possible, how to links each modules.Is it possible to create separate folders for each modules.</p>
0debug
Null Pointer Exception when adding GroundOverlay to gMap : <p>i'm working on a project for indoor navigation and need to add a groundOverlay with the floorplan of the building. I've followed the guidelines on the Documentation from Google dev site. But its giving me NullPointerException when i try to add the overlay to...
0debug
java class extends not working properly : Am playing a bit around with java and am learning step by step. To not write my whole life story, here it comes. I am making a text game with some stats, a player, enemies, etc. For this I am using classes. Lately I came accross the "extends" function and am trying to implem...
0debug
restore_sigcontext(CPUM68KState *env, struct target_sigcontext *sc, int *pd0) { int temp; __get_user(env->aregs[7], &sc->sc_usp); __get_user(env->dregs[1], &sc->sc_d1); __get_user(env->aregs[0], &sc->sc_a0); __get_user(env->aregs[1], &sc->sc_a1); __get_user(env->pc, &sc->sc_pc); __...
1threat
How is Complex number assignment from a double enabled? : <p>The Complex structure in System.Numerics allows assignment like this</p> <pre><code>Complex c = 3.72; </code></pre> <p>If I wanted to make my own Complex struct, how would I program this capability? I like it better than using constructors as in</p> <pre><...
0debug
This is the python code and it gives unexpected answer : <pre><code>school = 'Massachusetts Institute of Technology' numVowels = 0 numCons = 0 for char in school: if char == 'a' or char == 'e' or char == 'i' \ or char == 'o' or char == 'u': numVowels += 1 elif char == 'o' or char == 'M': print char else: ...
0debug
What alternatives are there to Hibernate Validator's @SafeHtml to validate Strings? : <p>As stated in the JavaDocs, it will be removed in a future release. Is there any alternative library which works similarly via annotations?</p>
0debug
int kvm_arch_on_sigbus_vcpu(CPUState *env, int code, void *addr) { #ifdef KVM_CAP_MCE void *vaddr; ram_addr_t ram_addr; target_phys_addr_t paddr; if ((env->mcg_cap & MCG_SER_P) && addr && (code == BUS_MCEERR_AR || code == BUS_MCEERR_AO)) { vaddr = (void *)addr; ...
1threat
Cannot infer groovy classpath when using gradle : <p>I have a trivial Gradle project:</p> <pre><code>apply plugin: 'groovy' apply plugin: 'application' mainClassName = 'HelloWorld' </code></pre> <p>With one Groovy source file in <code>src/main/groovy</code>:</p> <pre><code>public class HelloWorld { public stati...
0debug
match_insn_m68k (bfd_vma memaddr, disassemble_info * info, const struct m68k_opcode * best, struct private * priv) { unsigned char *save_p; unsigned char *p; const char *d; bfd_byte *buffer = priv->the_buffer; fprintf_ftype save_printer = info->fprintf_func; void (* save_print_address) ...
1threat
How to classify so similar samples? : I'm trying to do a binary classification task on a set of sentences which are so similar to each other. My problem is I'm not sure how to deal with this problem with such similarity between samples. Here are some of my questions: (1). Which classification technique will be more ...
0debug
When is `new Error()` better than `Error()`? : <p>The ES5 language spec <a href="http://www.ecma-international.org/ecma-262/5.1/#sec-15.11.1" rel="noreferrer">clearly states</a> that <code>Error(foo)</code> does the same thing as <code>new Error(foo)</code>.</p> <p>But I notice that in the wild, the longer <code>new E...
0debug
static int parse_filename(char *filename, char **representation_id, char **initialization_pattern, char **media_pattern) { char *underscore_pos = NULL; char *period_pos = NULL; char *temp_pos = NULL; char *filename_str = av_strdup(filename); if (!filename_str) return ...
1threat
static int xvid_ff_2pass_after(struct xvid_context *ref, xvid_plg_data_t *param) { char *log = ref->twopassbuffer; const char *frame_types = " ipbs"; char frame_type; if( log == NULL ) return XVID_ERR_FAIL; if( param->type < 5 && param->...
1threat
void vnc_display_close(DisplayState *ds) { VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; if (!vs) return; if (vs->display) { qemu_free(vs->display); vs->display = NULL; } if (vs->lsock != -1) { qemu_set_fd_handler2(vs->lsock, NULL, NULL, NULL, NULL); close(vs...
1threat
Opening & Reading Hex File in C : I have a Hex file whose contents are like below: 0x14000800 0x52100000 0xD503201F 0xD503201F 0x0030A308 0x0032D138 0x00000000 0x00000000 0x00000000 0x00000000 I need to open and read this file. Below is my code: #include <stdio.h> #include <stdlib.h> i...
0debug
Why do we await next when using koa routers? : <p>Why do we do this</p> <pre><code>router.get('/data', async (ctx, next) =&gt; { ctx.body = dummyjson.parse(data); await next(); }); router.get('/data/:x', async (ctx, next) =&gt; { const newData = dataRepeat.replace('%(x)', ctx.params.x); ctx.body = dummyjson.p...
0debug
def Sum(N): SumOfPrimeDivisors = [0]*(N + 1) for i in range(2,N + 1) : if (SumOfPrimeDivisors[i] == 0) : for j in range(i,N + 1,i) : SumOfPrimeDivisors[j] += i return SumOfPrimeDivisors[N]
0debug
How it works a nonetype function? : In order to create an updatescore function for a game I am developing a function that returns nonetype. I was serching some information about this kind of functions in Python 3 and as far as I know what I supossed to do is try to create it without printing because is a nonetype funct...
0debug
Pug (formerly Jade) Variables Not Working (Interpolating) Correctly Inside Anchor Href : <p>I'm playing around with Node and Express and I'm using the Pug (formerly Jade) templating engine to render my html. Everything has been working fine up until I started trying to inject variables into the <code>href</code> of my ...
0debug
Execute .sql file in python : Hello everyone I have this sql file Student.sql Select * from student where age > 18; Delet student_ name , studen_id if age > 18 ; Commit; Using cx_oracle pip Any help
0debug
void spapr_events_init(sPAPREnvironment *spapr) { spapr->epow_irq = xics_alloc(spapr->icp, 0, 0, false); spapr->epow_notifier.notify = spapr_powerdown_req; qemu_register_powerdown_notifier(&spapr->epow_notifier); spapr_rtas_register(RTAS_CHECK_EXCEPTION, "check-exception", ...
1threat
For Each Loop in a Set Java : so my question is as follows. Lets say I have a HashTable/HashMap with the following {4:1, 3:56, 4:3, 4:5, 9:89, etc.} I then make the keys of this Map into a keyset by calling map.keySet(). How can I loop through that set to only output the values associated with the key of 4? I ...
0debug
Webpage scrolls when keyboard pops up : <p>I've noticed that when I am on my ipad or iphone and I open up the chatbox on my site and start to type, the webpage behind the chatbox will scroll back to the top of the site and not stay where I scrolled down. My website is www.leormanelis.com. Does not seem to happen on and...
0debug
int kvm_s390_set_mem_limit(KVMState *s, uint64_t new_limit, uint64_t *hw_limit) { int rc; struct kvm_device_attr attr = { .group = KVM_S390_VM_MEM_CTRL, .attr = KVM_S390_VM_MEM_LIMIT_SIZE, .addr = (uint64_t) &new_limit, }; if (!kvm_s390_supports_mem_limit(s)) { ...
1threat
What is the difference between NestedScrollView and CustomScrollView? : <p>I having hard to understand the difference between NestedScrollView and CustomScrollView?</p>
0debug
QuickSort in C++ array.size() error : <p>I'm writing some code in C++ to do the quick sort algorithm to sort an array of integers. I have my complete code here:</p> <pre><code>void swap(int A[], int x, int y) { int tmp; tmp=A[x]; A[x]=A[y]; A[y]=tmp; } int partition(int A[], int start, int stop) { ...
0debug
retreiving URL from MySQL database : Okay, So I have a database which holds the following values; Restaurant Name, Address, Town, County, Postcode, Tel, Email, Website and Rating. I have a search box that allows the user to search via Town, County or Postcode and then echo's out those relevant using the attached co...
0debug
Formula for deleting vectors? : Basically, I have a vector of a struct. I'm making the game Monopoly and I have a vector of a playerStruct. I have an option for a player to leave the game. However, I don't know how to delete any player as the vector becomes smaller and smaller. For example I have 3 players Playe...
0debug
Polymorphism inside monads : <p>I'm trying to pull a value out of a monad, but keep the <em>value</em>, which doesn't depend on the monad, polymorphic. Specifically:</p> <pre><code>foo :: (Monad mon, Ring a) =&gt; mon a foo = return 3 main :: IO () main = do x &lt;- foo print (x :: Double) print (x :: Int) </co...
0debug
static int pci_device_hot_remove(Monitor *mon, const char *pci_addr) { PCIDevice *d; int dom, bus; unsigned slot; Error *local_err = NULL; if (pci_read_devaddr(mon, pci_addr, &dom, &bus, &slot)) { return -1; } d = pci_find_device(pci_find_root_bus(dom), bus, PCI_DEVFN(sl...
1threat
How to reverse an array without a loop or creating new array : <pre><code>class ReverseArrayElements1 { public static void main ( String[] args ) { int[] values = {10, 20, 30, 40}; int temp; System.out.println( "Original Array: " + values[0] + "\n" + values[1] + "\n" + values...
0debug