_id
stringlengths
2
6
text
stringlengths
4
46k
title
stringclasses
1 value
d3501
Add padding to the photographs. Padding (e.g. of 10px) will add a 10px white space on all sides (unless you specify padding-top or padding-bottom etc.. which you can do if you prefer. ) You could also add a margin to the container. A negative margin-top will shift the appearance of the position of the container upward...
d3502
I am editing my response to see if maybe I can clarify. If you have a data directive, can you just allocate a static size block of memory with it? e.g. .DATA poolOfDwords DWORD 1000 Then, just initialize them to values that you know you cannot get (-1 maybe?). Then, when you need to "allocate" a DWORD, you can j...
d3503
You need to use MQ PCF via Java. request = new PCFMessage(CMQCFC.MQCMD_INQUIRE_CHANNEL_STATUS); request.addParameter(CMQCFC.MQCACH_CHANNEL_NAME, "TEST.CHL"); request.addParameter(CMQCFC.MQIACH_CHANNEL_INSTANCE_TYPE, CMQC.MQOT_CURRENT_CHANNEL); request.addParameter(CMQCFC.MQIACH_CHANNEL_INSTANCE_ATTRS, ...
d3504
response.raw().request().url()
d3505
You could use the grails session to store the current state of the user. Then, on login, check the grails session and determine whether to show your message or not.
d3506
Tomcat uses whatever port or ports and protocols you configure it to use. By default it listens for HTTP requests on tcp/8080, AJP requests on tcp/8009, and service management requests on tcp/8005. This is configured in Connector elements in $CATALINA_HOME/conf/server.xml: https://tomcat.apache.org/tomcat-7.0-doc/conf...
d3507
It is because of the limit of PHP integers on 32-bit platforms. 2147 (seconds) * 1000000 (microseconds in one second) ~= PHP_INT_MAX on 32-bit platforms. On 64-bit platforms the limit would be ~ 300k years. The strange thing is that React's React\EventLoop\StreamSelectLoop calls stream_select() only with microseconds p...
d3508
error reading /var/lib/kubelet/pki/kubelet.key, certificate and key must be supplied as a pair Usually, this is a permission issue. Check permissions of the certificate file, it should be readable for Kubelet user. If it does not help you - please share the Kubelet logs, namely the logs of the daemon, do not start it...
d3509
EDIT 3: Only thing is you have to create multiple partitions, see these steps.First we make a config file for each of the brokers (on Windows use the copy command instead) > cp config/server.properties config/server-1.properties > cp config/server.properties config/server-2.properties Now edit these new files and set ...
d3510
Your answer lies in Jenkins ProcessTreeKiller. A more detailed explanation here. It's a design decision to kill any processes that are spawned by the build to maintain a clean environment. Unfortunately that means you can't leave a process (such as Tomcat) running after the build. You can disable this functionality glo...
d3511
You want the actual String constructor: julia> String(['a', 'b', 'c']) "abc"
d3512
I propose you to use an exponential distribution: for(i=0 ; i<nrWinners ; i++){ value = exp(-lambda*i); distribution[i] = value; sum += value; } for(i=0 ; i<nrWinners ; i++){ distribution[i] /= sum; } Lambda is a positive parameter which will permit you to choose the shape of the distribution: * *...
d3513
Image elements don't have an innerText (maybe you mean innerHTML?) Easier maybe to check the alt attribute: If imgElm.getAttribute("alt") = "Select This Item" Then imgElm.Click Exit For End If A: Dim imgElm as IHTMLElement For Each imgElm In objIE.Document.getElementsByTagName("img") If imgElm.getAttribu...
d3514
As I recall, the \ character is escaping the ". It's supposed to be there. How do you want to use the JSON data? It would be nice if you could provide sample code for what you are doing with it. In my application I do the following, BufferedReader reader = new BufferedReader(new InputStreamReader(response.getE...
d3515
From the documentation for nl2br: nl2br — Inserts HTML line breaks before all newlines in a string (emphasis mine). It doesn't replace the newlines, it just inserts linebreaks. So if you try to revert nl2br by replacing <br />, you will get two \n, the old one and the one you inserted when replacing the <br />. The e...
d3516
You can make use of the min and max properties. Bind the max property to the current year like so: <ion-input [(ngModel)]="season.Year" type="number" [max]="{{(new Date()).getFullYear()}}"></ion-input>. The logic for getting the full year could be moved to the typescript file and could be stored in a variable like curr...
d3517
If I am not wrong when you click on any line in the source code, the lines get highlighted but the caret indicator is not showing and the code is not editable. I have faced the same problem many times and tried After File -> Invalidate Caches/Restart the problem has been solved. A: The problem faced has been solved by...
d3518
There is already good implementations in: * *fastapi_contrib *fastapi-users
d3519
If I understand you correctly, it's not bitwise you need, but a simple if conditional statement: if ($order['financial_status'] !== 'partially_refunded' || $order['financial_status'] !== 'refunded') { // Do something with $order['fulfillments'][0]['updated_at'] }
d3520
At this time, no, the only type of cross-account resource you can target in an EventBridge Rule is another EventBridge bus. This is not really clearly stated anywhere I found while investigating the same question, but you can infer it from the PutTargets docs (since Event bus is the only target listed as supported in a...
d3521
To the best of my knowledge, there is currently no software that would enable you to re-convert images into their nominal data. However, it's not that hard to write a piece of code that does it. Here are the steps (at a high level): * *extract the images from the pdf document (use iText) *separate out those images ...
d3522
Something like this if I understood correctly: array = ["/uploads/content/attachment/folder/file1.pdf/file2.pdf/file3.pdf"] base = "https://www.example.com/" #the first part of the link, that's same for all links links = array.first[1..-1].split("/").map{|a| base + a} puts links #=> "https://www.example.com/uploads",...
d3523
I'll show you my code for CSRF prevention: config.php Configuration file should be auto-loaded in every page using require or include functions. Best practice would be to write a configuration class (I'll just write down functions in order to simplify my code). session_start(); if(empty($_SESSION['CSRF'])){ ...
d3524
With some additional testing, it appears that using admin.firestore.FieldValue.serverTimestamp() counts as an extra 'write'. With the code as above, I'm limited to 249 items (i.e. when output.length >= 250, the code will fail with that error message. If I remove the reference to serverTimeStamp(), I can get up to 499 i...
d3525
Looks like, your NewsObject isn't a JSON object but string. It could happen because JQuery can't guess the response type, so you, probably, need to specify dataType for your $.post request (documentation): $.post("server/news.php", null, function(e){ ... }, 'json'); P.S. Also your JSON not looks valid, i expect to see...
d3526
You can capture video through grabbing Jpeg images from a canvas element. You could also capture the entire page(if numerous videos in the same page) through grabbing the page itself through chrome. For audio, recording remote audio with the Audio API is still an issue but locally grabbed audio is not an issue. * *R...
d3527
In your previous example, you had a List<List<? extends Shape>>. Here you have a List<? extends Shape>. Completely different things. Given a MyArrayList<? extends Shape>, that is a REFERENCE (like a page in an address book, not like a house), and the 'page in the address book' (that'd be your variable) promises that th...
d3528
If you you install the PHP Internationalization Package, you can do the following: IntlTimeZone::createTimeZone('America/New_York')->getDisplayName() This will return the CLDR English standard-long form by default, which is "Eastern Standard Time" in this case. You can find the other options available here. For exa...
d3529
I'd think the easiest way to achieve this would be to use some JavaScript. Using the example code below should do the trick: var aside = document.getElementsByTagName("aside")[0], parent = document.getElementsByClassName("body-content")[0]; aside.style.width = ((parent.offsetWidth / 10) * 3) + "px"; Using this co...
d3530
SET WORKING_COPY=//ip-address/users/myDirB can not work, since cmd.exe needs a plain path (drive letter, colon, relative path). It can not deal with other paths like UNC or ip addresses. It must have a drive letter. SET WORKING_COPY=H:/myDirB this however doesn't work because you mapped H: to something as the user y...
d3531
To open a new window: Thread thread = new Thread(() => Application.Run(new MainForm())) { IsBackground = false }; thread.Start(); Obviously, this implies that if you access shared state from multiple threads, you need to properly synchronize that access. A: You can use MDI containers to support multiple windows....
d3532
The projects state is actually defined on the initial render cycle: const [ projects, setProjects ] = useState([]); So it's a defined prop when passed to ArtistList: <Route path="/artists" element={<ArtistList projects={projects} />} /> The issue starts when in ArtistList in the useEffect hook calling getArtists wher...
d3533
If you put a subreport in a cell then you can't optionally display something else in that cell. However from your comment you're trying to display values from two different datasets based on a condition, and you should be able to do this with an expression. Assuming there is some field in the table that can be used to...
d3534
Use "" in place of "0". chklstDepartment.SelectedValue == ""
d3535
I think you are looking for enumerateMediaDevices it seems to be implemented on all recent browsers (Not IE).
d3536
One way is to store the connection strings in IIS and they will be applied to the web.config automatically. See this post http://forum.winhost.com/threads/setup-the-connection-string-in-web-config.7592/
d3537
Your problem may be related to doing render '/admin/map_include_scripts' twice in the same page, which triggers another load of the maps and overlay APIs. When you do that after the first one has loaded your render '/admin/map_scripts', markers: markers, map_div_id: 'map2' may be executing the map rendering JS before t...
d3538
A range-based for loop (for a class-type range) looks up for begin and end functions. cbegin and cend are not considered at all: § 6.5.4 [stmt.ranged]/p1 *: [...] * *if _RangeT is a class type, the unqualified-ids begin and end are looked up in the scope of class _RangeT as if by class member access lookup (3.4.5), ...
d3539
Alright, I read a bit deeper into capturing/answers over at https://mockk.io/#capturing and saw there is a capture function. So I captured the lambda function in a slot which enables me invoke the lambda and then the actual code continues in the class under test. I can mock the rest of the behavior from there. Here is ...
d3540
That error is pretty clear: The text data type, which is deprecated as of SQL Server 2005, is not suitable for comparison so it is not possible to do sorting on it. The same goes for image data type. Read this for more details. In other words the database engine cannot do the sorting based on the column you have specif...
d3541
Per MDN's documentation on media queries, there are only a few features dedicated to size: width, height, device-width, and device-height. In the past, device-width and device-heigth was available for media queries, which could theoretically be sort of used for what you're attempting to do, but this has since been depr...
d3542
The main big problem is that you want to throw from the dtor. https://www.kolpackov.net/projects/c++/eh/dtor-1.xhtml has a nice explanation of why this does not play nicely with the language and its idioms. In general, if you expect that a device can fail at shutting down, then you should probably handle this part expl...
d3543
it seems that you might get that error if you have an whitespace before or after the link too. Can you check whether or not you have that white space in there? maybe that's it
d3544
'"sessionId":"(WC-\d+)"' that should work though i don't know jmeter A: Expected: Needs to Get the Session Id values Given formats: "sessionId":"WC-123" We need to create the following regex formats to extract the session Id values Regular Expression formats "sessionId":"(.+)"
d3545
Try: SELECT "I1" & "," & "I2" AS Item_set, Round(Sum([T1].Fuzzy_Value)/ttrans.Expr1,15) AS Support FROM (SELECT * FROM Prune AS t WHERE t.Trans_ID IN (SELECT t1.Trans_ID FROM ( SELECT *FROM Prune WHERE [Nama]="I1") AS t1 INNER JOIN (SELECT * FROM Prune WHERE [Nama]="I2") AS t2 ON t1.Trans_ID = t2.Tr...
d3546
You did not specify what kind of UI it is, but in general I would not use a textbox in case a user can choose between two things. It would make more sense to use a drop-down or combo box. As items in the boxes I would use the values of an enum: enum Type { PRODUCT_SUPPORT("Product support"), PRODUCT_LOCAL("Prod...
d3547
Use a dictionary comprehension. The value lists or None are created by short-circuiting the list slice from index one with None using the or operator: dct = {lst[0]: lst[1:] or None for lst in my_list} pprint(dct) {'a': ['b'], 'b': ['c', 'd', 'e', 'f'], 'g': None, 'h': ['i', 'j'], 'k': ['l', 'm', 'n', 'o', 'p', ...
d3548
If you know how to process one item (phones), then just generalize that into a function so you can run it to the whole list via lapply: process.one <- function(x) data.frame(xmin = x$xmin[-1,3], xmax = x$xmax[-1,3], text = x$text[3]) out <- lapply(tier.col, process.one) At this point, out is a list of data.frames...
d3549
Your code checks to see if internet explorer is less than internet explorer 9 and if so display one css. otherwise if internet explorer 7 then use the other css. If you are using internet explorer 10 then you likely do not have a css page (atleast from what we can see in the code that you posted. change that second lin...
d3550
I haven't tested this, but looks like it'll do what you're looking for. =INDEX(B$2:M$2,MATCH(TRUE,INDEX(B2:M2<>"-",),0)) Modified from here As Dirk pointed out, this actually returns the first match. A: if there are no empty dates between the values then, then this formula will do: =INDEX(B2:M2,COUNTIF(B2:M2,"<>-")) ...
d3551
There's two conventional ways to specify arguments, but these are not enforced at the shell level, they're just tradition: -v xxxx --value=xxxx Now it's sometimes possible to do: -vxxxx If you have a value with a dash and it's not being interpreted correctly, do this: --value=-value A: cmd -v '-string value with le...
d3552
in for example org.apache.poi.xssf.model.StylesTable.putStyle( XSSFCellStyle ) they try to find the xfs twice. It uses an ArrayList. The more cells, the slower this operation is. If you can, try to avoid a lot of dates.
d3553
Thanks for trying to solve the issue. I figured out what the problem was. WSName was set from code Directory.GetFiles(directory); so I can keep track of the properties to each CAD file. When the first class member used the value of WSName to create the worksheet. The value for WSName had "\". The actual name of the ...
d3554
This is because you are deleting all records from the table in every openAndQueryDatabase() finally { if (newDB != null) newDB.execSQL("DELETE FROM " + tableName); newDB.close(); } A: I guess your are again recreating the database again ..every time application starts A: Yes,...
d3555
As the very page you quote says, "The order in which the unary operator − (usually read "minus") acts is often problematical." -- it quotes Excel and bc as having the same priority for it as O'CAML, but also says "In written or printed mathematics" it works as in Python. So, essentially, there's no universal consensus ...
d3556
Use the document() function to load and leverage an external XML file within your XSLT. <xsl:variable name="Projects" select="document('http://some.url.to/file.xml')/DATA" />
d3557
The problem in the second example that when angular-formly is processing the options with the template, all angular-formly sees is: <plain-text> for the template. Hence, it doesn't know what element to place the required attribute on. angular-formly will only attach attributes like these to elements that have an ng-mod...
d3558
You can try the below - UPDATE c SET c.ProfidentFund = x.total from tblEmpInfo AS c INNER JOIN (SELECT EmpID, SUM(ProfidentFund) AS total FROM tblTransactions GROUP BY EmpID) AS x ON c.EmpID = x.EmpID
d3559
There is no guarantee which of independent ops is performed first, so you can get 13 or 14 in both cases. Your result is pure luck. Try this: with tf.Session() as sess: sess.run(tf.global_variables_initializer()) for i in range(100): val1, val2, val3 = sess.run([x, assign1, assign2]) print(val1, val2, val3)...
d3560
In order for SFINAE to work you need to use a parameter that is being deduced. In your case TCreator is already known so you can't use it. You can instead get around the problem by adding your own parameter and defaulting it to TCreator like template<typename T = TCreator, std::enable_if_t<!std::is_same_v<T,...
d3561
I believe on the Lambda, you can only write files on the /tmp directory as documented here. Try adjusting your code to do that and it should work.
d3562
* *I'd suggest moving this subject to https://superuser.com/ community. *It indeed sounds like a real conflict between Unified Functional Testing and Cortana. not sure that you, as an end-user, can solve it. * *First, I'd suggest the obvious - contact support of both companies, and update to the latest versions. ...
d3563
One way to do this would be to put a SSL (TLS) client certificate on every computer you want to allow access, then have your HTTP server ask for a valid certificate before allowing the user to connect to your Rails app. With nginx, for example, the configuration could look a bit like this: server { listen 44...
d3564
One way of doing it would be by saving your JSON response to a state. You can do this by using the on attribute of the form to set the state on the event submit-success as follows: <form id="form123" action-xhr="/formHandle" method="POST" on="submit-success:AMP.setState({ msg : event.response.messag...
d3565
A for loop (or any other control structure, for that matter) without curly braces operates on one statement only. So the first snippet would loop over the TriNumber calculation, but only call printf once the loop is done. It's equivalent to writing for(n = 5; n <= 50; n += 5) { TriNumber = ((n + 1) * n) / 2; } pri...
d3566
instead of converting image in to Gif apple provide UIImageView.animationImages proparty that you can Animation Number of images one by one like gif. like Bellow code:- UIImage *statusImage = [UIImage imageNamed:@"status1.png"]; YourImageView = [[UIImageView alloc] initWithImag...
d3567
Have a look at this thread: event.stopPropagation() not working in chrome with jQuery 1.7 I helped him solve this exact issue.
d3568
Please check if FTP 7.5 can be used on your Windows Vista machine, http://www.iis.net/expand/FTP If not, FileZilla is a free alternative, http://filezilla-project.org/download.php?type=server
d3569
Transitive components are the way to go. MS describes them here: http://msdn.microsoft.com/en-us/library/aa372462%28v=vs.85%29.aspx To follow up on what Chris said, playing with the reinstallmode can do some nasty things. This is particularly true if you're including any shared components. You can backlevel componen...
d3570
SSO is currently available in the Preview API Requirement Set for Outlook Add-ins. A: It is available in Outlook add-ins (in preview). Please see SSO in Office Add-ins, Preview status.
d3571
I ultimately could not find a full solution to the above directly, but I did find a npm module called. import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view'; I then nested this inside a ScrollView and included the View and Form inside it. <ScrollView <KeyboardAwareScrollView> <View> <!-- ...
d3572
Vacuuming won't have any effect on COPYed rows, which are effectively inserts. Vacuum physically deletes rows previously deleted with an SQL delete statement, which only marks the rows as deleted, so they don't participate in subsequent queries but still consume disk space. Redshift is an eventually consistent database...
d3573
You might try something like this: funcdecl: FUNC NAME OBRACKET arglist CBRACKET SEMI ; arglist: nonemptyarglist | ; nonemptyarglist: nonemptyarglist COMMA NAME | NAME ; I'd suggest using the grammar to build a syntax tree for your language and then doing whatever you need to the syntax tree af...
d3574
Modded the code to remove properly. I'm assuming this is selecting the correct list based off the code above. Also, a fiddle for example: http://jsfiddle.net/Tkt2B/ $("#<%=ddlCatchword.ClientID %>").removeAttr("disabled"); $("#<%=ddlCatchword.ClientID %>").find("option").remove().end() $("#<%=ddlCatchword.ClientID %>")...
d3575
With lxml and xpath you can parse xml much more easily than by rolling your own regex parser. Here's an example: import lxml import StringIO a =''' <att> <rt> <rts> <ip-address>1.1.1.1/16</ip-address> <bb> <cc> <protocol>ospf</protocol> </cc> </b...
d3576
I'll post what worked for me, thanks to @xavi-montero. Put your CSS in your bundle's Resource/public/css directory, and your images in say Resource/public/img. Change assetic paths to the form 'bundles/mybundle/css/*.css', in your layout. In config.yml, add rule css_rewrite to assetic: assetic: filters: css...
d3577
OK, Let's reproduce what you have said For this example I've used an Oracle Database. We have table t1 with let's say 4 columns (the ones that you mentioned) create table t1( main_product_number int, product_number int, product_title varchar2(20), product_version varchar2(40) ); Populate the table with some imagin...
d3578
They'll be the same. For example, <C> will match all of the following: c c c c c c c c c c c c c c c c c c c c c c c c c c c And <A> will match all of the following: a a a a a a a a a a a a a a a a a a a a a a a a a a a As a result, the EBNF for both will match. In general, if the left recursion is at the very begi...
d3579
:dependent => :destroy will call the destroy method on the model not the controller. From the documentation: If set to :destroy all the associated objects are destroyed alongside this object by calling their destroy method. That is, if you want something custom to your note_categories before being destroyed, you'll h...
d3580
Have you tried this? You can search the text using regular expressions. A: does not it help, if you take html page as text, strip html tags: String noHTMLString = htmlString.replaceAll("\\<.*?\\>", ""); and now count what you need in noHTMLString ? It could be helpful, if you have html page with markup like: this is...
d3581
primitive placeholder can be found in @react-three/fiber, importing this module will resolve the error. So the final code looks like: import React, { Suspense } from 'react' import { Canvas } from '@react-three/fiber' import { useGLTF } from '@react-three/drei' const MagicRoom = () => { // Importing model const Mo...
d3582
I think this is probably because you are not using setState in the right way, you should do : this.setState({ noteArray: noteArray }) and not : this.setState({ noteArray }); hope I helped you ;)
d3583
The exact code depends on your math library (probably included in the same package as your C library). You can look at the glibc implementation if you want to see one implementation. This is the function that gets used in glibc (from sysdeps/ieee754/flt-32/e_fmodf.c). float __ieee754_fmodf (float x, float y) { int3...
d3584
You need to know a name for each tab and how many to create, so create an array with the names you want, that tells you how many are needed and the name that should be used in the javascript call. /* My try making the number of tabs dynamically: */ $tabs = ['Home', 'News', 'Contact', 'About']; foreach ($tabs as $tab)...
d3585
After having run the fit line in my code, I have realized that the input-shape number must be equal to the number of columns obtained after the data preprocessing. Otherwise, it will result in an error.
d3586
it is a 9992x8750 image Yes, you're in the danger zone for a 32-bit process. That image requires a big chunk of contiguous address space, 334 megabytes. You'll easily get that when you load the image early, right after your program starts. You can get about 650 megabytes at that point, give or take. But that goes d...
d3587
Just use xcodebuild archive command
d3588
I used transform: translate(); to move object. Play with cubic-bezier here to achieve perfect animation. But I used the same which was on the website you posted in example. Also I removed opacity, visibility * { margin: 0; padding: 0; border: 0; } .img__wrap { position: relative; height: 200px; ...
d3589
(Edit: see solution below using triggers) The problem: Default values don't override explicitly setting a column to NULL Per the SQLite docs: The DEFAULT clause specifies a default value to use for the column if no value is explicitly provided by the user when doing an INSERT. The issue is that when Persistent is doi...
d3590
For a complete list of mission commands, see the MAV_CMD section in this list at https://pixhawk.ethz.ch. Not every flight controller that speaks mavlink implements every mission command. You'll need to research your particular flight control software to see what it supports. You'll also need to learn what each comman...
d3591
We're looking into it. Meanwhile, one workaround is editing .idea/sbt.xml and change the jdk option line to <option name="jdk" value="1.8" /> (or whatever you named the SDK in your project structure) and then refreshing your project. Update: The latest Nightlies of the Scala plugin change how the project JDK is set, wh...
d3592
Endianess also affects the way the compiler puts bit-field fields (the ":4" at the end means it's only 4 bits worth of the value) within bytes of the resulting structure. For big-endian, the bits populate from the most-significant. For little-endian, the bits populate from the least-significant.
d3593
Yes, you can use git to deploy your site content and manage it via version control. You can set your .gitignore to the following folders .DS_Store *.log /vendor /storage /plugins/october /modules/**/* /config /bootstrap /themes/demo artisan index.php .htaccess And it will upload the text/theme files you add/commit. Af...
d3594
Just thought id add my solution to this unanswered question - Most algorithms I tried out were just too computationally complex. I settled on an approximation of the maximum-coverage path which was quite efficiently computed using the reverse wavefront algorithm. Using this algorithm I was able to construct a maximum-...
d3595
Like the comment posted above says, there are two problems here: * *You're running the command in the parent, rather than the child. See the fork manual. *wait does not give you the return code. It gives you an integer that you need to decode. See the wait manual. Here's the corrected code: #include <stdio.h> #incl...
d3596
Change <form action="insert.php"> to <form action="insert.php" method="post"> The default HTTP method of a form is GET. You must specify POST since you are accessing it using $_POST. Then you should be able to get the value of the Data field in $Data. If it doesn't fix the errors, try the following: 1 Check the datat...
d3597
Because the .net compiler doesn't know what type of delegate to turn the lambda into. It could be an Action, or it could be a void MyDelegate(). If you change it as follows, it should work: Foo(new Action(() => { Console.WriteLine("c"); })); A: Why should the compiler know how to two-step: from lambda -> Action -> D...
d3598
After a heated discussion, it has been suggested that you rewrite your getProducts method to be more Promise-like. Don't mix callbacks with promises, put your code inside the then methods. Chain promises where you can. Either of these solutions described here should suffice You have to write your getProducts inside a ...
d3599
If you would use FCKeditor it would allow to you get clean HTML or XHTML (editor.GetXHTML()) which you could then write into DB. Actually it's not that much important what you write into DB, because usially you write original HTML (you can always strip from it saspicious tags if needed). In order to prevent XSS attacks...
d3600
In case when values are the same, there are printed in the same place. But you can use http://api.highcharts.com/highcharts#plotOptions.series.pointPlacement to move serie. A: I have typically done this by adding a decimal to the x value of the points that need to 'stack', as it were. There isn't a great (easy) way to...