id stringlengths 5 11 | text stringlengths 0 146k | title stringclasses 1
value |
|---|---|---|
doc_23511000 | Scenario:
*
*I have one container with a Flask app, served through gunicorn (which binds on port 8080).
*I have an nginx container that acts as a reverse proxy for TLS termination, request routing to other containers, etc. It needs to be able to forward requests to gunicorn/Flask in the first container.
I'm using D... | |
doc_23511001 | Here is the code sample .
$(document).on("select2:open", "select", function() {
$('.select2-results').mCustomScrollbar({
mouseWheel: true,
advanced: {
updateOnContentResize: true
}
});
});
The main issue is mousewheel scrolling. It works only if you hold the cursor over the scrollbar itself.
mousewh... | |
doc_23511002 | I would like to create a variable to flag the records which are outliers or not (1 and 0) using the information from the $index part of the output; I tried the following but with no luck:
tsoutliers(df$Y)
df$outliers = which(is.na(tsoutliers(df$Y)$index), 1, 0)
I would also like to replace the observed values with the... | |
doc_23511003 | Main Menu
A – Arithmetic Series
B – Geometric Series
C – Harmonic Mean
D – Geometric mean
E - Taylor Polynomial of Degree n
F – Largest Prime Number
Enter your choice:
inside a box
my code is
#include <iostream>
#include <cfloat>
using namespace std;
int main(){
string menu;
cout<<"_... | |
doc_23511004 | And debugging stops at
chatClient.Open()
with logs
"Invalid URI: The hostname could not be parsed."
chatClient is an object of my class inherited by public interface IPeerChannelChat
with
[ServiceContract(
Namespace = "http://slickthought.net/peerchannel",
CallbackContract = typeof(IPeerChannelChat))]
... | |
doc_23511005 | x = np.arange(24).reshape((2,3,2,2))
array([[[[ 0, 1],
[ 2, 3]],
[[ 4, 5],
[ 6, 7]],
[[ 8, 9],
[10, 11]]],
[[[12, 13],
[14, 15]],
[[16, 17],
[18, 19]],
[[20, 21],
[22, 23]]]])
I would like to reshape it to a (3,4,2) array like below:
array([[[ 0, 1],
[ 2... | |
doc_23511006 | Skip publishing to App Store Connect: no IPAs or PKGs found
ID : 63b942a48ab154742fe6b4d9
I have the codemagic.yml configuration for Ionic and Capacitor...
https://user-images.githubusercontent.com/56630992/211145195-f9233bce-34d0-40a2-86ae-23bf2b936a52.png
https://user-images.githubusercontent.com/56630992/211145181-5... | |
doc_23511007 | head -n 1 file.csv
I get this output:
801","40116","Hazelnut MT -L","Thursday Promo","Large","","5.9000","","801","1.0000","","3.6500","2.2500",".0000","default","","","","","Chatime","02/06/2014","09125a9cfffd4143a00e73e3b62f15f2","CB01","",".0000","5.9000","6.9000",".0000",".0000",".0000",".0000",".0000",".0000","0"... | |
doc_23511008 | Sub all_refresh()
'
' all_refresh Makro
'
'
ActiveWorkbook.Connections("Abfrage - Umrechnung").Refresh
ActiveWorkbook.Connections("Abfrage - Übersicht").Refresh
With Sheets("All").QueryTables(1) ' <<<<<here I get the error
If .Refreshing Then
MsgBox "Query is currently refreshing: please wa... | |
doc_23511009 | this is the code:
window
Window::Window (const std::string &title, int width, int height): title(title),width(width),height(height){closed=!init();}
bool Window::init(){
window=SDL_CreateWindow(title.c_str(),SDL_WINDOWPOS_CENTERED,SDL_WINDOWPOS_CENTERED,width,height,0);
renderer = SDL_CreateRenderer(window, -1, SD... | |
doc_23511010 | The definitions i have ended up with are:
/*
Minor
-----
-A determinant of a sub matrix
-The sub matrix used to calculate a minor can be obtained by removing more then one row/column from the original matrix
-First minors are minors of a sub matrix where only the row and column of a single element h... | |
doc_23511011 | Here is how i'm building a page (minimal example to reproduce):
<b-form-group v-for="(element, i) in banners" :key="i" :label="'Banner ' + (i+1)">
<input
type="text" class="form-control"
:v-model="element.name"
:name="'bannername[' + i + ']'">
<img :src="element.image" class="banner-preview">
</b-form-... | |
doc_23511012 | I am unable to figure the exact clickable element within the DOM when I look at the html source.
| |
doc_23511013 | The array could simply be:
{
1: {Name:Captain, Phone:18001234567}
2: {Name:Jack, Phone:18009876543}
3: {Name:Sparrow, Phone:18887892345}
}
I've selected PHP because I'm proficient with the language and my web server is a shared-linux host. Basically I cannot run Delphi here. I'm open to other options that ... | |
doc_23511014 | Create a larger dataset by stacking gm2
n=100 times over. That is, if nrg is the number
of rows of gm2 and ncg is the number of columns,
the larger dataset should have 100*nrg rows and
ncg columns.
Call your stacked dataset biggm2.
To create the stacked dataset,
initialize with biggm2 <- NULL and use
a for loop to b... | |
doc_23511015 | gene1 4.66E-05 1.45E-05
gene2 0.059650791 0.043799129
gene3 0.04405402 0.061581326
gene4 0.032286852 0.088522898
gene5 0.025672937 0.004911527
gene6 0.001094006 0.000229285
gene7 0.098444488 0.002132802
gene8 0.006079767 0.000230392
gene9 0.000117813 0.000894136
gene10 0.004925041 0.002640812
gen... | |
doc_23511016 | this is my code in controller
// current authenticated user status
$userStatus = auth()->user()->status;
// if the current authenticated user status is not approved return false
if($userStatus != Constants::APPROVED){
return back()->with('error_message', 'not approved');
}
this is my constant files
class Constan... | |
doc_23511017 | what I mean is that i will start coding a new program, and be writing code then go to build to check for errors, and then run the program, and it will work fine (if there were no errors). but then if I want to iterate the code to add features I implement (some of which should change output tremendously), and it is as t... | |
doc_23511018 | View model:
using System.Collections.Generic;
namespace Example
{
class Member
{
public string Name { get; set; }
public int Age { get; set; }
}
class Team
{
private List<Member> members = new List<Member>();
public string TeamName { get; set; }
public List... | |
doc_23511019 | I am using a registered server to monitor my MS SQL 2005, 2008, and 2012 environment. I use the following script daily to monitor my agent jobs. This script is pretty good for what I need. However, it's returning job info/status going back years. I'd like to return status for last x days only; but my attempts to mo... | |
doc_23511020 |
A: Paperclip is a popular choice for uploading and sizing images, but you can upload any type of file with it (doc, zip, txt, pdf... anything). Highly recommended. https://github.com/thoughtbot/paperclip
A: I like carrierwave. It has built in support for s3, has no workaround for setting up apps on heeroku unlike pa... | |
doc_23511021 | final AlertDialog.Builder alertDialog = new AlertDialog.Builder(this);
alertDialog.show();
alertDialog.setIcon(R.drawable.ic_launcher);
alertDialog.setTitle("Title");
alertDialog.setMessage("dialog");
alertDialog.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface ... | |
doc_23511022 | One suggested approach is:
*
*Parse the root file, saving said references as nodes (so, specific Grammar rules)
*Visit the tree searching for "reference" nodes
*for each reference node, parse the file referenced and substitute the node with the newly generated tree
*repeat this process recursively, to handle multi... | |
doc_23511023 | ItemRepository
@PreAuthorize("hasRole('ROLE_USER')")
public interface ItemRepository extends CrudRepository<Item, Long> {
@PreAuthorize("hasPermission(#entity, 'DELETE')")
<S extends Item> S save(S entity);
@PreAuthorize("hasRole('ROLE_ADMIN')")
void delete(Long id);
}
Following the suggestions in the answers... | |
doc_23511024 | <ul class="list-class">
<li><a href="#">All</a></li>
<li><a href="#">Breakfast</a></li>
<li><a href="#">Lunch</a></li>
<li><a href="#">Dinner</a></li>
<li><a href="#">Snack</a></li>
</ul>
Let's say now I wanted to create some function that does different things based on w... | |
doc_23511025 | public function setLastRun() {
Cache::forget('last_automation_api_run');
Cache::rememberForever('last_automation_api_run', function () {
return now()->toDateTimeString();
});
}
A: You should use remember and forget method in different functions.
public function getLastRun() {
return \Cache::reme... | |
doc_23511026 | I've been doing this on AJAX, but I'm not very good at JavaScript ( I'm kinda new in JS ). I think I might did something wrong, but I couldn't see it.
Below is some code
//HTML
<form method="POST" action="email.php" name="email-db" id="email-db">
<input type="email" class="email" name="email" placeh... | |
doc_23511027 | Many goroutines simultaneously call WriteData() function.
But linux gzip complains about corrupted file.
zcat ./2021-08-11-00.gz > /dev/null
gzip: ./2021-08-11-00.gz: invalid compressed data--format violated
It happend not every time, but about every second-trird writed file.
What is wrong with my code?
My DataWrite p... | |
doc_23511028 | Preferences systemRoot = Preferences.systemRoot();
The warning is as follows (or similar):
WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.
Note:
I want to just ignore this warning by not printing anything to the console inst... | |
doc_23511029 | Imagine a contour of a rubber duck, what I would like to do is to find the y position of the neck of the duck, that is where the contour is at its minimum horizontal dimension.
Could someone please point me in the right direction of how to find the "neck of the duck"?
In the code, binary is a threshold image of the mo... | |
doc_23511030 | cs 0x33 51
ss 0x2b 43
ds 0x0 0
es 0x0 0
fs 0x0 0
gs 0x0 0
I am trying to debug glibc code where I see the fs segment prefix in the functions I am dissembling:
(gdb) disas __lll_lock_wait
Dump of assembler code for funct... | |
doc_23511031 | remoteViews.addView(R.id.viewFlipper, itemViews);
The problem is that I need to load images from a URL in that layout. What is the best way to do this ?
I have a Lazy List loader but that does not work on RemoteViews and even after modification I think it is not correct to update the widget for every image which migh... | |
doc_23511032 | I have function of C# to get image (screenshot)
public Image GetImages()
{
Image screen_shot = null;
try
{
if (driverAndroid == null)
{
return screen_shot;
}
var screenshot = ((ITakesScreenshot)driverAndroid).GetScreenshot();
... | |
doc_23511033 |
SelectionError: Selection failed: could not convert string to float 'cold'.
I would like to select the molecules named "BF4", "EMI", and "TMA". The selection depend on the z position of the molecules. I have cold and cnew but I cannot compare the value of the z coordinate of each molecule with these two values as the... | |
doc_23511034 | INSERT INTO Customers (CustomerName, ContactName, Address, City, PostalCode, DateOfBirth)
VALUES ('Cardinal', 'Tom B. Erichsen', 'Skagen 21', 'Stavanger', '4006', '30/09/2014');
Note: DateOFBirth is in dd/mm/yyyy format.
But in SQL Server database table, it is inserting in the yyyy/dd/mm format but not in yyyy/mm/dd f... | |
doc_23511035 | <p:commandLink id="saveButton" value="Save" >
<p:ajax event="click" actionListener="#{bean.saveButtonPressed()}" />
<p:ajax event="click" actionListener="if(#{cbean.showSaveOverlay}){saveOverlay.show();}" />
</p:commandLink>
And showSaveOverly gets set inside saveButtonPressed.
... | |
doc_23511036 | Here is my development settings for the database.yml: which RubyMine created for me
development:
adapter: postgresql
encoding: unicode
database: mydb_development
pool: 5
username: myuser
password:
when I try to run the app, I get this error below, it seems that I didn't create a 'project' user yet, but, ho... | |
doc_23511037 | CREATE TABLE table_name ( Id, Column1, Column2 ) AS
SELECT 1, 'A,B,C', 'H' FROM DUAL UNION ALL
SELECT 2, 'D,E', 'J,K' FROM DUAL UNION ALL
SELECT 3, 'F', 'L,M,N' FROM DUAL;
Query:
SELECT t.id,
c1.COLUMN_VALUE AS c1,
c2.COLUMN_VALUE AS c2
FROM table_name t
CROSS JOIN
TABLE(
C... | |
doc_23511038 | E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.excelreader, PID: 2929
java.lang.RuntimeException: http://xml.org/sax/properties/declaration-handler
at org.apache.xmlbeans.impl.store.Locale$SaxLoader.<init>(Locale.java:3397)
at org.apache.xmlbeans.impl.store.Locale$XmlReaderSaxLoade... | |
doc_23511039 | This will lead the same function be hooked multiple times.
Do you know if there is a way to detect if the target app is already injected? or is there a way to avoid multiple injection?
A: You could check if the DLL is already loaded in the target application before proceeding with the injection:
*
*In .NET you can ... | |
doc_23511040 | The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the page must be declared in the document or in the transfer protocol.
In the first visi... | |
doc_23511041 |
e.preventDefault();
$.ajax({
//ajax stuff
success: functtion(data){
//do stuff with data, then submit form
$('#form').submit(); // <-- this wont submit the form
}
});
});
How can I submit this form after my ajax call is complete?
A... | |
doc_23511042 | Thanks
A: You need to dump the databases first and then upgrade. You need a running database server to dump the databases.
You will also probably experience problems jumping quite so many versions in one go, if your databases are of any size or complexity.
Have a look in /var/lib/postgresql - if you have directory ca... | |
doc_23511043 | But, when I enter New York than is it not an correct url. mywebsite/new york
It needs to be this http://www.website.com/New-York
How can I make a UITextField that replaces spaces with: --> -
Thanks for your help!
- (void)configureControls {
[self.activityIndicator stopAnimating];
[UIView animateWithDuration:1.5 an... | |
doc_23511044 |
PS C:\Users\ARAVIND SWAMY\projects\helloworld> cd "c:\Users\ARAVIND SWAMY\projects\helloworld\" ; if ($?) { g++ program50.cpp -o program50
} ; if ($?) { .\program50 }
Program 'program50.exe' failed to run: Access is deniedAt line:1 char:107
+ ... if ($?) { g++ program50.cpp -o program50 } ; if ($?) { .\program... | |
doc_23511045 | b'[{"cc_emails":["ccc@yyy.com"],"fwd_emails":[],"reply_cc_emails":["ccc@yyy.com"],"fr_escalated":false,"spam":false,"email_config_id":13000000444,"group_id":5000250803,"priority":1,"requester_id":5011075567,"responder_id":null,"source":1,"company_id":13000000455,"status":2,"subject":"[URGENT] - PNR TEAM -4 - XXXXXX","t... | |
doc_23511046 | activity_home.xml:
<include
layout="@layout/app_bar_home"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:lay... | |
doc_23511047 | public class SharedViewModel extends ViewModel {
public HashMap<Integer, MutableLiveData<String>> answers = new HashMap<Integer, MutableLiveData<String>>(){
answers.put(1, new MutableLiveData<String>())
answers.put(2, new MutableLiveData<String>())
answers.put(3, new MutableLiveData<... | |
doc_23511048 | I can only get the current click action by using @storybook/addon-actions.
| |
doc_23511049 | <div>
<h1></h1>
<p></p>
</div>
<div>
<h2></h2>
<input>
<div>
<p></p>
<input>
</div>
<div>
<h4></h4>
</div>
A: you can try to type in the CSS file for instance:
div:last-of-type
also if you need to target the second div you can get it by:
div:nth-of-type() in between the parances you can type... | |
doc_23511050 | grid.DataBind();
How can i show them like: http://i.imgur.com/MUQK0.png
What should i code in asp code?
<asp:GridView ID="OptionsView" runat="server" AutoGenerateColumns="False" >
<Columns>
<asp:BoundField DataField="//here,what should i code?" HeaderText="Options" />
</Columns>
</asp:GridView>
A: For customized out... | |
doc_23511051 | Some tested [row, column] values are:
[1, 2]
[2, 2]
gdb output for [2,2] i.e create_matrix(2, 2):
(gdb) print *prev_layer
$1 = {
nodes = 2,
weights = 0xb6438030,
biases = 0xb6438060,
values = 0xb6438080
}
(gdb) n
(before allocation): 0xb6438080
50 weights = create_matrix(2, 2);
(gdb) n
51 if ... | |
doc_23511052 | My Gemfile has following line:
gem 'paperclip', :git => 'http://github.com/thoughtbot/paperclip.git', :branch => 'rails3'
And the error message is:
NoMethodError: undefined method `has_attached_file' for #<Class:0x2a50530>
A: I have a paperclip fork, you can try if it will work at your end, just change your Gemfil... | |
doc_23511053 | public String checkPhoneNum(String inPhoneNum)
{
Pattern checkRegex = Pattern.compile("(\\([0-9]{3}\\)([0-9]{3}(-)[0-9]{4})");
Matcher regexMatcher = checkRegex.matcher(inPhoneNum);
if(regexMatcher.find())
{
return inPhoneNum;
}
else
return null;
}
is the string (\\([0-9]{3}\\)... | |
doc_23511054 | class PostDetail(Page):
template = "Post_Detail.html"
body = RichTextField(blank=True)
search_fields = Page.search_fields + [
index.SearchField("body"),
]
content_panels = Page.content_panels + [
FieldPanel("body"),
]
but when I added 2 PageDetail pages (with 15 mins time inte... | |
doc_23511055 | I think the problem is with z-order but couldn't find it after a bit of research.
Here is the simplified piece of code I have, just copy it to html file and it should work (enter letter a for example to see the problem):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
... | |
doc_23511056 | class MyItem {
public String prop1;
public String prop2;
}
Now normally, I would need a getter, like so:
class MyItem {
public String prop1;
public String prop2;
public String getProp1() {
return prop1;
}
}
But I do not have this luxury. Right now, I've got a Java implementation that ... | |
doc_23511057 | I have pushed to this repo from two different machines, so now one machine is current and another has outdated code. Right now, I am on the machine with outdated code, and I want to pull in the master/HEAD/whatever from GitHub.
And then I get to stare at this:
I do not want to do something stupid like delete the proje... | |
doc_23511058 | Using an unspecified index. Your data will be downloaded and filtered on the client. Consider adding '".indexOn": "name"' at authors to your security and Firebase Database rules for better performance
what does it mean?
is there something wrong with the database?
Query query = FirebaseDatabase.getInstance().getReferen... | |
doc_23511059 | import junit.framework.*;
public class TestClassTwo extends TestCase {
public TestClassTwo(String method) {
super(method);
}
// This one takes a few hours...
public void testLongRunner() {
TSP tsp = new TSP(); // Loard with default cities
assertEquals(140, tsp.shortestPath(5))... | |
doc_23511060 | Currently I am using this code:
$im = imagecreatefromjpeg($_FILES['image']['tmp_name'][$i]);
/* R, G, B, so 0, 255, 0 is green */
if ($im) {
imagefilter($im, IMG_FILTER_GRAYSCALE);
imagefilter($im, IMG_FILTER_EDGEDETECT);
imagefilter($im, IMG_FILTER_MEAN_REMOVAL);
imagefilter($im, IMG_FILTER_CONTRAST, ... | |
doc_23511061 | How I can do it?
https://docs.python.org/dev/library/pathlib.html#pathlib.Path.glob
A: You can also use the syntax ** from pathlib which allows you to recursively collect the nested paths.
from pathlib import Path
import re
BASE_DIR = Path('.')
EXTENSIONS = {'.xls', '.txt'}
for path in BASE_DIR.glob(r'**/*'):
... | |
doc_23511062 |
Traceback (most recent call last):
File "U:/My Documents/Python/Project1_real.py", line 119, in
main()
File "U:/My Documents/Python/Project1_real.py", line 40, in main
line_graph(return_lines)
File "U:/My Documents/Python/Project1_real.py", line 100, in line_graph
... | |
doc_23511063 | However, when I refresh the page without posting back again. (Just revisiting no re-posting) the contents changes. This just happens in Firefox and not in IE. Any idea what's causing this?
A: Without seeing the actual code, nothing more than a guess could be made.
Is it maybe a browser caching issue?
Make sure the pa... | |
doc_23511064 | The scope for a listener is:
static int MyListener(
kauth_cred_t credential,
void * idata,
kauth_action_t action,
uintptr_t arg0,
uintptr_t arg1,
uintptr_t arg2,
uintptr_t arg3
);
The arg0 ... arg3 depend on scope (i.e. context). To quote the documentation:
T... | |
doc_23511065 | app.js
app.route('/conn').post(function (req,res,next) {
var sys =require('util');
var myPythonScript ="script1.py";
var path =resolve("C:\\Python27\\python.exe");
var pythonExecutable = path;
var uint8arrayToString = function(data){
return String.fromCharCode.apply(nul... | |
doc_23511066 | exemple :
ID;Active (0/1);name;Categories (x,y,z...)
100;1;Pyjama long avec haut rayé imprimé - Taupe;PYJAMA FEMME
but when I try this it work fine ::
ID;Active (0/1);nom;Categories (x,y,z...)
100;1;aaaaaaaaaaaaaaaaa;PYJAMA FEMME
HELP PLEASE
A: I found the answer.I had to choose 'Fichier encodé en ISO-8859-1' :OUI
| |
doc_23511067 | a = (float)23 / (float)3; // a = 7.666....7
This is a long computation, and my app is OK with a certain amount of rounding error; I mean 7.67 or 7.66 doesn't matter. Is there a way to cut down the amount of computation time spent in computing the float, or telling math.h to 2 digits ?
Any idea how to do this ?
PS:
... | |
doc_23511068 | <html>
<style>
#left, #right {float:left; border:1px solid black; margin:10px;}
</style>
<div id="container">
<div id="left">
this is an image, the hight and width can vary
</div>
<div id="right">
this div should never wrap underneath the image. if it is higher than left image it needs to wrap under itself so the s... | |
doc_23511069 | My code is as follows
router.post('/input', function(req, res, err) {
main.getStackoverflowData(req.body, function(err) {
if (err) {
var vm = {
title: 'Alchemy API Dashboard | ',
pageTitle: "Input",
input: req.body
};
return res.render('/input', vm);... | |
doc_23511070 | f"{graph_url}/sites/{site_id}/lists/{list_id}/items"
But in this list I have specific folder where I want insert my item.
How the url should looks like?
Lets say {item_id} is the ID of the folder (which is another item on that list to be precise)
Should it be something like:
f"{graph_url}/sites/{site_id}/lists/{list_i... | |
doc_23511071 | Its suposed to be a list of generic "tokens" thus i used this constructor:
module Stack (Stack(S), dup, swap, pop, size) where
import Prelude
data Stack a = S [a]
But on the size operation, im suposed to add the size of the list to its head, like this:
size[1,2,3,4] = [4,1,2,3,4]
But i cant seem to define this func... | |
doc_23511072 | (defn -db-producer-factory [order-ids-chan next-chan]
(thread
(prn "db starting...")
(while true
(do
(prn "db starting2...")
;;
;; issue spot!
;; it stays blocked here-- the orderid doesnt come off the chan
;;
(let [order-id (<!! order-ids-chan)]
... | |
doc_23511073 | Is there any way to access the {name} inside summaryrender
Ext.define('TestResult', {
extend: 'Ext.data.Model',
fields: ['student', 'subject', {
name: 'mark',
type: 'int'
}]
});
Ext.create('Ext.grid.Panel', {
width: 200,
height: 240,
renderTo: document.body,
features: [{
... | |
doc_23511074 | public class LegionInputFormat
extends FileInputFormat<NullWritable, LegionRecord> {
@Override
public RecordReader<NullWritable, LegionRecord>
createRecordReader(InputSplit split, TaskAttemptContext context) {
/* Skipped code for getting recordDelimiterBytes */
return new ... | |
doc_23511075 | My Code
from bs4 import BeautifulSoup
from requests import get
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
import pandas as pd
# using Pandas to read the csv file
source_information = pd.read_csv('C:/chrome_driver/test_csv.csv', header=None, skiprows=[0])
print(source_inf... | |
doc_23511076 | Here is the Code
HTML
<nav id="su-top-header">
<ul>
<li><a href="#">Home</a></li>
<li class="su-dropdown-menu">
<a href="#">Question ▾</a>
<ul class="su-dropdown-content">
<li><a href="/">About us</a></li>
... | |
doc_23511077 | SELECT Format("start_date", 'mmmm') AS "Month",
DFS_FIRE_ARCHIVE.FIRE_YEAR AS "Year",
Count(DFS_FIRE_ARCHIVE.FIRE_ZONE) AS "Number of Fires",
OBJECTIVES_NFD."response_category"
FROM (DFS_FIRE_ARCHIVE
INNER JOIN OBJECTIVE_ORDER ON DFS_FIRE_ARCHIVE.OBJECTIVE = OBJECTIVE_ORDER.OBJECTIVE)
INNER JOIN OBJECTI... | |
doc_23511078 | The script works fine in FF (Greasemonkey and Scriptish), but when I use Chrome (using Tampermonkey or Ninjakit), it does not send the data, it sends the string * [object Object] * instead.
Here is my script:
// ==UserScript==
// @id myid
// @name myname
// @version 1.0
// @namespace o... | |
doc_23511079 |
A: From the HTML5 specs :
Authors must not include more than one main element in a document.
Authors must not include the main element as a descendant of an
article, aside, footer, header or nav element.
The main element represents the main content of the body of a document
or application.
So you should use main as ... | |
doc_23511080 | return (
<CardOuter>
<CardIcon>
<img className="CardIcons" alt="cardIcon" src={Icon} />
</CardIcon>
<CardContent>
<h3>{Title}</h3>
<ShowMore
lines={5}
more={<Link className="link-right" Content="Read More" />}
less={<Link className="link-right... | |
doc_23511081 | I want to add and subtract two dates as well as I want to subtract 1 year or 1 month from a particular date.
How is this possible using HQL in hibernate?
A: See
Performing Date/Time Math In HQL?
for an example.
To use custom sql you must wrote an own hibernate dialect and register:
registerFunction("weekday",
new ... | |
doc_23511082 | I have mounted the component using enzyme.
const wrapper = mount(
<Provider store={store}>
<CreateNavItemForm />
</Provider>,
)
const formWrapper = wrapper.find('CreateNavItemForm').first()
What is the difference and which approach is better?
const title = 'title'
1st:
formWrapper
.find('input')
.at... | |
doc_23511083 | # web/ |
# -----| user_socket.ex
# -----| analysis_channel.ex
# user_socket.ex
defmodule Protsci.UserSocket do
use Phoenix.Socket
channel "analysis:*", Protsci.AnalysisChannel
transport :websocket, Phoenix.Transports.WebSocket
def connect(_params, socket) do
{:ok, socket}
end
def id(_socket), do: n... | |
doc_23511084 | this question asks the same question, but it's dated since now Android supports Java8 with the Jack.
A: I don't know Jack, but it appears to not include an implementation of the java.time package built into Java 8 and later.
java.time back-port
Fortunately, much of the java.time functionality is back-ported to Java 6 ... | |
doc_23511085 | JTOpen site
The target file system was the QSYS one.
Being a personal project I had not much time to think about the structure, so I just tought about the QSYS structure and I came up with this hierarchy.
If you're not familiar with the IBMi architecture you can have a look here: AS/400 Objects and libraries
After sev... | |
doc_23511086 | also app should based on Theme.MaterialComponents.Light.NoActionBar to have no bad effect on other styles.
I've tried to set white color and ui visibility to light mode, but it seems force dark is applied to status bar background automatically.
the code looks like this:
var flags = it.decorView.systemUiVisibility or Vi... | |
doc_23511087 | abc1
abc2
abc3
I want to produce the string abc{1..3} or abc{1,2,3}. It's much like summarizing subnets in IP addressing.
I imagine a Rubyesque approach might involve sorting the strings and then building an array of their constituent characters, placing characters that don't overlap into nested arrays, recursively. H... | |
doc_23511088 | onLocationsSelectionChange = (locationsSelected) => {
console.log("does this work", locationsSelected, this.state.locationsSelected.length)
AsyncStorage.setItem('@MySuperStore:locationsSelected', JSON.stringify(this.state.locationsSelected));
const myArray = AsyncStorage.getItem('@MySuperStore:locationsSelected')
cons... | |
doc_23511089 | $(document).ready(function() {
$('#search_option').change(function() {
alert('changed');
if( $('#search_option').val() == "wiki" ) {
$('#search_form').setAttribute('action', "http://www.wikipedia.org/search-redirect.php");
$('#search_bar').setAttribute('name', "search");
... | |
doc_23511090 | Code sample:
tasks.run([&](){
if (event.wait(0)!=0)
{
event.set();
// work code ...
}
})
Such task may have many instances and only one should to work. But wait() and set() are different methods and code is not atomic. So, may be situation when two or more instances of task begin to work.
How I c... | |
doc_23511091 | This is my code:
List<myObj> myList = new ArrayList<>();
ArrayList doesn't identify get/set as optional. Moreover, in my understanding if I had used Array.asList() then I might have got these errors as Array.asList() wraps an array (fixed size) in the list interface.
So, my question is to please confirm if I'm corre... | |
doc_23511092 | ID | DATE
A | 1
A | 2
A | 3
B | 1
B | 2
and so on, and transforms it into;
ID | DATE1 | DATE2
A | 1 | 2
A | 2 | 3
A | 3 | NOW
B | 1 | 2
B | 2 | NOW
Where the numbers are dates, and NOW() is always appended to the most recent date. Given free rein I would do this i... | |
doc_23511093 | I'm managing to get all variations of json arrays except the one i need.
My database is:
**Aircraft** **Status**
A870_870 1
A870_871 1
A870_872 1
A870_873 1
A870_874 1
A870_875 1
A870_876 2
A870_877 ... | |
doc_23511094 | ExecutorService service;
List<Future<Integer>> tasks = new ArrayList<Future<Integer>>();
service = Executors.newFixedThreadPool(numOfThreads);
Then I initiate each thread:
for (int i = numOfThreads; i > 0; --i) {
tasks.add(service.submit(new StringSearcher(file, offset,threadChankSize, args[1],buffSize... | |
doc_23511095 | My current schema. "schema": "products" is the only thing added.
{
"name": "gallery",
"plural": "galleries",
"base": "PersistedModel",
"idInjection": true,
"options": {
"validateUpsert": true,
"schema": "products"
},
"properties": {
"id": {
"type": "number"
},
"name": {
"t... | |
doc_23511096 | hand = [ Card(10, 'H'), Card(2,'h'), Card(12,'h'), Card(13, 'h'), Card(14, 'h') ]
Card(10, 'H) here is not a tuple, but an object. I know how to sort this list if each item in the list was in a form of tuple, like this,
hand = sorted(hand, key = lambda x: x[0])
but I have no idea how to sort a list of objects. I want... | |
doc_23511097 | This question is, in some ways, a follow up on my earlier question regarding Push Notifications. After much time wasted I have more or less concluded that the issues I am running into, particularly with Titanium, are down to my not configuring my Keychain in the right order. I am now contemplating redoing it all from... | |
doc_23511098 |
from simpletransformers.question_answering import QuestionAnsweringModel, QuestionAnsweringArgs
i run the above piece of code and get this error
> ModuleNotFoundError Traceback (most recent call
> last) /tmp/ipykernel_3637/2280022744.py in <module>
> 1 import logging
> ----> 2 from simple... | |
doc_23511099 | I am able to modify the css for this bit using the label.error code bit I have. Label being the type and error is the class of that label being generated.
label.error
{
display:inline;
float:right;
}
> <td><input
> name="answer_engineeringjobs_1^11"
> id="answer_engineeringjobs_1"
> class="reqfield required zipUS err... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.