id
stringlengths
5
11
text
stringlengths
0
146k
title
stringclasses
1 value
doc_23511600
After looking into printf("%s",command); the command SHOULD be executed, but I'm getting a segmentation error. #include <stdlib.h> #include <string.h> int main() { const char name[] = "acc.txt"; FILE *file = fopen(name, "r"); if(file == NULL) { perror(name); return EXIT_FAILURE; ...
doc_23511601
When I'm trying to draw second on first, I get it, but with very low quality. Here is the code: var bounds = targeImageView.Bounds; CGImageAlphaInfo alphaInfo = CGImageAlphaInfo.PremultipliedLast; CGColorSpace colorSpaceInfo = CGColorSpace.CreateDeviceRGB (); CGBitmapContext resultBitmap = new CGBitmapContext (IntPtr.Z...
doc_23511602
Both sound and music are derived types from audio base class. They are stored in List sounds collection. How can I deserialize that? Because doing simple (List)x.Deserialize would produce an list of base types. <sounds> <sound name="SFX_PunchObject"> <file name="SFX_PunchObject.ogg" size="5414"/> </sound> <music n...
doc_23511603
create proc deleteUser @username varchar(50) as begin DECLARE @sql NVARCHAR(MAX) = 'delete from lars.userInformation where username='+@username; 'delete from lars.userAcces where username='+@username EXEC sp_executeSQL @sql,N' @username ',@username end How could I do this without ...
doc_23511604
doc_23511605
The string is not null-terminated. Both these ways involve a string copy (and more) which I'd like to avoid. And yes, this function is called a few million times a second. :p int to_int0(const char* c, size_t sz) { return atoi(std::string(c, sz).c_str()); } int to_int1(const char* c, size_t sz) { return boost:...
doc_23511606
(strdup() has always free'd just fine before.) I fixed the leak, and I think I understand how, but I just can't figure out why I needed to. Original code (summarized): const char *message = "From: username\nMessage: basic message\n"; char *message_copy, *line, *field_name; int colon_position; message_copy = strdup(mess...
doc_23511607
The document looks like this: [ { "id" : 1, }, { "id" : 2, }, { "id" : 3 "Product Info": { "ProductName" : "test" } } ] The MognoExport command I am using is as follows: mongoexport --username x --password x --host x --db mydb --collection mycol --query '{"Product ...
doc_23511608
piles = new ArrayList() // instance variable By initializing the constructor of the ArrayList to a random number of piles via Math.random(), this starts the game. My issue is with the end of the game. The game is over when we have 5 piles containing sizes of 1,2,3,4,5 in any order. I have my over() function checking b...
doc_23511609
I am using Jquery version 1.8.2 drag and drop works fine but I need to use Jquery version 1.11.3 sortable but it is not working. I don't how to solve the problem. Please correct my mistake. <html > <head > <title></title> <script src=" /jquery-1.11.3.js"></script> <script src=" /netjs/jquery-ui.js"></scri...
doc_23511610
Fig 1 Fig 2 Sample code: a)This is how my JSON currently looks (This is only a sample of my full JSON, but I think it would work to illustrate the structure of my JSON) [ { "code": "AB", "province": "Alberta", "stats": [ { "cases": 0, "cumulative_cases": 0, "date_report": "25...
doc_23511611
{ "reference_id": "6599", "balance_0_30": "0", "balance_31_60": "0", "balance_over_90": "0", "account_balance": "0" } As I loop over it like this: foreach ($request->input('data') as $record) { $record = (object) $record; $accounting->reference_id = isset($record->reference_id) ? ...
doc_23511612
Right now it seems openshift defaults my webpage to serve the chat.html page instead. My main.js code var app = require('express')(); var http = require('http').Server(app); var io = require('socket.io')(http); app.get('/', function (req, res) { res.sendFile(__dirname + '/chat.html'); }); app.set('port', process....
doc_23511613
For example I have a 6 minute video (1080 x 1920) encoded as h.264 that's 1.2GB. Is that unreasonably large? Can I compress it further without sacrificing the quality of the image? Is there such a thing as an ideal ratio for video length, quality, and file size? Thanks in advance. A: The way YouTube and similar sites ...
doc_23511614
visit_date sex age marital_status 0 2021-04-05 Female 66 Widowed 1 2021-04-05 Female 65 Widowed 2 2021-04-05 Female 39 Married 3 2021-04-05 Male 56 Married 4 2021-04-05 Female 31 Married 5 2021-04-05 Female 24 Single 6 2021-04-05 Male 37 Married 7 2021-04-05 Female 43 Widowed 8 2021-04-0...
doc_23511615
I am using node.js code and QnA maker services. Individual services are up and running. Can someone help me what shall I tweak to access the bot from the web link again? Thanks, Vivek Jain
doc_23511616
namespace MyCustomAction { public class CustomActions { [CustomAction] public static Session TestResult(Session session) { session["name"] = "hello"; return session; } } } After building t he solution here is how I am loading the assemblies [System.Ref...
doc_23511617
EDIT: Also, I am having trouble adding a transparent background icon. Every time I use a .png with transparent background, the expo build user the standard android.adaptiveIcon.backgroundColor from app.json that's white. So no transparent background. Any help about this would also be appreciated. A: Maybe you can add ...
doc_23511618
A: This is not supported by their Apps API. Edit: Here is a list of what is supported via the endpoint: Enabling/Disabling... * *...Client Side Class creation *...Client Push *...Revokable sessions *...Revoking a session on password chang
doc_23511619
* *func prediction(from: MLFeatureProvider) -> MLFeatureProvider. Predicts output feature values from the given input feature values. *func prediction(from: MLFeatureProvider, options: MLPredictionOptions) -> MLFeatureProvider. Predicts output feature values from the given input feature values. However, in my aut...
doc_23511620
according to the GAAP standards all the financial transactions have to be stored in one currency only in the database which is pretty obvious and logical concept. but how you can satisfy this concept when you have Multi-Country branches? our scenario: 1. we have branch in US where the market deal with US dollar as defa...
doc_23511621
On this particular one, I have linked the master field (control) to a control on the sub form. Very strangly, the link seems to be fine and when you toggle between the tabs where the sub forms are everything also seems to be fine. Unfortunately, after exiting the master form and then re-entering, the new data no longer...
doc_23511622
A: HINT Use Swing Timer to wait for 5 seconds before calling setVisible(false) or dispose() whichever way you want it implemented. Hidden/Disposed A: Did u do your research on this? Seems straight forward. new Timer().schedule(new TimerTask() { public void run() { // this should be final jfra...
doc_23511623
Trying the same through in a JS console works as expected with syntax $$('.verse.v9 .content') There is the sample code in dart. import 'package:html/parser.dart'; String html = ''' <span class="verse v9"> <span class="label">9</span> <span class="content">This is direct child </span> <span c...
doc_23511624
indicator(title = "Advance Decline Line", shorttitle="ADL", format=format.price, precision=2) adlCalc(difference) => ta.cum(difference > 0 ? math.sqrt(difference) : -math.sqrt(-difference)) adl = request.security("(USI:ADVN.NY - USI:DECL.NY) / (USI:UNCH.NY + 1)", timeframe.period, adlCalc(close)) plot(adl, "Advance Dec...
doc_23511625
A: Do you mean something like this ?? Above link has a comprehensive tutorial to add images in table cells. You should work on it to customise the table as per your need. I couldn't understand how you want javascript to add images to the table dynamically. But here is a small example to have javascript to add images ...
doc_23511626
Should I also need to make some changes in didSelectRowAtIndexPath method? -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ NSString *tempSqlStatement = @""; NSString *tempString = @"%"; databaseName = @"TCMdb8.sql"; NSArray *documentPaths = NSSearchPathForDire...
doc_23511627
A: Write in function.php this code add_action( 'wp_enqueue_scripts', 'theme_name_scripts' ); function theme_name_scripts() { wp_enqueue_style( 'style-name', get_stylesheet_uri() ); wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true ); }
doc_23511628
For Eg: If user tries to comment without signing in, on click of post I have to show this popup. This is not ajax call where I can just reveal the popup based on the server response. Is there a way to do this? Maybe by checking the status code or something like that? The challenge is, when user is logged in the specifi...
doc_23511629
I Solved the Problem by changing import '@firebase/functions' to import 'firebase/functions' I'm creating an app using expo and firebase. I trying to add Cloud functions to be callable in my app. My code is the following in my FirebaseApi.js import * as firebase from 'firebase' import '@firebase/functions' const fire...
doc_23511630
doc_23511631
I want to use this method: addElement(java.lang.Object item) I found an explanation here, but the problem is that ListModel is an interface and even if I write an implementation and override its method, I can't use the addElement() method A: Java provides implementations of ListModel already, like DefaultListModel, t...
doc_23511632
What would be a scenario where you would want to make a variable only visible to the scope it was initialized in, and what would be a scenario in which you would want a variable available to all child scopes? A: In general, you only need to export a variable that another process will look for in its environment. How d...
doc_23511633
A: You can make own carousel design inside of v-carousel-item tags, using vuetify elements to place text where you want. Example on cedepen <div id="app"> <v-app id="inspire"> <v-container fluid> <v-layout row wrap justify-center> <v-flex xs6> <v-carousel hide-delimiters> <v-carouse...
doc_23511634
The Javascript code has a number of components named component001, component002, etc. Pages are loaded dynamically via AJAX. I need to pass the name of the component via URL variable which is then evaled() by the script. The only way I am protecting what is being evaled is with the regular expression ^component[0-9]{3}...
doc_23511635
I am very new at this, could you please help me out? Here is my code: * *Form that picks all email addresses for the first 100 customers, and should send a custom message to each when i click send: <?php include ('header.php'); $con = mysqli_connect("localhost", "root", "", "export_declarations"); $result = mysqli_q...
doc_23511636
require 'phpmailer/class.phpmailer.php'; $name=$_REQUEST['name']; $desig=$_REQUEST['designation']; $org=$_REQUEST['organisation']; $int=$_REQUEST['interest']; $email=$_REQUEST['email']; if ($_FILES["file"]["error"] > 0) { echo "Error: " . $_FILES["file"]["error"] . "<br>"; } else { $fname=$_FILES["file"]["name"]; } ...
doc_23511637
I tried getActionBar().setDisplayShowHomeEnabled(false); and getActionBar().setHomeButtonEnabled(false); however getActionBar() returns null. I am new to Android programming and I couldn't find a solution. Any help is appreciated. Thanks. Main Activity: public class MainActivity extends AppCompatActivity { NavCont...
doc_23511638
A simplified version of the code slice I have is: class MyComputingMethod extends ComputingMethod{ override def execute(o: Vector[Object]): ComputingMethod = { val wc = List[Object]() for(i<-o.indices) wc::(o(i)) //put vector objects in vector wc } } Computing...
doc_23511639
I have a link for my web service: http://www.webservicex.com/globalweather.asmx?wsdl And now my problem is how to find NAMESPACE, SOAP_ACTION, METHOD_NAME and URL... A: This tutorial explain well where to find the namespace, soap_action, method_name and url: http://www.nascenia.com/consuming-soap-web-services-from-and...
doc_23511640
A: You can use DebugHook <> 0 from your component code. DebugHook is a global variable (IIRC, it's in the Systems unit) that's set by the Delphi/RAD Studio IDE, and couldn't be set from anywhere else. There are other techniques (FindWindow() for TAppBuilder, for instance), but DebugHook takes all of the work out of it...
doc_23511641
How do I do this? At the moment minus margin-top and margin-bottom move the element but page height is increased/deceased too. Html: <div class="clearfix"></div> </div><div id="text-7" class="widget widget_text"><div class="textwidget"><div class="line-down"> <div class="line-down1"> <div class="line-down1"> <div c...
doc_23511642
[my .css file is directly accessible via https://www.matmerchants.com/css/bootstrap.css. my media files are directly accessible via https://www.matmerchants.com/media/file_name.ext ] I want to redirect to the homepage, when someone try to access any URLs, other than the homepage. My default.conf server { listen 80; lis...
doc_23511643
********************** * Initialize a variable 'count' to 999 Label: TOP 00000001 LOAD M(A[count]) Transfer M(A[count]) to the accumulator 00000101 ADD M(B[count]) Add M(B[count]) to AC and store result in AC 00100001 STOR M(C[count]) Transfer contents of accumulator to memor...
doc_23511644
In my sql server 2014 express, i create a simple database with 3 tables : * *"DocumentFile", "DocumentSearchTerm", "SearchTerm" and a full search text catalog FTCat including 3 columns of the "DocumentFile" table (ExtractText, FileNameWithoutExtension,FilePath) And i've also created [Search] Store Procedure (and ...
doc_23511645
I have tried the following codes but receiving the following error. I would like to get the output shown at the bottom. df = pd.DataFrame() driver = webdriver.Chrome('/Users/alau/Downloads/chromedriver') driver.get('https://racing.hkjc.com/racing/information/english/Horse/BTResult.aspx?Date=2020/09/18') res = driver.e...
doc_23511646
When I add images to my app I can delete them using contentResolver.delete(deleteUri, null, null); and everything works fine. But when the app is removed and then reinstalled it gives me a RecoverableSecurityException, this is accounted for and I've made it so that permission is requested to the file to be able to dele...
doc_23511647
When I type python in command prompt, press enter, and type import cv2, I get no error message. However, when running the same single line of code in a python file in VS Code, import cv2 I get the following in the terminal of VS Code: PS C:\Users\George Kalpakis> conda activate base conda : The term 'conda' is not rec...
doc_23511648
NoMethodError (undefined method save' for nil:NilClass): app/controllers/users_controller.rb:49:increate' app/controllers/users_controller.rb:48:in `create' class UsersController < ApplicationController before_filter :require_no_user, :only => [:new, :create] before_filter :require_user, :only => [:show, :edit,...
doc_23511649
From what I understand I would need to use Unobtrusive Javascript. I have a Thing model(has_many :likes) and a Like model (belongs_to :thing) Any pointers? A: You can do ajax call to a function and implement whatever functionality you like inside that function , (in this case "follow" ), you can do it with : [link_to_...
doc_23511650
If I get an error loading the image or the image is null/undefined I´d like to put a default image I have the next markup: //controller $scope.img_default="//ssl.gstatic.com/accounts/ui/avatar_2x.png" //markup <img onerror="this.src='+{{img_default}}+'" class="drop-box-filled-totem img-responsive"...
doc_23511651
I have little tables for every category like so: Blue one ise one table I want to insert all rows that are not empty from all of my tables by clicking one button. So far i got the button to insert the product name with quantity like so: if ($_SERVER["REQUEST_METHOD"] == "POST") { $product_name = $_POST['product_nam...
doc_23511652
A: The clojure.repl namespace (which is available since Clojure 1.2) contains the macro dir and the function dir-fn: user=> (clojure.repl/dir clojure.main) load-script main repl ... user=> (clojure.repl/dir-fn 'clojure.main) (load-script main repl repl-caught repl-exception repl-prompt repl-read skip-if-eol ski...
doc_23511653
Problems loading reference 'https://json.schemastore.org/tsconfig': Unable to load schema from 'https://json.schemastore.org/tsconfig': getaddrinfo EAI_AGAIN json.schemastore.org. Is there a way to PREVENT schema cache from being cleared when offline? Two specific situations are * *vscode is open throughout the tra...
doc_23511654
My code var fromAddress = new MailAddress("nayana@gmail.com", "From Name"); var toAddress = new MailAddress("nayana@gmail.com", "To Name"); const string fromPassword = "nayana12345"; const string subject = "Subject"; const string body = "Body"; var smtp = new SmtpClient { H...
doc_23511655
Football Game Visual When these indicators are moved, my ball needs to travel at the height of the vertical indicator (y), and left or right direction if the vertical one (x). Firstly, here's the code that moves my indicators (which are just textures being drawn in my RenderScene() function) void SpecialKeys(int key, i...
doc_23511656
xmlns:jwqr="clr-namespace:JeffWilcox.Controls;assembly=JeffWilcox.Controls.QR" xaml page: <jwqr:QRCodeScanner ScanComplete="QRCodeScanner_ScanComplete" Error="QRCodeScanner_Error" Width="400" Height="400"/> but it show sbelow error: The name "QRCodeScanner" does not exist in the namespace "clr-names...
doc_23511657
CameraPreview.java public class CameraPreview extends Activity implements SurfaceHolder.Callback { protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_camera_preview); SurfaceHolder holder; SurfaceView preview =...
doc_23511658
In my app, I detect when a user clicks on an element with a certain class on it. I use the click event and this.id to get the unique id of the element. Now that I've moved this function to a module for Require, I only get 'undefined' back for this.id. I'm guessing the module doesn't have a reference for what was cli...
doc_23511659
How to do? Actually I can get attributes with : require_once("pathlin"); $as = new SimpleSAML_Auth_Simple('default-sp'); $attrs = $as->getAttributes(); Si I can parse the dictionary and get some attributes. But now I want to get NameID, I try with : $as->getAuthData("saml:sp:NameID")->value authsource.php : $confi...
doc_23511660
GpsStatus gps = mlocManager.getGpsStatus(null); Iterable<GpsSatellite> sats = gps.getSatellites(); Iterator satI = sats.iterator(); int count = 0; while(satI.hasNext()){ GpsSatellite gpssatellite = (GpsSatellite) satI.next(); if (gpssatellite.usedInFix()){ count++; } ...
doc_23511661
This is the error I am getting: File "matplotlib-stacked.py", line 57, in <module> plt.stackplot(NP.arange(num_cols)+1,data,colors=colors) File "/usr/local/lib/python2.7/site-packages/matplotlib/pyplot.py", line 3326, in stackplot ret = ax.stackplot(x, *args, **kwargs) File "/usr/local/lib/python2.7/site-...
doc_23511662
The permutations are: [1,3,2] [2,3,1] Note: [1,2,3] and [3,2,1] are not valid here because [1,2,3] increases but doesn't decreases and vice-versa for [3,2,1]. I got this problem in TCS CodeVita 2017, they didn't even provide the editorial for this. A: * *All these permutations have number N somewhere in the middle...
doc_23511663
It is such that if any person send an email to a random address ending with @example.com (My doamin here and not example.com) it always goes to user@example.com (again my domain here). We also know this kind of email as "Super Email". Firstly, I want to try this first on a free domain such as co.cc or cu.cc (and later ...
doc_23511664
I have already tried to import through require() and * as but it didn't work. also cursor get naviaget to actual class/file when I press F12 on FirstModule of below line. import { FirstModule } from "./first"; below are my codes. first.ts export module FirstModule { export class firstClass { id:number; ...
doc_23511665
The reason is as follows: I want to use a different stemming algorithm than the Porter stemmer implemented in Quanteda (the kpss algorithm called via Python). Example The three-word sentence c("creatief creatieve creatie") will result in a dfm with three features (ie. "creatief", "creatieve", "creatie") all with a ter...
doc_23511666
calendar: import generateCal from './js/generateCal'; export default function calendarContent() { return ( <div id="cal"> //Calendar would be printed here </div> )} JS file for calendar: window.onload = prntCal; function prntCal() { docuemnt.getElementById("cal").innerHTML = "uploaded"; } Routin...
doc_23511667
Is there a way to see what this column name is? Or to have the stored procedure return a column name? A: You have to use an alias in your stored procedure to give a name to the column. Ex: CREATE PROCEDURE [dbo].[GetMaxPrc] AS BEGIN SELECT MAX(TOTAL) AS TOTAL FROM MYTABLE -- it will return TOTAL instead of N...
doc_23511668
0.1 0.3 0.4 0.3 0.2 02. 1.2 -0.2 0.1 -1.22 0.12 9.2 0.2 0.2 0.3 -1.42 0.2 6.2 0.9 0.88 0.3 -1.42 0.12 1.1 0.1 0.88 0.06 0.14 4 So it starts with some number of columns, and ends with n*2 columns (n is the last line). I can get the number of rows, say # rows = i. I can also get n. I want to read this file into a python...
doc_23511669
The shortest I could think of, is var objDemo = document.getElementById("demo"); objDemo.className = "newclass " + (objDemo.className || ""); This wouldn't die if the current className is undefined, however it leaves me with a trailing space. Would that be a problem for current browsers? A: document.getElementById('...
doc_23511670
PHP Fatal error: require(): Failed opening required '/var/www/WEBSITE-NAME/htdocs/public/../vendor/autoload.php' (include_path='.:/usr/share/php') in /var/www/WEBSITE-NAME/htdocs/public/index.php on line 34 Line 34 of index.php is: require __DIR__.'/../vendor/autoload.php'; The path to the vendor folder is C:\larago...
doc_23511671
i have written the server and client code. Please can someone help me telling if i'm in the right way? From the client i dont understand if i receive the correct answer. Thx here is the server code <?php ini_set("soap.wsdl_cache_enabled","0"); class getTryPing { public $arg0; } $server=ne...
doc_23511672
void myfunction(unsigned int a) { //Something something here } I can find this using the following grep -IPzor 'void.*myfunction(\n|.)*\{(\n|.)*\}' ./* and this seems to work properly. There are two things that I can't figure out how to do. 1) What if I wanted to ignore functions that have the phrase 'something' ...
doc_23511673
void signalHandler( int signum ) { printf("Interrupt signal received.\n"); } void *periodic_thread (void *param) { struct itimerspec its; struct sigevent sig; struct timespec next, period; sigset_t blocked; siginfo_t si; timer_t mytimer; int i, j; /* create a timer that will be used to periodically send a signal...
doc_23511674
So, I created this bar-project folder which I created the .jar file. bar-project/resources bar-project/src/com/bar/packmain/Bar.java Bar.java: package com.bar.packmain; public class Bar { public Bar() { System.out.println("Bar."); } } At the folder bar-project/src/ I'm compiling like this: javac -d ....
doc_23511675
When an user login on the app (with his email and pass), I want my product controller to filter so the logged in user can only see the products registered by other users who share the EXACT SAME EMAIL DOMAIN of the currently logged in user (current_user). For example: * *Login as: test@gmail.com *Products visible...
doc_23511676
Running in /var/lib/jenkins/jobs/My_Jobs/jobs/ubuntuvm04/workspace/build/tools/java/jre/bin [Pipeline] { [Pipeline] sh [bin] Running shell script + chmod +x ./java [Pipeline] sh [bin] Running shell script + sync [Pipeline] sh [bin] Running shell script + sleep 5 ...
doc_23511677
http://jsfiddle.net/ozzy/LJKsA/ The div block in center of the demo, is overlapping the container div. Can you suggest a fix for this please, it always trips me up. The center div can be larger as content is added, so outer div container needs to handle this also, and retain margins A: You can add clear: both to the l...
doc_23511678
layer 2 datatype 0 xy 15 525270 8663518 525400 8663518 525400 8664818 525660 8664818 525660 8663518 525790 8663518 525790 8664818 526050 8664818 526050 8663518 526180 8663518 526180 8665398 525980 8665598 525470 8665598 52...
doc_23511679
http://www.filehelpers.net/example/ErrorHandling/ErrorMode.SaveAndContinue/ With this implementation I need to pass a class to initiate validation engine as below var engine = new DelimitedFileEngine<Customer>(); However I have different type of files, hence the class name Customer needs to be parameterized. Based on ...
doc_23511680
A: How to protect specific cells on a spreadsheet You can use the following sample code that protects the cells from A1 to B10. // Protect range A1:B10, then remove all other users from the list of editors. var ss = SpreadsheetApp.getActive(); var range = ss.getRange('A1:B10'); var protection = range.protect().setDes...
doc_23511681
I am running on osx 10.11. mongod command outputs: mongod --help for help and startup options Sun May 8 19:08:00.893 [initandlisten] MongoDB starting : pid=6765 port=27017 dbpath=/data/db/ 64-bit host=Roberts-MBP Sun May 8 19:08:00.893 [initandlisten] Sun May 8 19:08:00.893 [initandlisten] ** WARNING: soft rlimits ...
doc_23511682
I have a function to load JSON data from a file in Swift and it works as expected. I copy/pasted the function and updated it to get the data via an API, however I receive a compile time error: "Unexpected non-void return value in void function". Is my approach wrong to use a function for JSON over the web? JSON respons...
doc_23511683
https://nodejs.org/api/assert.html normally we could check if an object has a property by running var assert = require('assert'); assert(obj.prop); but if obj.prop exists but is falsy, this won't work. I prefer using the Node.js assert module and would rather avoid other solutions, thanks. Perhaps the best way to do t...
doc_23511684
It is easier to explain through an example. Table: Brand Quantity Date 1. MTZ 3 2012.03 2. MTZ 1 2012.03 3. Belor. 2 2012.04 4. YTO 2 2012.04 5. YTO 1 2013.03 I want a query like this: Brand 2012.03 2012.04 ...
doc_23511685
I want to display the files with foreach and I use this code: $files = glob("system/$var/$var/$var/*/*.php"); foreach($files as $file) { //code here per $file. //for example: $basename = basename($file); echo str_replace(".php",null,$basename) . "<br>"; include $file; //heres i need the path of the ...
doc_23511686
The website is not yet in production however I added a new page yesterday (and this has happened a few times before) and once deployed to our dev environment nobody in the office was able to access it - they were simply redirected to the homepage (as if the route didn't exist) until they cleared their cache then the ro...
doc_23511687
Currently I have been using "org.apache.poi.xwpf.converter.pdf.PdfConverter" for the purpose, but it skips to convert the shapes or drawings in my Word Document. I am unable to test it using Aspose.words. Any help with that will also be appreciated. The method I used for conversion is: public static void createPDFFromI...
doc_23511688
my_date="6 May 2018 10$ party 2018-01-05 meeting" my_parser(my_date) # expected : c("2018-05-06 GMT","2018-01-05 GMT") parsedate package is able to parse any date format but only if the string contains only one date. library(parsedate) parse_date("06 may 2018 10$ party",approx=T) #"2018-05-06 GMT" parse_date("06 may 2...
doc_23511689
In B I would like to access methods defined in A. From A I would like to pass arguments to B. If I try this way: B.py def Main(args): print(args) method_a() # this doesn't work A.py def method_a(): return 5 mod = importlib.import_module('B') mod.Main(123) Using import_module I do not have access to methods...
doc_23511690
I would like to have an output that is also an array of objects with the same properties unchanged except for one property that I like to be changed into an accumulative value. input example : let input_array = [{ a:'a',b:'b',c: 1},{a:'d',b:'e',c:2},{a:'g',b:'h',c: 3}]; output example let output_array = [{ a:'a',b:'b...
doc_23511691
I essentially want to do the following. import numpy as np num = 10000 XYT = np.random.uniform(0, 1, (num, 3)) X = np.transpose(XYT)[0] Y = np.transpose(XYT)[1] T = np.transpose(XYT)[2] size = 10 bins = np.empty((size, size)) for i in range(size): for j in range(size): if rescaled X,Y in bin[i][j]: ...
doc_23511692
I tried two different ways to solve it but the result was same. config/secrets.yml production: secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> config/environments/production.rb config.secret_key_base = ENV["SECRET_KEY_BASE"]
doc_23511693
<html> <head>...</head> <body> <body"> <a name="top"></a> <h1>VCWPD Area Reservoir Report</h1> <table border="1" id="weather_table"> <tbody> <tr class="header">...</tr> <tr class="row0">...</tr> <tr class="row1"> <td>691</td> ...
doc_23511694
It uses the traditional ./genMakefiles && make -j4 therefore I just need to create a CMakeLists.txt that does this, right? I know the right way would be to add all the cpp files and build everything but it's not my project and I'm not going to maintain it so the best way for this case would be to just integrate like I'...
doc_23511695
class Customer(models.Model): user = models.ForeignKey(User) region_id = models.IntegerField(blank=True, null=True) company_name = models.CharField(max_length=45, blank=True) class Enquiry(models.Model): customer = models.ForeignKey(User) region_id = models.IntegerField(blank=True, null=True) s...
doc_23511696
df1 <- tibble(Group = c("Group_1", "Group_2", "Group_3"), Members = list(letters[1:3], letters[4:6], letters[7:12])) df2 <- tibble(Letters = c("a","g","f","b"), Value = 1:4) The final data frame would look like: df3 <- tibble(Letters...
doc_23511697
Here is my code that works: Enemies (enemyImg - one image) are generated /** @type {HTMLCanvasElement} */ const canvas = document.getElementById("canvas"); const ctx = canvas.getContext("2d"); const backgroundImg = document.getElementById("background"); const playerImg = document.getElementById("player"); const enemyIm...
doc_23511698
I tried to use $('form').serialize() and while it recover complex objects through model binding to my controller, the entire dropdownlist is lost, only it's selected value returns. I tried even generating a json object with following structure (unsuccessfully): var list = [ { "MyDropDownList": { "option": {"Text": "Som...
doc_23511699
The regex I have written is as follows: (^[a-zA-Z](?!(0000000|000000\b|00000\b|0000\b|000\b|00\b|0\b))[0-9]{1,7}$) How do I solve this problem? A: Assuming your current pattern is achieving what you want, you can simplify it by using negative lookahead for 0+$, ensuring that the first character is not followed by onl...