Interesting questions
-
3
votes1
answer66
viewsAnchor with Javascript
I have this code: $(function() { $('a[href*=#]:not([href=#])').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname ==…
-
0
votes0
answers37
viewsMerge 2 PDF into 1 Asp.net MVC
I have 2 pdfs files and want to join the 2 in one file only, my method is as follows: public async Task<FileResult> Teste(int id) { var objRelatorioTecnicoData =…
asp.net-mvcasked 6 years, 8 months ago Stand Alone 350 -
3
votes2
answers873
viewsDifference between two Multidimensional Arrays with PHP
I have these two multidimensional arrays and would like the difference between them, similar to what the function array_diff does, but with multidimensional arrays: $array_1: Array ( [0] => Array…
-
0
votes1
answer49
viewsMaximum value per category
I am doing a job in which I would like to show the maximum balance of each account type with subselect within the SELECT. Something more or less like this: CodConta ---------------------tipo…
-
0
votes0
answers383
viewsCan you mask the URL of your wordpress images?
When I hover over some file it shows me the full path of my site. Ex : http://localhost/portal/wp-content/uploads/sites/28/2015/04/web.jpg How to hide this path when right-clicking on the image ?…
-
0
votes1
answer234
viewsHow to change the color of the $ symbol of the PHP variable in a theme installed in VS CODE
someone knows how to change the color of that PHP variable symbol, the dollar sign ($). I’ve searched and found nothing about it, nor in the documentation.
-
0
votes0
answers89
viewsAsynchronous Action Error (Async)
This action should send an Asynchronous email, all very simple so far, including using the same class in other projects with the same version of MVC. But to my surprise, this project does not run.…
-
3
votes1
answer336
viewsMount SQL to generate a dataset and popular a Treeview
I have a database here and I want to mount an SQL to generate a dataset in Delphi and then popular a Treeview. The figure below shows part of the seat, but that is the general structure of it:…
-
0
votes1
answer29
viewsSegmentation fault error when printing 2D array - loop is not sending values to array
I’m not getting why of this error, Segmentation fault. Segment error, apparently. I have a code in which the user sends values that are recorded in an array. This array has two dimensions, the 2D…
-
1
votes1
answer5091
viewsHow to keep div size independent of text size?
I own a div which represents a square in which it aims to display a text to the user, see: html, body { background-color: #323232; } html { font-family: 'helvetica neue', 'arial', sans-serif;…
-
1
votes2
answers263
viewsHibernate Warning HHH000444 using Oracle 10g with Wildfly 8.0.0 - follow-on Locking
When making some queries in a view using JPA (2.1) with hibernate, I’m having this Warning. Though it’s working and it’s only one Warning, It bothers me a little bit. WARN…
-
3
votes2
answers301
viewsChanging data types in a Python list
I have a list x, with 10 numbers, being all of them whole. I’d like to turn them all into numbers like float, but I can’t perform that conversion. Code: lista = [1,2,3,4,5,6,7,8,9,10] for i in acs:…
-
0
votes1
answer136
viewsI need to update my Acces(.mdb) database from an external computer
Hello, I have a client with two stores and I need the database to be interlaced. I need a north on how to start studying this. Obs: the database is local, not in the cloud
-
4
votes0
answers94
viewsModule Pattern Javascript
I don’t know if I’m applying the concept of modular javascript correctly, so I need help! I sorted the files js for responsibilities. Each file will be assigned to a certain function. I’m uploading…
javascriptasked 6 years, 2 months ago Wagner Fillio 1,328 -
-3
votes1
answer71
views -
0
votes1
answer28
viewsHow do you get the result published in the right place?
I’m using the require on this page of mine, so the result is being printed after the footer, someone would tell me how to solve, follow the code: <?php require ("principal.php"); $servidor =…
-
0
votes0
answers183
viewsHow to use an AND-type condition with CSS selectors?
Well, I’m using a CSS block where I need to change an element, but that change depends on whether two other elements correspond to a particular state; example: to change . textAlteration, the…
-
1
votes1
answer46
viewsFragmentactivity with Actionbardrawertoggle
I would like to create a Drawer with a Actionbardrawertoggle. I’m following this tutorial! My only change is that I’m extending a FragmentActivity and not a Activity as the example. When I run…
-
1
votes1
answer62
viewsHow to take a JSON data in this case
I’m not getting a given JSON in this case: Use this site only for own testing https://devjp.xyz/data.json I tried some combinations: $url = "https://devjp.xyz/data.json"; $json =…
-
0
votes0
answers247
viewsFPDF with php last blank page
I’m having a little problem in my code, it’s generating the last blank page. Follow the creation of this code with the help of the community: FPDF with Mysql and PHP - Bringing Repeated Data I’ve…