- Feb 2022
-
dmitripavlutin.com dmitripavlutin.com
-
Clean form code. Pretty elegant + covers best practices. This video also showed me some previously unknown HTML features.
Tags
Annotators
URL
-
- Dec 2021
-
blogs.dickinson.edu blogs.dickinson.edu
-
reap’d
To collect crop. Contraction of "reaped."
-
bourn
A small stream. Usually with this form, referring to the hills covered in chalk in southern England.
-
moss’d
In Middle-English, verbs in their past tense forms sometimes lose the vowel in the ending. Here, "mossed" becomes "moss'd."
-
brimm’d
In Middle-English, verbs in their past tense forms sometimes lose the vowel in the ending. Here, "brimmed" becomes "brimm'd."
-
o’er
The contraction of "over" is used in order to comply with poetic meter.
-
bourn
A small stream. Usually with this form, referring to the hills covered in chalk in southern England.
-
moss’d
In Middle-English, verbs in their past tense forms sometimes lose the vowel in the ending. Here, "mossed" becomes "moss'd."
-
brimm’d
In Middle-English, verbs in their past tense forms sometimes lose the vowel in the ending. Here, "brimmed" becomes "brimm'd."
-
o’er
The contraction of "over" is used in order to comply with poetic meter.
-
reap’d
To collect crop. Contraction of "reaped."
-
moss’d
In Middle-English, verbs in their past tense forms sometimes lose the vowel in the ending. Here, "mossed" becomes "moss'd."
-
brimm’d
In Middle-English, verbs in their past tense forms sometimes lose the vowel in the ending. Here, "brimmed" becomes "brimm'd."
-
o’er
The contraction of "over" is used in order to comply with poetic meter.
-
-
www.theatlantic.com www.theatlantic.com
-
What is the state? the authors ask. Not a single stable package that’s persisted all the way from pharaonic Egypt to today, but a shifting combination of, as they enumerate them, the three elementary forms of domination: control of violence (sovereignty), control of information (bureaucracy), and personal charisma (manifested, for example, in electoral politics).
-
- Nov 2021
-
docdrop.org docdrop.org
-
It may seem unreasonable to distinguish the Great Wanderings (Troy toKalypso's island) from the Homecoming (Kalypso's island to Ithaka). The reasonfor the distinction is Homer's way of recounting these two stages. The GreatWanderings are told by Odysseus in the first person; the Homecoming by thepoet in his own person. This makes a great difference. For instance, whenOdysseus is made to report divine intervention unseen by him, he has to find aplausible explanation (xii.389-390); when the poet tells the story in his ownperson, he can do as he pleases. Thus the change of technique, if nothing else,puts the two stages of wandering on different levels.
Interesting to note this shift in narrative style. How can one interpret this from the perspective of orality versus literacy?
-
-
dmitripavlutin.com dmitripavlutin.com
-
{ target: { value } }
This might seem confusing at first glance. However this is just simple "nested destructruing" and "smart function parameters" used together
Read the "Nested Destructuring" and "Smart Function Parameters" sections from the link below to get a better idea of what's going on.
https://javascript.info/destructuring-assignment#object-destructuring
the set() function can also be written as -----
let set = (name) => { return ( (e) => { setDetails( {...details , [ name ] : e.target.value }); console.log(details); }) }
notice how the predeclared variable
name
is being used as a key in the object.{ [name] : value }
NOT{ name : value}
. Skipping the box brackets will throw you an error This is becausename
is actually a variable. Similar to the way in which we useobject[key] = value;
notation to add a k-v pair, we have to use{ [name] : value }
ie. enclose the variable name in square brackets while creating an object using object literal syntax to make sure that the code works
Tags
Annotators
URL
-
- Oct 2021
-
www.jesperjuul.net www.jesperjuul.net
-
A paper as a game!
-
- Jun 2021
-
Local file Local file
-
"Dear Jenny: What am I working on? How is it going?
I love that after the break, he brings it back around to something from the beginning to close things out nicely. Something done by the best writers and usually the best comedians).
Create some context, then use that context to your advantage.
-
- May 2021
-
forestry.io forestry.io
-
these form handlers demonstrate that you can easily add dynamic behavior to your static site. The next time you decide that a static site is a bad choice for your use case, take a moment and consider: should your web frontend be responsible for this feature, or can you use some imagination and technical know-how to get the best of both worlds?
-
- Mar 2021
-
final-form.org final-form.org
-
The reason Final Form does this is so that pristine will be true if you start with an uninitialized form field (i.e. value === undefined), type into it (pristine is now false), and then empty the form field. In this case, pristine should return to true, but the value that the HTML DOM gives for that input is ''. If Final Form did not treat '' and undefined as the same, any field that was ever typed in would forever be dirty, no matter what the user did.
-
-
css-tricks.com css-tricks.com
-
Placeholders are suggestions for valid input, like putting “Tulsa” in an input labeled “City”.
-
- Feb 2021
-
github.com github.com
-
array :translations do hash do string :locale string :name end end array inputs can only have one input nested underneath them. This is because every element of the array must be the same type. And the inputs nested inside arrays cannot have names because they would never be used.
-
-
github.com github.com
-
@conference_form.submit(conference_params)
Surprised they called it
submit
, since that could imply that you're triggering an action called submit.They use other verbs to describe this:
- sync
- populate
- write
Analogous to Reform's sync / sync_models method.
Actually, the name makes a lot of sense when you see it in context:
@conference_form = ConferenceForm.new(conference) @conference_form.submit(conference_params) if @conference_form.save
-
-
github.com github.com
-
Seems similar to Reform, but simpler, plays nicely with Rails
-
-
coderwall.com coderwall.com
-
Of course our object doesn't have any contacts yet, so our controller will need to make sure that the form has at least one fields_for block to render by giving it one on initialization
-
-
nplusonemag.com nplusonemag.com
-
cultural capital
Introduced by Pierre Bourdieu in the 1970s, the concept has been utilized across a wide spectrum of contemporary sociological research. Cultural capital refers to ‘knowledge’ or ‘skills’ in the broadest sense. Thus, on the production side, cultural capital consists of knowledge about comportment (e.g., what are considered to be the right kinds of professional dress and attitude) and knowledge associated with educational achievement (e.g., rhetorical ability). On the consumption side, cultural capital consists of capacities for discernment or ‘taste’, e.g., the ability to appreciate fine art or fine wine—here, in other words, cultural capital refers to ‘social status acquired through the ability to make cultural distinctions,’ to the ability to recognize and discriminate between the often-subtle categories and signifiers of a highly articulated cultural code. I'm quoting here from (and also heavily paraphrasing) Scott Lash, ‘Pierre Bourdieu: Cultural Economy and Social Change’, in this reader.
Tags
Annotators
URL
-
- Oct 2020
-
final-form.org final-form.org
-
Note that the fields are kept in a flat structure, so a "deep" field like "shipping.address.street" will be at the key "shipping.address.street", with the dots included.
-
-
-
-
Mine requires that dirty and pristine be "calculated properties".
-
This is a philosophical issue, I think. People (and presumably form libraries) have different definitions of what "dirty" means. Yours: "The field has ever been edited" Mine: "The value of the field is different from the initial value"
-
Personally, I rather like the idea of typing into a field, backspacing to undo what you just typed, and having the field (and form) go back to being pristine. Aside from that aesthetic difference, my definition has the practical implication that it lets you know if you need to save the record or not.
-
We could potentially have another flag that was your definition of dirty, but then we run into the hard problem in computer science: naming things.
-
-
github.com github.com
-
formnerd.co formnerd.co
-
-
m5qwxpr6o8.csb.app m5qwxpr6o8.csb.app
-
Warnings, in this example, are defined as: suggestions to the user, like validation errors, but that do not prevent submission.
Tags
Annotators
URL
-
-
github.com github.com
-
In general it is recommended you handle forms in this "controlled" manner. In some cases it might make sense to manage the form state outside of Solid via refs. These "uncontrolled" forms can also work. Just be conscious of the difference as mixing approaches can lead to unexpected results.
-
- Sep 2020
-
codesandbox.io codesandbox.io
-
codesandbox.io codesandbox.io
-
Proving to myself that isValid does correctly change to true even when a key in $errors is an array.
-
-
svelte-forms-lib-sapper-docs.now.sh svelte-forms-lib-sapper-docs.now.sh
-
codesandbox.io codesandbox.io
Tags
Annotators
URL
-
- Jul 2020
-
github.com github.com
Tags
Annotators
URL
-
- Jun 2020
-
www.reddit.com www.reddit.com
-
Man, just because it gets rid of SO MUCH boilerplate I want to switch already.It kills me everytime I work with forms in React. So much noise for such a simple task.
-
- May 2020
-
developer.enonic.com developer.enonic.com
-
The main use of schemas is to define forms that can be edited through the admin interface.
Tags
Annotators
URL
-
- Apr 2020
-
github.com github.com
-
Similar to: form_for, but not actually for forms, apparently
Tags
Annotators
URL
-
-
github.com github.com
-
There are few ways to build forms with objects that don't inherit from Active Record, as follows:
Tags
Annotators
URL
-
- Jan 2020
- Oct 2019
-
github.com github.com
- Aug 2019
-
developer.paciellogroup.com developer.paciellogroup.com
-
codesandbox.io codesandbox.io
-
github.com github.com
Tags
Annotators
URL
-
- May 2019
-
blog.angular-university.io blog.angular-university.io
-
But like its usual in the case of Observable-based APIs, FRP techniques can help easily implement many use cases that would otherwise be rather hard to implement such as: pre-save the form in the background at each valid state, or even invalid (for example storing the invalid value in a cookie for later use) typical desktop features like undo/redo
key point on why FRP is good: misc usages on each 'state' change in the form - record and save state for 'undo' feature, save to local storage to be recovered later, etc
-
This is why this is called template-driven forms, because both validation and binding are all setup in a declarative way at the level of the template.
key point on naming of 'template-driven forms'
-
You are probably wondering what we gained here. On the surface there is already a big gain: We can now unit test the form validation logic
key point - advantage of reactive forms is the testability of its validation
-
- Jan 2019
-
static1.squarespace.com static1.squarespace.com
-
intervening in so many disparate "content" areas, this historyalso offers a wealth of divergent structural possibilities for rhetoric.
Here, is the author suggesting that the different forms or structures of rhetoric compete or can be at odds with each another?
-
- Oct 2018
-
developer.mozilla.org developer.mozilla.org
- Sep 2018
-
hypothes.is hypothes.is
-
I believe people in sometimes feel they have no voice are say. There are pathways were people try there best to find change and still see no result i believe to have to change we have to write congress men and people in the government letters to how we may feel. We must be aware together but, its better sometimes to be the odd person out the bunch. It takes one person doing something different to see results.
Tags
Annotators
URL
-
- Sep 2017
-
wellcomeopenresearch.org wellcomeopenresearch.org
-
protocol available at doi: 10.7910/DVN/V1TKIO20
kudos for citing (rather than just mentioning) the dataset and especially for including the consent forms (they are in Study_protocol.docx)
-
-
lti.hypothesislabs.com lti.hypothesislabs.com
-
Elizabeth’s discontent stems from the way that she grafts individual choice onto social forms. Marriage, for Elizabeth, should not be defined by its being an omnipresent social form; it should be made meaningful by the intentions behind it.
Moe aptly presents her argument again, as she argues that Elizabeth's frustration with Charlotte, for example, has to do with her own issues managing her frustration with "social forms." Moe allows the reader to "fill in the blank" here, as the reader can use this piece of information to better understand Elizabeth's reaction to Charlotte--her frustration is in Charlotte's refusal to resist the social forms that inherently oppress women and impact the emotional aspect of marriage. By giving her reader room to make this judgement herself, Moe's argument consequently becomes more concrete.
-
- Feb 2017
-
static1.squarespace.com static1.squarespace.com
-
This awakens the idea that, in addition to the leaves, there exists in nature the "leaf': the original model according to which all the leaves were perhaps woven, sketched, measured, col· ored, curled, and painted-but by incompetent hands, so that no specimen has turned out to be a correct, trustworthy, and faithful likeness of the original model.
Does this almost harken back to Plato's Theory of Forms, or the idea that a perfect and original realization of a thing exists in a higher form beyond our grasp? Can we only see and know shadows of a thing (in this case, a leaf) and mere copies of our perception of that thing?
-
- Jun 2016
-
canvas.sfu.ca canvas.sfu.ca
-
Three different kinds of capital guided the authors through the the analysis, including-human, social and cultural capital.
-
- Feb 2016
-
www.libraryinnovation.org www.libraryinnovation.org
-
Google Forms
Chosen survey-taking software for iPad surveys given to users at GSU.
-
- Sep 2015
-
cms.whittier.edu cms.whittier.edu
-
The spatial order, including the built environment, is not only the product of classificatory collective representations based on social forms but also a model for reproducing the social forms themselve
Are we allowing the technology we use to build around us reform the way society interacts with itself and its surroundings?
-
- Nov 2013
-
caseyboyle.net caseyboyle.net
-
Their senses nowhere lead to truth; on the contrary, they are content to receive stimuli and, as it were, to engage in a groping game on the backs of things.
Easily entertained and distracted in a battle of egos on the surface of "forms"
-
They are deeply immersed in illusions and in dream images; their eyes merely glide over the surface of things and see "forms."
Plato's shadow cave.
-
They are deeply immersed in illusions and in dream images; their eyes merely glide over the surface of things and see "forms."
This reminds me of Plato, and illusion of what is real but not the real knowledge.
-