Tagged Questions
The quotations tag has no wiki summary.
12
votes
1answer
267 views
Inconsistent behaviour between (+) and (-) when using 'inline' and quotation evaluation
Does anyone know why sub throws an exception when add does not? And is this a bug?
open Microsoft.FSharp.Linq.QuotationEvaluation
let inline add x = x + x
let inline sub x = x - x
let answer = ...
7
votes
3answers
331 views
Why is it better to have 100 functions operate on one data structure than 10 functions on 10 data structure
I have seen this quoted in a lot of places:
"It is better to have 100 functions operate on one data structure than 10 functions on 10 data >structures." —Alan Perlis
But I have never seen it ...
7
votes
2answers
292 views
F#: Quotation with type definition?
I'm playing around with quotations and I can't see an expression pattern for type definitions. Is there really not one, or am I missing something?
<@@ type MyType (name:string) =
member x.Name ...
6
votes
3answers
207 views
F# special quotes? (##)
I just ran across
http://frankniemeyer.blogspot.com/2010/04/minimalistic-native-64-bit-array.html
Which contains the line
(# "sizeof !0" type('T) : nativeint #)
I believe the technical phrase is ...
5
votes
2answers
256 views
How to get a name of a variable coming into a function as a parameter using F#?
Is there any way in F# how to get a name of a variable passed into a function?
Example:
let velocity = 5
let fn v = v.ParentName
let name = fn velocity // this would return "velocity" as a string
...
5
votes
1answer
635 views
Converting F# Quotations into LINQ Expressions
I can convert a quotation of type Expr<'a -> 'b> to a Linq expression via the following snippet:
/// Converts a F# Expression to a LINQ Lambda
let toLambda (exp:Expr) =
let linq = ...
4
votes
1answer
315 views
Generating parameterized F# quotations
Let's say we have a simple F# quotation:
type Pet = { Name : string }
let exprNonGeneric = <@@ System.Func(fun (x : Pet) -> x.Name) @@>
The resulting quotation is like:
val exprNonGeneri ...
4
votes
2answers
168 views
embed a variable inside an f# quotation
i'm writing an F# dsl for SQL (http://github.com/kolosy/furious). A select statement would look like this:
type person = {
personId: string
firstname: string
lastname: string
...
4
votes
3answers
673 views
Extract string from between quotations
I want to extract information from user-inputted text. Imagine I input the following:
SetVariables "a" "b" "c"
How would I extract information between the first set of quotations? Then the second? ...
4
votes
2answers
516 views
F# quotations object graph
In C# I could create a string representation of an object graph fairly easily with expression trees.
public static string GetGraph<TModel, T>(TModel model, Expression<Func<TModel, ...
4
votes
4answers
542 views
Evaluate Quoted Expression in F#
I hope I haven't missed something obvious, but I've been playing with F# expressions and I want to evaluate quoted expressions on the fly. For example, I want write something like this:
let x = <@ ...
4
votes
4answers
609 views
How can I extract all quotations in a text?
I'm looking for a SimpleGrepSedPerlOrPythonOneLiner that outputs all quotations in a text.
Example 1:
echo “HAL,” noted Frank, “said that everything was going extremely well.” | ...
3
votes
1answer
111 views
Code quotations and Expression trees
I wonder if there is any difference in how the two features are implemented under the hood? I.e. Aren't just code quotations built on top of the old good expression trees?
Thanks.
3
votes
6answers
240 views
Quotation real usages
I faced with the 'quotation' term and I'm trying to figure out some real-life examples of usage of it. Ability of having AST for each code expression sounds awesome, but how to use it in real life?
...
3
votes
3answers
143 views
Call a function from its name as a string in f#
I thought that I might be able to do this with quotations - but I can't see how.
Should I just use a table of the functions with their names - or is their a way of doing this?
Thanks.
For more ...
3
votes
1answer
139 views
composing many quotations into linq queries
I'm working on a project in which I'm trying to use F# and Linq for UDF's and stored procs in an SQL server.
Part of that has been to statically define all the valid queries, the sorting criteria, and ...
3
votes
3answers
232 views
3
votes
2answers
320 views
How to do fixed price quote for design sessions?
Normally when I do a system for a customer, I do design sessions on an hourly rate and then come out with a fixed price quotation for the full system development.
Now this customer has thrown me a ...
3
votes
1answer
255 views
Is this an F# quotations bug?
[<ReflectedDefinition>]
let rec x = (fun() -> x + "abc") ()
The sample code with the recursive value above produces the following F# compiler error:
error FS0432: ...
3
votes
1answer
433 views
F# quotation evaluation issue
I'm getting an issue with the F# powerpack quotation evaluation.
open Microsoft.FSharp.Linq.QuotationEvaluation
let print x = System.Console.WriteLine(sprintf "%A" x)
type record = { x:int; y:int }
...
3
votes
3answers
261 views
Is there any built-in function for human-readable F# quotations?
When quoting
<@ 1 + 1 @>
I want "1 + 1"
instead of
"Call (None, Int32 op_Addition[Int32,Int32,Int32](Int32, Int32),
[Value (1), Value (1)])"
3
votes
3answers
436 views
How to extract citations from a text (PHP)?
Hello!
I would like to extract all citations from a text. Additionally, the name of the cited person should be extracted. DayLife does this very well.
Example:
“They think it’s ‘game over,’ ” ...
3
votes
2answers
623 views
What is the best way to markup a testimonial in XHTML?
I used to just use p and span elements for this... but I'm always pushing to use the right elements, and this is something I haven't really thought about before with regard to testimonials.
This is ...
2
votes
2answers
57 views
Nested quotations in HTML
I'm playing around with some bbcode for my forum, and I stumbled upon a problem concerning multiple nested quotations.
I'm trying to implement an image tooltip on mouseover.
<a ...
2
votes
2answers
93 views
Multiline inline-block becomes a block and ruins my nifty quote effect
I'm trying to create a block quote that has huge quotation marks on it's sides. The text content of the block quote is dynamic and so the marks should align according to it's size.
I've used an ...
2
votes
1answer
212 views
How to Get the F# Name of a Module, Function, etc. From Quoted Expression Match
I continue to work on a printer for F# quoted expressions, it doesn't have to be perfect, but I'd like to see what is possible. The active patterns in Microsoft.FSharp.Quotations.Patterns and ...
2
votes
4answers
184 views
How do I match a pattern with optional surrounding quotes?
How would one write a regex that matches a pattern that can contain quotes, but if it does, must have matching quotes at the beginning and end?
"?(pattern)"?
Will not work because it will allow ...
2
votes
3answers
126 views
How I can put " within an HTML attribute value
I wish to have the following:
<span title="This is a "good" title.">Catch me in the rice.</span>
It is obvious that this is not rendered well by the browsers. Please provide me with ...
2
votes
5answers
7k views
How to insert text with single quotation sql server 2005
I want to insert text with single quote
Eg john's to table in sql server 2005 database
2
votes
1answer
940 views
Strange behaviour XmlDocument.LoadXML and GetElementByID, how to delcare string with quotation mark
Here's some c# code
string webPageStr = @"<html><body><div id=""content"">good content</div><div id=""badcontent"">bad content</div></body></html>";
...
1
vote
1answer
39 views
NSXMLParser quotation in attribute text
I have a problem with parsing xml. I'm using NSXMLParser and when xml contains tag with attribute with data including quotation marks, it finishes with errorOccur and makes me very upset. Do you know ...
1
vote
4answers
114 views
how to print \" in C++
I need to print a string that says exactly:
std::string("-I\"/path/to/dir\" ");
Basically, I need to do this because I am using C++ code to generate C++ code.
I want to write the above string via ...
1
vote
1answer
91 views
Is it possible to differentiate between typed and untyped nested quotations?
For example, given <@ let x = <@ 1 @> in x @> and <@ let x = <@@ 1 @@> in x @>, I can match both with Patterns.Let(_, (Patterns.Quote(_) as q), _) -> q but I can't ...
1
vote
1answer
110 views
Distinguishing quoted generic value “call” and generic function call
Given the following:
let f<'a,'b> = typeof<'a>.Name, typeof<'b>.Name //val f<'a,'b> : string * string
let g<'a,'b>() = typeof<'a>.Name, typeof<'b>.Name //val ...
1
vote
3answers
193 views
Error evaluating synthetic quotation expression from PowerPack
I am trying to figure out to modify quotations and then evaluate them. Here I am starting basic and just trying to create a quotation using the Quotations api. The quotation binds OK, but I get an ...
1
vote
3answers
93 views
Looking for reference/quote/source on code maintenance
I have a vague recollection from way back in college of one my professors saying something to the effect that after only 3 weeks (on average) of not looking at the code for a program, studies showed ...
1
vote
1answer
114 views
Regexes for quotations
I've already got help here for creating a quotation extraction function. Thanks alot, soulmerge!
Now I'm looking for regular expressions (PHP) which extract the cited text and the cited person. The ...
1
vote
1answer
1k views
How to use escape character in replace function when replacing quotations in VB
Here is my code snippet:
Public Function convert(ByVal robert As String)
Try
robert = Replace(robert, "U", "A")
robert = Replace(robert, "\"", "A")
I want to ...
0
votes
2answers
83 views
How to concatenate strings together in csh?
I would like to concatenate strings together to create a command string in a csh script,file1.csh. However, csh keeps complaining errors for commandString variable and I do not really know what I did ...
0
votes
6answers
138 views
PHP - create function issue
I'm trying to understand this code and I can't :(
$time = date('Y-m-d', strtotime('-30 days'));
$what = create_function('$a', 'return $a.'.'"'." AND date > '$time'".'"'.';');
Why does the $time ...
0
votes
5answers
138 views
Elaboration of A quotation on 'Simple Design'
An excerpt from Programming Perls:
A Simple Design : Antonie de Saint-Exupery,
the Fresh writer and aircraft designer, said that,
*"A designer knows he has arrived at perfection
not when there is ...
0
votes
1answer
100 views
using an alternative string quotation syntax in python
Just wondering...
I find using escape characters too distracting. I'd rather do something like this:
>>> print ^'Let's begin and end with sets of unlikely 2 chars and bingo!'^
Let's begin and end ...
0
votes
2answers
294 views
random quote generator in php using mysql
i coded a random quote generator in php using mysql but also jquery. however when i try to integrate it with facebook, since i opted to use fbml, i could not use jquery.
how do i get the quote to ...
0
votes
1answer
92 views
Why are quotation marks showing up on certain text only in Safari?
See this page: http://www.humanperformanceadvisors.com/Prairie/Oklahoma/Postcards/1.html
and the pages following. Why am I seeing quotation marks surrounding the product descriptions? These do not ...
0
votes
1answer
92 views
how to display custom quotation marks with sifr?
I have some text and quotation marks around it, but I want each of them to be a different font to be replaced by sifr. The problem is that the quotes need to go exactly around the text, but the text ...