id stringlengths 5 11 | text stringlengths 0 146k | title stringclasses 1
value |
|---|---|---|
doc_36700 | However, when I', trying to print output the first line of output is not giving precise decimal values.
Problem statement: https://www.codechef.com/problems/FLOW009/
#include <iostream>
#include <stdlib.h>
int main(){
int n;
int comp = 0;
std::cout.precision(6);
std::cin >> n;
float cost[n];
... | |
doc_36701 |
*
*Is there a better way to accomplish this?
*How will Salesforce look upon this if they decide to create an AppExchange product out of this?
Thanks
A: I don't think it is possible. What you can do is to override the standard salesforce lead page with your custom Visualforce page. In your custom visualforce page... | |
doc_36702 |
echo ip_info("Visitor", "Country"); // India
echo ip_info("Visitor", "Country Code"); // IN
echo ip_info("Visitor", "State"); // Andhra Pradesh
echo ip_info("Visitor", "City"); // Proddatur
echo ip_info("Visitor", "Address"); // Proddatur, Andhra Pradesh, India
print_r(ip_info("Visitor", "Location")); // Array ( [cit... | |
doc_36703 | Would it be by putting a message in a queue and remove from the queue?
Say with a programming language like python? Or would there be simpler methods that already do this?
A: ActiveMQ exposes management functions via JMX which you can use from GUI tools like JVisualVM and JConsole (among others). One of these exposed... | |
doc_36704 | As you type in an 'Employer's Name' a request is made back to the server to search for all Employers that have that string in their name. They present these below the form for you to select. This could be done with Ajax.
They then have an 'Add a new employer' field at the bottom of the search results if the result retu... | |
doc_36705 | Here is my code:
public class LuceneIndexer {
private IndexWriter indexWriter;
private IndexReader indexReader;
public LuceneIndexer() throws Exception {
Directory indexDir = FSDirectory.open(Paths.get("./index-directory"));
IndexWriterConfig config = new IndexWriterConfig(new StandardAnalyzer());
... | |
doc_36706 | The goal is to achieve a functionality similar to that of a keyguard.
I've been doing some research and following some to Q&A on the site (such as Android Best Way to Detect and Handle User INACTIVITY, Android: Detect General Use by User among others) but when it comes to detect user interaction in android I haven't fo... | |
doc_36707 | FileInputStream input_document = new FileInputStream(new File(
"D:\\excel_to_pdf.xls"));
HSSFWorkbook my_xls_workbook = new HSSFWorkbook(input_document);
HSSFSheet my_worksheet = my_xls_workbook.getSheetAt(0);
Iterator<Row> rowIterator = my_worksheet.iterator();
Document iText_xls_2_pdf ... | |
doc_36708 | I am pretty new to ES6/TYPESCRIPT/Angular2, when I went thru the tutorial of Angular2 official site, the first thing confuses me is:
import {Component} from 'angular2/core';
My question is:
What is that "angular2/core"? is that a module directory? or just a namespace string? When I use a component or module, how/where... | |
doc_36709 | get '/' do
if logged_in
erb :"admin/a_index"
else
erb :index
end
end
get '/about' do
if logged_in
erb :"admin/a_about"
else
erb :about
end
end
get '/contact' do
if logged_in
erb :"admin/a_contact"
else
erb :contact
end
end
So that if the user was logged in, it would render a... | |
doc_36710 | The other one vc_signup has a UIButton, which may go back to the previous controller. To implement this, I used the following methods:
vc_studyDesc has an identifier of studyDesc; I let it pass its identifier to vc_signup. In the same way, vc_login has login as an identifier.
override func prepareForSegue(segue: UIStor... | |
doc_36711 | nmap <Leader>ev :e $MYVIMRC<CR>
I now wish to map <Leader>ec to edit currently used colorscheme file, and also map <Leader>es to edit current filetype syntax file. I don't want to hard code the paths (or part of the paths) as I will be moving around between environments. It will help me quickly adjust color/syntax in ... | |
doc_36712 | So in the process I am rewriting the web.xml to create velocity servlet object whcih calls
our original servlet .
Now if this has to be moved to
<servlet>
<servlet-name>VeloServlet</servlet-name>
<servlet-class>org.apache.velocity.tools.view.servlet.VelocityViewServlet</servlet-class>
</servlet>
How can we achei... | |
doc_36713 | Module not found: Can't resolve 'material-ui-search-bar' in 'C:\Users\James\React\fpl-ui\src'
When running npm start on Windows.
However the exact same project compiles and runs fine on OSX do I'm not sure if there's some kind of Windows specific configuration that I am missing.
My package.json has the following depen... | |
doc_36714 |
*
*GameProject [This project holds game code]
*GameProject-Android
*GameProject-Desktop
*GameProject-robovm [this is a robovm project working perfectly without any free type font usage]
robovm.xml content:
<config>
<executableName>${app.executable}</executableName>
<mainClass>${app.mainclass}</mainClass>
... | |
doc_36715 | I'm building an iOS app which receives APNS notifications. I've provisioned the app, generated development and deployment certs and handed those to the people developing the CMS which the app consumes data from and which sends the notifications.
When the CMS sends an APNS notification, both my iOS test devices receive ... | |
doc_36716 | The tabs outside of the editor are working just fine. I've been wrestling with this for a long time, but I can't figure it out.
I have tried this with and without the @section scripts {}
The editortemplate that isn't working
@model WebCommerceCsv.Models.SupportingModels.CompositeModels.PageEntry
<div class="BlockContai... | |
doc_36717 | when we click on more button it will expand the view with more details about the application in android market place..
Any help will be greatly appreciated..
thanks
sathish
A: I have been working on something similar.
At the moment it looks like this in the more/less bar mode:
It is still a work in progress but the pr... | |
doc_36718 | all_clusters=[['A','B','C'],['C','B'],['T','A'],['A']]
the second element is the subset of the first one so I wanna remove it. same 4 and 1.
output:
all_clusters=[['A','B','C'],['T','A']]
I did the following:
ind=[]
for s,i in enumerate(all_clusters):
for r,j in enumerate(all_clusters):
if i!=j:
... | |
doc_36719 | I have a question on the function that puts two lists together according to the order.
( i.e. [1,4,7] [2,5,6] -> [1,2,4,5,6,7])
This is my original code. (xs, ys are the parameters and zs is an accumulator.)
msort4 [] ys zs = zs ++ ys
msort4 xs [] zs = zs ++ xs
msort4 allx@(x:xs) ally@(y:ys) zs
| x <= y = msort4 xs ... | |
doc_36720 |
A: This should work:
// in get-data.js
const puppeteer = require('puppeteer');
async function getData() {
const browser = await puppeteer.launch();
// ...
return data;
}
module.exports = {
getData,
};
// in main.js
const { getData } = require('./get-data.js');
(async function main() {
try {
const d... | |
doc_36721 | Is there any complete tutorial using that library ? or any alternative library with complete tutorial to use it?
A: A3M sounds like something you could use. It has normal user authentication, facebook, twitter, google, yahoo and openid.
Give it a try to see if it has what you need.
https://github.com/donjakobo/A3M
| |
doc_36722 | The ajax request:
$('#form').ajaxSubmit({
url:'process.php',
success:function(response) {
if(response == 'success')
{
// trigger analytics code
}
}
});
Google Adwords Code:
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = xxxxxxx;
/* ]]> */
</s... | |
doc_36723 | i need to render times new roman font same as ilustrator in svgeditor
what is svgeditor ?
it helps user to edit svg image and art
how do i load font ?
on event i set font as css propert font family
what i tried ?
i tried to open js file and look in to it. as i think if path in js is not correct for any aphabet it ... | |
doc_36724 | var services = new ServiceCollection();
services.AddSingleton<IFoo, Foo1>();
services.AddSingleton<IFoo, Foo2>();
var container = services.BuildServiceProvider();
foreach (var foo in container.GetService<IEnumerable<IFoo>>())
{
Console.Write($"{foo.GetType().Name} ");
}
Is there a guarantee in Microsoft DI that... | |
doc_36725 | from scipy.stats import norm, lognorm
import numpy as np
import matplotlib.pyplot as plt
# example: r(t) = ln(1 + R(t)) ~ N(0.05, (0.5)^2))
# 1 + R(t) = exp(r(t)) ~ logNormal(0.05, (0.5)^2)
# R(t) = e(r(t)) - 1 ~ logNormal(0.05, (0.5)^2) - 1
#
# plot normal and log normal density
mu = .05
sd = .5
x ... | |
doc_36726 | Caused by: java.lang.IllegalStateException: Cannot register highlighting rule for characters from 8136 to 8139 as it overlaps at least one existing rule
at org.sonar.batch.highlighting.SyntaxHighlightingDataBuilder.checkOverlappingBoudaries(SyntaxHighlightingDataBuilder.java:77)
at org.sonar.batch.highlighting.Synt... | |
doc_36727 | I did the following basic css for printing then:
// global printing
@media print {
@page {
size: A4;
}
// hide buttons and non-content
button,
aside {
display: none !important;
}
// somehow there are no line-break, so border content
div {
max-width: 100vw;
}
// footer
body::after {
... | |
doc_36728 | I have tried importing the image and putting it in with JSX and also using the relative path.
const TeacherList = [
{
name: "PowerPumpsandMoves",
img_src: "../PPMfinalmockup.png",
id: "teach-4",
live: "",
used: "JavaScript,Html5,BootStrap-4"
}
I would like this image to show up.
A: Hi there assuming you are usi... | |
doc_36729 | To be more specific, I want file1.c and file2.c to both be able to use the same function (instead of just the copy-paste solution), call it func().
So what I have is:
file1:
#include"shared.h"
int main() {
int x=func();
}
file2:
#include"shared.h"
int main() {
int y=func();
}
shared.h:
extern int func(... | |
doc_36730 | item = ['tea', '5200']
driver.find_element_by_xpath(<path of the field>).send_keys(item[0])
driver.find_element_by_xpath(<path of the field>).send_keys(item[1])
when I run the code, the name of the item(item[0]) is completely work.
but the price of the item(item[1]) has some problem.
The default value of the price fi... | |
doc_36731 | This is the code that works:
from sklearn.metrics import r2_score
df = pd.DataFrame({'cat':['A','A','B','B'], 'num1':[.1,.2,.3,.4],
'num2': [.1,.2,.3,.4]})
df.groupby('cat').apply(lambda x: r2_score(x['num1'],x['num2']))
With this output:
cat
A 1.0
B 1.0
dtype: float64
But this doesn't work:
df.apply(lambda ... | |
doc_36732 | My html (live version available here)
{% load staticfiles %}
<html>
<head>
<!-- THESE WORK LOCALY BUT DO NOT WORK ON THE SERVER -->
<link rel = "stylesheet" href ="{% static "survey/css/bootstrap.min.css" %}" >
<link rel = "stylesheet" href ="{% static "survey/css/bootstrap.cs... | |
doc_36733 | <nav class="top-bar" data-topbar role="navigation">
<ul class="title-area">
<li class="name">
<h1><a href="#">My Site</a></h1>
</li>
<!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -->
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu<... | |
doc_36734 | I am not talking about workflow code, but python code in the snakefile that performs various tasks related to preparing to state the workflow rules.
I have several places where I want to do this, some because there is no need to do it multiple times and I want to speed up the snakefile by doing it only in the first ini... | |
doc_36735 |
<div class="col-12 col-md-5">
</div>
d-flex align-items-center
<div class="col-12 col-md-6 bg-white d-flex align-items-center border border-dark rounded-right">
<div class="messageBox">
<h2>Message From Owner</h2>
<p>Lorem, ipsum dolor sit a... | |
doc_36736 | import geoopt
import torch
import matplotlib.pyplot as plt
# Create the Poincare ball model
poincare = geoopt.PoincareBall()
# Define two points in the hyperbolic space
point1 = torch.tensor([0.1, 0.2])
point2 = torch.tensor([0.3, 0.4])
#Map the points to the tangent space at the identity element
point1_tangent = po... | |
doc_36737 | ServerService.methodName(param1, param2).success(handleSuccessFunc).error(handleErrorFunc);
There is a selenium-karma test file for this and I need this method to be mocked in the test file. Since the method returns a promise, this method is mocked within the beforeEach function
beforeEach(function () {
s... | |
doc_36738 | When the file exist I'm doing this:
RewriteRule client/z_([^/]*) redirect.php [L]
But how can I redirect when there's no file?
ie:
the file client/z_123.php exists and it works.
but the file client/z_321 doesn't exist, and I want to show the redirect.php with the same this link.
My question is: How can I make this wo... | |
doc_36739 |
A: Not quiet sure what you want to achieve. If you want to build an empty chart with week number generated from your report parameter, you can add a dataset into your report, with tsql codes below
set datefirst 1
;with cte as
(
select @FromDate as d
UNION ALL
select Dateadd(DAY, 1, d)
from cte
where d < @ToDate
)
se... | |
doc_36740 | I want to make an jQuery autocomplete search field in my shop that shows the tags stored in wordpress database under wp_terms. so long so good.
my actual sql query looks like this:
if (isset($_GET['term'])) {
$term = $_GET['term'];
$db_erg = mysqli_query($con, "SELECT name
FROM wp_terms
WHERE name LIKE... | |
doc_36741 | class Mano:
def __init__(self,Giocatore,Dimensioni=3):
self.Giocatore=Giocatore
self.CarteInMano=[]
self.Dimensioni=Dimensioni
def Pesca(self):
a=0
while a==self.Dimensioni:
self.CarteInMano.append(M.Carte.pop())
a=a+1
But, after:
M1=Mano(1)
M1.P... | |
doc_36742 | private void updateWeather(){
new Thread(){
public void run() {
//get Weather start:
LocationHelper helper = new LocationHelper(MomentsActivity.this);
Location location = helper.getLocation();
if(null != location){
String request = "ht... | |
doc_36743 | Error Log: org.openqa.selenium.NoSuchElementException: Unable to locate element: {"method":"xpath","selector":".//*[@id='main-content']/div[@ng-controller='AdminHome']"}
HTML of webpage:
<html class="ng-scope" lang="en" ng-app="anMain">
<head>
<body>
<div id="app" class="ng-scope" ng-controller="AppCntl">
... | |
doc_36744 | I don't know to use putextras that much but I know how to use them a bit.
So I used a put extra to transfer data from MapsActivity to Country Adapter which I will explain:
So my idea is that when a user clicks on CustomInfoWindow an intent opens named Country Adapter. That country adapter has 2 textviews for title and ... | |
doc_36745 | <ComboBox Height="23" Margin="69,105,111,0" Name="comboBox1" VerticalAlignment="Top" ItemsSource="{Binding StoreTypeTable}" DisplayMemberPath="StoreTypeName" SelectedValuePath="StoreTypeName" IsSynchronizedWithCurrentItem="True" SelectedIndex="0"/>
C# Code:
My Class:
class StoreTypes:nuClass
{
private WSOntsu.Serv... | |
doc_36746 | .
I tried to make all kinds of conditions in the while loop to stop the algorithm one cycle later, but I couldn't and I am getting crazy because of it. The main algorithm code below:
// height is always bigger than width by 1
char [][] blankGrid = new char [height][width];
int dir = 0;
int top = 0;
... | |
doc_36747 | Fiddle: https://jsfiddle.net/erobertwald/gc0fod1b/57/
When I click on 'Menu 1', the modal appears, and the content also appears. When I click the the modal anywhere around the panel the modal disappears and I'm assuming the nested content also disappears because when I click on 'Menu 1' again, the modal appears but the... | |
doc_36748 |
A: Everything depends on what you return from your data source's tableView:numberOfRowsInSection: and numberOfSectionsInTableView: methods. Sounds like you want 2 sections, with 4 rows in the first and 1 in the second — you can do this by checking indexPath.section in numberOfRowsInSection: and returning the appropria... | |
doc_36749 | public void GetDetails()
{
try
{
//some code
}
catch()
{
//some code
}
}
In Roslyn Analyzer project i have something like below:
public override void Initialize(AnalysisContext context)
{
context.RegisterSyntaxNodeAction(AnalyzeCode, SyntaxKind.MethodDeclaration);
}
private void ... | |
doc_36750 | Would you please take a look?
/bin/sh: npm: command not found
make[2]: *** [modules/GUI/CMakeFiles/Client] Error 127
make[1]: *** [modules/GUI/CMakeFiles/Client.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
I followed this wiki: sudo: npm: command not found
But it doesn't work for me.
For MAC users, th... | |
doc_36751 | ||
doc_36752 | Even any ideas regarding this ,are more then welcomed in comments ! Thnx in advance
| |
doc_36753 | #include <iostream>
#include <fstream>
class logstream : public std::ostream
{
public:
logstream() : os(&std::cout), file_(false) {} // line 7
logstream(const char* filename) : os(new std::ofstream("file.txt")), file_(true) {
// open file - raise exception if cannot open
}
~logstream() {
// check ... | |
doc_36754 | Thanks
A:
So when the page loads it echos the first entry (ID 1), when you click the button it prints the next entry (ID 2). How would i do this?
This sounds like ordering and paging. (Even with a "page" size of only 1.) Basically select all records greater than the "current" ID, ordered by ID, limited to 1. Some... | |
doc_36755 | dt1.Columns.Add("studid",typeof(int));
dt1.Columns.Add("rollno", typeof(int));
dt1.Columns.Add("date", typeof(DateTime));
dt1.Columns.Add("starttime", typeof(string));
dt1.Columns.Add("class", typeof(string));
dt1.Columns.Add("section", typeof(stri... | |
doc_36756 |
A: Stackdriver can use basic authentication (so you definitely want to use SSL/TLS). In the ui, check the checkbox for basic auth and enter a username and password. I recommend choosing a strong, high-entropy password. You can read more on basic authentication here, but the basic idea is that your endpoint will recei... | |
doc_36757 | 1.When using the code (gehan.test(T3, D3, Z1), I got an error message says gehan.test not found.
2. Regarding to Tarone and Ware, what is the appropriate code that could be used?
A: The npsm package has the gehan.test function.
library(npsm)
library(KMsurv) # Contains the "burn" data
data(burn) # see ?burn for a de... | |
doc_36758 | Or is there a better way to accomplish this without using php?
A: Have the PHP trigger an exec to a script that is forked so it runs in the background (ends with &). The page should then return some js that periodically polls the server via ajax requests to check the original script's status. The script should output... | |
doc_36759 | Dowload hundred of thousands of xmls files (size from bytes to 50 mb/file) structured like this /year-month/year-month-day/hours/files with ftplib.
So i loop through each hour folder for a given day and for each one i store all the filenames with ftp.nlst(), then i loop through each filename and i donwload the concerne... | |
doc_36760 | Can anyone tell me what are the pros and cons of using one over the other? I would like to use Gridx tree grid example and wondered which one would be best and why.
Thanks!
A: Well, the dojo/store/JsonRest store will also allow you to create/update/delete items in your store which will be updated on your service as w... | |
doc_36761 | under employee table in DB, i have to put the message in queue.here is the producer code snippet from hello world example
public static class HelloWorldProducer {
public void createMessageOnQueue() {
try {
// Create a ConnectionFactory
ActiveMQConnectionFactory conne... | |
doc_36762 | type Foo struct {
}
func (f *Foo) method1() int { ... }
func (f *Foo) method2() int { ... }
func (f *Foo) method3() int { ... }
// ... and so on
I'd really like to apply some specific behavior anytime I call method1 on this type:
func (f *Foo) method1Wrapper() int {
incrementCounter()
return f.method1()
}
Bu... | |
doc_36763 | I'm making a program to read a text file with multiple rows of data, and to quantify similar rows.
Below is my code that I have working, but I'm trying to have the output in a custom format, or at least printed individually. How can I improve on that?
Ideally I'd like an output like:
B12-H-BB-DD: x3
A2-W-FF-DIN: x2
A2-... | |
doc_36764 | IList list = CallMyMethodToGetIList();
that I don't know the type I can get it
Type entityType = list[0].GetType();`
I would like to search this list with LINQ something like:
var itemFind = list.SingleOrDefault(MyCondition....);
Thank you for any help.
A: IList list = ...
// if all items are of given type
IEnume... | |
doc_36765 |
I tried clicking the "Dump HPROF file" as showed in here, but I don't get the save file dialog and I can't analysis it.
so I'm trying to override it untill I get a new computer..
I'm running Android eclipse on Windows 7.
EDIT:
The problem was the ImageViews I keep; I have two images that I set resource via the code w... | |
doc_36766 | Note:I want to use only one Bitmap if it is possible
private void sliderKernel_MouseUp(object sender, MouseEventArgs e)
{
Filtreler f1 = new Filtreler();
f1.Img = new Bitmap(pBox_SOURCE.Image);
int SablonBoyutu = sliderKernel.Value;
f1.addnoise();
pictureBoxNoisyImg.Image = f1.Img;
f1.meanfilter(SablonBoyut... | |
doc_36767 | Parameters I am passing in above 2 functions are - get_city_data($state, $city), get_place_data($state, $city, $store).
So on browser to render these functions I am using the urls respectively as-
http://localhost/project/get_city_data/state1/city1
I want to change the urls like
http://localhost/state1/city1
In routes... | |
doc_36768 | Approach: I began with the excellent code from Tony Breyal at: Geocoding in R with Google Maps and modified it slightly to suit my own purposes (I need the function to return a SpatialPoints object with all of the addresses in it and the projection string defined).
So we have:
library(RCurl)
library(RJSONIO)
... | |
doc_36769 | struct RatingView: View {
let criteria: String
@State var rating: Int
var body: some View {
HStack {
Button {
if rating > 0 {
rating -= 1
}
} label: {
Image(systemName: "heart.slash.fill")
}
... | |
doc_36770 | Part of Code:
public class LatinSquare {
private boolean invalidAlready = false;
//Setter and Getters for invalidAlready
public void setInvalid(){
invalidAlready = true;
}
public boolean testInvalid(){
return invalidAlready;
}
//Testing method to show whether LatinSquare i... | |
doc_36771 | using System.Threading;
class MyPresenter
{
UserControl view;
private Thread thread;
private ManualResetEvent cancelEvent;
public void Start()
{
cancelEvent = new ManualResetEvent(false);
thread = new Thread(UpdateView) { IsBackground = true };
thread.Start();
}
public void Stop()
{
... | |
doc_36772 | user: {
userId: 3,
username: 'aragorn',
},
My React component is destructuring its parent object and making it available to the entire component. When I render the full user object using this code:
<p className="small">
{`Submitted by ${JSON.stringify(user)}`}
</p>
I get a complete stringified object with all o... | |
doc_36773 | So for example, if each sensor outputs a 0, I would want to select the case '000' and execute its instructions. If the middle sensor outputs a 1, I want case 010 etc.
I've looked into doing this using arrays or strings to store the 3 character value, but I don't seem to be able to use the switch statement correctly to ... | |
doc_36774 | def dt(z):
Y = all(letter=='Y' for number,letter in z)
N = all(letter=='N' for number,letter in z)
H = (not Y) and (not N)
return 'Y' if Y else ('N' if N else 'H')
conj=[{(frozenset({(9,'N'), (3,'Y')}), 3,'Y'), (frozenset({(9,'Y'), (3,'N')}), 3,'Y')}, {(frozenset({(9,'Y'), (2,'Y')}), 3,'Y')}]
flag = ... | |
doc_36775 | eg I have @RequestMapping(/start) @RequestMapping(/buy) @RequestMapping(/confirm) @RequestMapping(/pay) and I would like to put them in flow /buy->/cofirm->/pay without possibility of custom navigation - can I do it with webflow ?
AFAIK it is not possible, but I want to make sure.
A: Spring webflow and mvc work togeth... | |
doc_36776 | My idea is that:
*
*In Background.js
I have chrome.browserAction.onClicked.addListener, which chrome.tabs.sendMessage(activeTab.id, { "message": "clicked_browser_action" }) like this:
chrome.browserAction.onClicked.addListener(function () {
chrome.tabs.sendMessage(activeTab.id, { "message": "clicked_browser_act... | |
doc_36777 | I have managed to remove the non-Arabic characters using the below regex:
re.sub(r'([^،-٩]+)',' ', 'ذهb')
But how would I remove the whole word? Preceding the regex with \b doesn't seem to work.
A: You can use
re.sub(r'\s*\b[\u0621-\u064A]*[^\W\d_\u0621-\u064A][^\W\d_]*\b', '', text)
The \s*\b[\u0621-\u064A]*[^\W\d_... | |
doc_36778 | I would like to make a segue to another view when I click on a button of one of the cell. I created the segue with an identifier in my storyboard but can't figure how to perform it programmaticaly.
Thank you
A: Ok I just found where was my error, I was performing the segue on my collectionview Cell instead of my colle... | |
doc_36779 | function download(canvas,type) {
var imgdata = canvas.toDataURL(type);
var fixtype = function (type) {
type = type.toLocaleLowerCase().replace(/jpg/i, 'jpeg');
var r = type.match(/png|jpeg|bmp|gif/)[0];
return 'image/' + r;
};
imgdata = imgdata.replace(fixtype(t... | |
doc_36780 | Is there any difference between the interrupts? (Can I use the same interrupts from 16-bit assembly) If the interrupt list is the same do I have to specify if it is a 32-bit interrupt? (for int. 0x16 use eax instead of ax to put the read byte in).
also, I did try to google the answers, but I can't find them.
EDIT :: I ... | |
doc_36781 |
A: No, docker does not have it's own JVM. In fact, Docker and Java should be considered two entirely separate technologies. There's no requirement for a Docker container to have any java implementation installed.
Docker container images can include Java (and hence the JVM) in the same way they can include any other ap... | |
doc_36782 | Is it possible to approve these in any order?
For background: Each release is created with a variable which determines which server the deploy goes to so the order doesn't matter.
A:
Is it possible to approve these in any order?
Yes, you could lift the default limitation by select the option Unlimited on the tab Dep... | |
doc_36783 | The data table is generated with the following VBA code:
Sheets("ProjSheet").Range(Range("DTAnchor").Offset(-1, -1),Range("DTAnchor").Offset(NumScns - 1, 1))
.Table ColumnInput:=Range("CurrScen")
The calculation mode is semiautomatic throughout the code, and the data table is updated using Calculate... | |
doc_36784 | I have this structure of files :
/public/images/foo
/public/images/foo/default.jpg
/public/images/foo/1/...
/public/images/foo/2/...
/public/images/bar
/public/images/bar/default.jpg
/public/images/bar/1/...
/public/images/bar/2/...
/public/images/baz
/public/images/baz/default.jpg
/public/images/baz/1/...
/public/imag... | |
doc_36785 | I want to create a puzzle for an Android phone, or better: all android devices.
*
*Should i focus on making this app compatible with ALL android devices, including (really small) 2,7" and really large (7"+) devices? Or should I stick with an app that "looks good and works" on 3.2" till 4.7"?
*Bigger screens have mo... | |
doc_36786 | import pickle
fname = "temp"
with open(fname, 'rb') as f:
a = pickle.load(f)
a.sum()
> 2.16....
How is this possible? My question can be interpreted as "how does pickle work"?
| |
doc_36787 | Something like a zipper :
var myFn = function (a, b) { console.log(a, b);}
var arr1 = ['a', 'b', 'c'];
var arr2 = [1, 2, 3];
arr1.map(myFn, arr2); // imaginary syntax.
// prints :
// a 1
// b 2
// c 3
A: You could also use reduce to get the desired outcome:
var arr1 = ['a', 'b', 'c'];
var arr2 = [1, 2... | |
doc_36788 | There is a sample code than does following:
DECLARE
l_data CLOB := '{"text": "very long string about 1M chars"}';
l_json json_object_t;
l_text CLOB := EMPTY_CLOB();
BEGIN
l_json := json_object_t.parse(l_data);
l_text := l_json.get_clob('text');
dbms_output.put_line('got ' || dbms_lob.getlength(l_text) || ' ... | |
doc_36789 | it work with
select *, regexp_matches(col1,'a\d{3}') from table
but i also want the 'b123' code then i write this code not work:
select *, regexp_matches(col1,'(a|b)\d{3}') from table
where as (a|b) is regex. Please show me solution or any other way not regexp_matches because i need to trim '{}' sign after that.
A: ... | |
doc_36790 | The package (in theory) should
*
*Get a list of servers
*Connect to each one in a foreach
*Runs a simple query for inventory purposes and save information to a temp table
*Log this information to a static server
The issue that I'm running into is that the package is only changing the connection one time, then it ... | |
doc_36791 | So what can I do to get this regex working in Python? (Python 2.7)
A: It works perfectly fine for me. Are you maybe using it wrong? Make sure to use re.search instead of re.match:
>>> import re
>>> s = 'somestring.asp?1=123'
>>> re.search(r"(?<!(asp|php|jsp))\?.*", s)
>>> s = 'somestring.xml?1=123'
>>> re.search(r"(?... | |
doc_36792 |
Type '{ children: (string | number | boolean | {} | ReactElement<any, string | ((props: any) => ReactElement<any, string | ... | (new (props: any) => Component<any, any, any>)>) | (new (props: any) => Component<...>)> | ReactNodeArray | ReactPortal | Element)[]; className: string; css: SerializedStyles; }' is not assi... | |
doc_36793 | enter image description here
| |
doc_36794 | Here is my simple code
<?php
$sql = "SELECT * FROM songs ORDER BY id DESC LIMIT 1;";
$result = mysqli_query($con, $sql);
$resultCheck = mysqli_num_rows($result);
if ($resultCheck > 0) {
while ($row = mysqli_fetch_assoc($result)) {
?>
<li>
<div><a href="single.html"><img src="images/<?php echo $row['cover_photo']; ?
>... | |
doc_36795 | I plan on doing something liek this:
Sharedpreferences.java
public boolean isDifferentUser() {
return mSharedPreferences.getBoolean(ISDIFFERENTUSER, false);
}
I want to see if I can apply some sort of logic such that
if(isdifferentuser){
dont save preferences
}
but I dont know how to differentiate between... | |
doc_36796 | What i have done so far:
*
*Install open-jdk 17:
openjdk 17.0.3 2022-04-19 OpenJDK Runtime Environment (build
17.0.3+7-Ubuntu-0ubuntu0.20.04.1) OpenJDK 64-Bit Server VM (build 17.0.3+7-Ubuntu-0ubuntu0.20.04.1, mixed mode, sharing)
*Update the pom.xml file and changed form 1.8 to 17
Now things build and run succ... | |
doc_36797 | I want to use this HTML form in django with model and view.
I dont want to use form class in html like
<form method="post" action="">
{% csrf_token %}
{{ form }}
<input type="submit" value="Register"/>
</form>
I want to use complete form code in HTML and use django model to store that data in database.
How can I do... | |
doc_36798 | <cfset MyVar="Woila!">
<cfoutput>
<cfexecute name="C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe"
arguments="$MyVar = #MyVar# C:\Users\raimonds\Desktop\create_website_IIS_aws_uat_1.ps1"
/>
</cfoutput>
The argument writes in the PowerShell command line, but it is not passing the variable into the .ps1 s... | |
doc_36799 | GoogleDrive App in iOS app store can play video in streaming by YouTube.
I have seen this post:
http://apiblog.youtube.com/2009/02/youtube-apis-iphone-cool-mobile-apps.html
According to the post, the key of play video is the YouTube source link.
The link lists GoogleDrive's all of file properties:
https://developers.go... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.