- Oct 2024
-
-
Local file Local file
-
The ongoing “placing”of the notes is then another work process that takes time; but also an activity thatgoes beyond the sheer monotony of reading and, as it were, incidentally trains thememory.
Elaborative Encoding/Rehearsal; highly useful. Networked thought. See Bloom's and Solo's
-
- Jul 2024
-
www.google.com www.google.com
-
for - search - google - high resolution addressing of disaggregated text corpus mapped to graph - search results of interest - high resolution addressing of disaggregated text corpus mapped to graph
search - google - high resolution addressing of disaggregated text corpus mapped to graph - https://www.google.com/search?q=high+resolution+addressing+of+disaggregated+text+corpus+mapped+to+graph&oq=high+resolution+addressing+of+disaggregated+text+corpus+mapped+to+graph&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIHCAEQIRigATIHCAIQIRigAdIBCTMzNjEzajBqN6gCALACAA&sourceid=chrome&ie=UTF-8
to - search results of interest - high resolution addressing of disaggregated text corpus mapped to graph - A New Method for Graph-Based Representation of Text in - The use of a new text representation method to predict book categories based on the analysis of its content resulted in accuracy, precision, recall and an F1- ... - https://hyp.is/H9UAbk46Ee-PT_vokcnTqA/www.mdpi.com/2076-3417/10/12/4081 - Encoding Text Information with Graph Convolutional Networks - According to our understanding, this is the first personality recognition study to model the entire user text information corpus as a heterogeneous graph and ... - https://hyp.is/H9UAbk46Ee-PT_vokcnTqA/www.mdpi.com/2076-3417/10/12/4081
-
-
www.youtube.com www.youtube.com
-
( ~ 3:25)
Learning how to learn has latent learning for most people. There is no immediate feedback and therefore you do not know how good your learning techniques are until you get to the point of exam.
One way to mitigate this is by having your own test... Past papers, hard recall techniques like Whole-Part-Whole, etc.
I need to find a way to effectively measure learning efficiency in terms of several components (how well is encoding, how well is recall, etc.)
Kolb's as well.
-
-
www.youtube.com www.youtube.com
-
Nishant says: 2x Output for 1x input...
His formula for mastery: 1. Learn (input -- focus, singletasking) 2. Reflect (output, pause... what is the main takeaway, how to use?) 3. Implement (output, apply) 4. Share (output, teach the material)
These principles are great... Obviously they are not comprehensive as they do not necessarily reflect higher order learning. See Bloom's and Solo's, nor take foundation of Cognitive Load Theory for example... It's understandable though since you can't mention everything in a 20 minute talk XD.
The argument I'd make is that the 3 subsequent steps are a part of learning. So the first step should not be called learn but rather encode, since that is literally the process of forming the initial cognitive schemas and putting them into long-term memory...
-
To be fair, for the picture argument... When you have seen a person only once it's more likely you remember their name, not their face. Additionally, if you have not seen someone for a very very long time the same is true.
I get the sentiment though and I agree.
-
- Jun 2024
-
coevolving.com coevolving.com
-
Generative patterns work indirectly; they work on the underlying structure of a problem (which may not be manifest in the problem) rather than attacking the problem directly. Good design patterns are like that: they encode the deep structure (in the Senge sense) of a solution and its associated forces, rather than cataloging a solution.
-
- May 2024
-
www.rfc-editor.org www.rfc-editor.org
-
Please note that '+' characters are frequently used as part of an email address to indicate a subaddress, as for example in <bill+ietf@example.org>.
Nice of them to point that this is a common scenario, not just a hypothetical one.
Tags
Annotators
URL
-
-
www.linkedin.com www.linkedin.com
-
Matthew van der Hoorn Yes totally agree but could be used for creating a draft to work with, that's always the angle I try to take buy hear what you are saying Matthew!
Reply to Nidhi Sachdeva: Nidhi Sachdeva, PhD Just went through the micro-lesson itself. In the context of teachers using to generate instruction examples, I do not argue against that. The teacher does not have to learn the content, or so I hope.
However, I would argue that the learners themselves should try to come up with examples or analogies, etc. But this depends on the learner's learning skills, which should be taught in schools in the first place.
-
-
www.linkedin.com www.linkedin.com
-
That teaching = learning. A widely held belief in L&D.
Reply to Alan Clark: Alan Clark Perhaps teaching is not learning, but teaching is an excellent way of consolidating and verifying knowledge. Depending on how one does it, the teaching improves both comprehension and retention. See, for example, the whole-part-whole reteaching method that Dr Justin Sung teaches in the advanced parts of the iCanStudy course.
Link for Hypothes.is context: https://www.linkedin.com/feed/update/urn:li:activity:7197621782743252992/?commentUrn=urn:li:comment:(activity:7197621782743252992,7198233333577699328)&dashCommentUrn=urn:li:fsd_comment:(7198233333577699328,urn:li:activity:7197621782743252992)
-
- Sep 2023
-
matthew-van-der-hoorn.notion.site matthew-van-der-hoorn.notion.site
-
https://matthew-van-der-hoorn.notion.site/matthew-van-der-hoorn/Book-Reading-bc745728387b4369b5b63739292c9ce7
van der Hoorn's suggestions for reading
-
- Jun 2023
-
twitter.com twitter.com
-
To be processed
-
- May 2023
- Mar 2023
-
github.com github.com
-
user = User.new(password: "あ" * 25) # 25 characters, 75 bytes
characters vs. bytes
-
-
developer.mozilla.org developer.mozilla.org
-
Chunked encoding is useful when larger amounts of data are sent to the client and the total size of the response may not be known until the request has been fully processed. For example, when generating a large HTML table resulting from a database query or when transmitting large images.A chunked response looks like this:
```http HTTP/1.1 200 OK Content-Type: text/plain Transfer-Encoding: chunked
7\r\n Mozilla\r\n 11\r\n Developer Network\r\n 0\r\n \r\n ```
-
```abnf Transfer-Encoding: chunked Transfer-Encoding: compress Transfer-Encoding: deflate Transfer-Encoding: gzip
// Several values can be listed, separated by a comma Transfer-Encoding: gzip, chunked ```
-
- Jan 2023
-
-
And misunderstandings so easily occur here, when we're talking about encodings, but not those encodings, the other encoding, which is really charset. And it's especially hard because you can't visually tell the difference and in so many cases everything still works even though it is wrong.
-
- Nov 2022
-
developer.mozilla.org developer.mozilla.org
-
The btoa() function takes a JavaScript string as a parameter. In JavaScript strings are represented using the UTF-16 character encoding: in this encoding, strings are represented as a sequence of 16-bit (2 byte) units. Every ASCII character fits into the first byte of one of these units, but many other characters don't. Base64, by design, expects binary data as its input. In terms of JavaScript strings, this means strings in which each character occupies only one byte. So if you pass a string into btoa() containing characters that occupy more than one byte, you will get an error, because this is not considered binary data:
-
If you need to encode Unicode text as ASCII using btoa(), one option is to convert the string such that each 16-bit unit occupies only one byte.
-
-
www.w3.org www.w3.org
-
The character exists in Unicode/ISO 10646, but not in the character encoding used for the document. In this case, use Numeric Character References (NCRs, example: 噸).
-
-
en.wikipedia.org en.wikipedia.org
- Aug 2022
-
www.google.com www.google.com
-
排查,log4j2配置 -> java vm option file encoding -> idea vm option file encoding 配置
-
-
cheatsheetseries.owasp.org cheatsheetseries.owasp.org
-
If you're using JavaScript for writing to a HTML Attribute, look at the .setAttribute and [attribute] methods which will automatically HTML Attribute Encode. Those are Safe Sinks as long as the attribute name is hardcoded and innocuous, like id or class.
-
If you're using JavaScript for writing to HTML, look at the .textContent attribute as it is a Safe Sink and will automatically HTML Entity Encode.
-
- Jul 2022
-
bafybeiac2nvojjb56tfpqsi44jhpartgxychh5djt4g4l4m4yo263plqau.ipfs.dweb.link bafybeiac2nvojjb56tfpqsi44jhpartgxychh5djt4g4l4m4yo263plqau.ipfs.dweb.link
-
A decision takes place when the encoding of a cognitive selection triggers, upondecoding, an occurrence of a difference that is, a state change within the system [11 ].
!- explanation : symbol-anchored encoding and decoding of cognitive selections
- In other words, people think, imagine, conceptualize
- and then encode that into live or recorded words
- that are then heard or read by others (decoded)
- and then a governance decisions subsequently results.
- !- gloss : cognitive selection trigger
- !- gloss : symbol-anchored encoding
- !- gloss : decoding cognitive selection
Tags
Annotators
URL
-
- Apr 2022
-
-
the brain stores social information differently thanit stores information that is non-social. Social memories are encoded in a distinctregion of the brain. What’s more, we remember social information moreaccurately, a phenomenon that psychologists call the “social encodingadvantage.” If findings like this feel unexpected, that’s because our culturelargely excludes social interaction from the realm of the intellect. Socialexchanges with others might be enjoyable or entertaining, this attitude holds, butthey’re no more than a diversion, what we do around the edges of school orwork. Serious thinking, real thinking, is done on one’s own, sequestered fromothers.
"Social encoding advantage" is what psychologists refer to as the phenomenon of people remembering social information more accurately than other types.
Reference to read: “social encoding advantage”: Matthew D. Lieberman, Social: Why Our Brains Are Wired to Connect (New York: Crown, 2013), 284.
It's likely that the social acts of learning and information exchange in oral societies had an additional stickiness over and beyond the additional mnemonic methods they would have used as a base.
The Western cultural tradition doesn't value the social coding advantage because it "excludes social interaction from the realm of the intellect" (Paul, 2021). Instead it provides advantage and status to the individual thinking on their own. We greatly prefer the idea of the "lone genius" toiling on their own, when this is hardly ever the case. Our availability bias often leads us to believe it is the case because we can pull out so many famous examples, though in almost all cases these geniuses were riding on the shoulders of giants.
Reference to read: remember social information more accurately: Jason P. Mitchell, C. Neil Macrae, and Mahzarin R. Banaji, “Encoding-Specific Effects of Social Cognition on the Neural Correlates of Subsequent Memory,” Journal of Neuroscience 24 (May 2004): 4912–17
Reference to read: the brain stores social information: Jason P. Mitchell et al., “Thinking About Others: The Neural Substrates of Social Cognition,” in Social Neuroscience: People Thinking About Thinking People, ed. Karen T. Litfin (Cambridge: MIT Press, 2006), 63–82.
-
- Aug 2021
-
www.w3.org www.w3.org
-
�Yes, but how will we ever keep track of such a large project?�
Unsure of the text encoding here. I'm forcing them to be interpreted as Unicode here, hence the appearance of the replacement character. My browser's default is to treat this document as "Central European (Windows)", but in that case, they appear as majuscule and miniscule S-cedilla characters (e.g.
Şhypertextş
).By a reasonable guess, these are supposed to be open and close quotes. I've seen these appear in other TBL-authored documents from the same era.
-
-
demo7.dspace.org demo7.dspace.org
-
Vol. 29, No. 1, Winter/Spring 2018 (includes ΓÇ£Conferences,ΓÇ¥ ΓÇ£Symposium,ΓÇ¥ ΓÇ£Publishing items,ΓÇ¥ ΓÇ£Citations received;ΓÇ¥ memoriam for William Ittelson, written by John Hollander; book note of ΓÇ£An Anthropology of Landscape: The Ex-traordinary in the Ordinar;ΓÇ¥ book review by Thomas Barrie; essays by Barbara Erwine, Edward Relph, and Dennis Pohl; poems by Sheryl L. Nelms.)
Encoding issues?
-
- Jun 2021
-
stackoverflow.com stackoverflow.com
-
As far as "Is there really no way to escape the < here?" there is a way... but you're not going to like it: %r<(?#{'<'}!foo)> == %r((?<!foo))
-
- Apr 2021
-
en.wikipedia.org en.wikipedia.org
-
The use of U+212B 'Angstrom sign', which was encoded due to round-trip mapping compatibility with an East-Asian character encoding, is discouraged, and the preferred representation is U+00C5 'capital letter A with ring above', which has the same glyph.
Is there a difference in semantic meaning between the two? And if so, what is it? 
-
-
stackoverflow.com stackoverflow.com
-
The quirky looking printf is necessary to correctly expand the script's arguments in $@ while protecting possibly quoted parts of the command (see example below).
-
- Mar 2021
-
inst-fs-iad-prod.inscloudgate.net inst-fs-iad-prod.inscloudgate.net
-
o put it in the language of psychology, there are limits on the number of distinct concepts which we can manipulate cognitively at any one time, and we. are therefore forced, if we wish to get a view of the whole problem, to re-encode these items.1
-
- Dec 2020
-
stackoverflow.com stackoverflow.com
-
One does not have to escape ] outside of the character class.
-
- Nov 2020
-
github.com github.com
-
If you needed a literal { character in your markup, you could always do {'{'}. (This is how it's done in React.) Or you could do {, which is pleasingly easy to remember. Does there need to be some method of escaping beyond that?
-
- Oct 2020
-
github.com github.com
-
By default all content inside template strings is escaped. This is great for strings, but not ideal if you want to insert HTML that's been returned from another function (for example: a markdown renderer). Use nanohtml/raw for to interpolate HTML directly.
-
-
stackoverflow.com stackoverflow.com
-
Escaping is a subset of encoding: You only encode certain characters by prefixing a special character instead of transferring (typically all or many) characters to another representation.
-
-
www.onwebsecurity.com www.onwebsecurity.com
-
Yet it can be deceivingly difficult to properly encode (user) input
They were talking about output encoding but then switched to input encoding? Did they really mean to say input encoding here?
-
When processing untrusted user input for (web) applications, filter the input, and encode the output.
-
Encoding is dependent on the type of output - which means that for example a string, which will be used in a JavaScript variable, should be treated (encoded) differently than a string which will be used in plain HTML.
-
Escaping is a subset of encoding, where not all characters need to be encoded. Only some characters are encoded (by using an escape character).
-
Encoding is transforming data from one format into another format.
-
what's the difference between escaping and encoding
Tags
- is this the right word?
- security: sanitizing input
- dependent on:
- relationship: subset
- output encoding
- simple explanation
- definition
- distinction
- what does this actually mean?
- hyponym
- encoding
- relationship: is a
- input encoding
- good explanation
- escaping (encoding)
- differences
- the specific context is important
- conversion (transform)
Annotators
URL
-
-
-
Before MDX, some of the benefits of writing Markdown were lost when integrating with JSX. Implementations were often template string-based which required lots of escaping and cumbersome syntax.
-
- Jul 2020
-
developer.mozilla.org developer.mozilla.org
- May 2020
-
docs.gitlab.com docs.gitlab.com
-
Encoding API parameters of array and hash types
Tags
Annotators
URL
-
-
stackoverflow.com stackoverflow.com
-
'
because it's in YAML
but this means you can't use any ' in the actual script line
or you have to use different delimiters if you do
bottom line is it makes it harder to write/include your script than simply creating a separate shell script file.
-
- Apr 2020
-
makandracards.com makandracards.com
-
What we actually want to do is to escape content if it is unsafe, but leave it unescaped if it is safe. To achieve this we can simply use SafeBuffer's concatenation behavior:
-
Our helper still returns a safe string, but correctly escapes content if it is unsafe. Note how much more flexible our group helper has become because it now works as expected with both safe and unsafe arguments. We can now leave it up to the caller whether to mark input as safe or not, and we no longer need to make any assumptions about the safeness of content.
-
A common mistake is to see those escaped angle brackets, and "improve" the helper by making everything html_safe:
-
-
security.stackexchange.com security.stackexchange.com
-
You don't "sanitize your output" you encode it for proper context within the application it is being presented. You encode the output for HTML, HTML Attribute, URL, JavaScript
-
When you output the data, you know the use case of the data. This knowledge allows you to safely sanitize the output data accordingly.
-
I would call this output encoding instead of sanitization
-
-
wpvip.com wpvip.com
-
1- Validation: you “validate”, ie deem valid or invalid, data at input time. For instance if asked for a zipcode user enters “zzz43”, that’s invalid. At this point, you can reject or… sanitize. 2- sanitization: you make data “sane” before storing it. For instance if you want a zipcode, you can remove any character that’s not [0-9] 3- escaping: at output time, you ensure data printed will never corrupt display and/or be used in an evil way (escaping HTML etc…)
-
- Jul 2019
-
www.willmcginnis.com www.willmcginnis.com
-
we want to code categorical variables into numbers, but we are concerned about this dimensionality problem
-
- Oct 2018
-
encoding.spec.whatwg.org encoding.spec.whatwg.org
-
- Sep 2016
-
www.dati.gov.it www.dati.gov.it
-
Formati aperti per i dati
Per molti dei formati di questo paragrafo, nella gran parte dei portali italiani, c'è molto spesso una grave lacuna: non viene mai dichiarato l'encoding dei caratteri. Questa è una barriera veramente fastidiosa. Andrebbe indicata da qualche parte la necessità (penso ai CSV, JSON, XML, ecc.) di specificare sempre l'encoding e di preferire ove possibile l'UTF8.
-
- Jul 2016
-
-
How we insist that the hateful language they hear from public figures on TV does not represent the true spirit of this country.
This line does some work. On one level, it is red meat for colorblind white (and some non-white) liberals who require all black figures to be hopeful (I've discussed this more here: http://www.theatlantic.com/politics/archive/2015/08/between-the-world-and-me-book-club-not-trying-to-get-into-heaven/400271/).
On another level, it is doing some inter-group communication or what Stuart Hall called encoding/decoding and what Mark Anthony Neal translates into "black code" when he talks about Hall's work through modern media cultures. Obama is signaling here that she has noted those who have directed racist, sexist, classist rhetoric at her family. She has taken note.
-
- Jun 2015
-
memex.naughtons.org memex.naughtons.org
-
h?Bb `mMbb?`THv +QmMi2` iQ i?2 T`2pBHBM; aBHB+QM oHH2v M``iBp2- r?B+? Bb 2bb2MiBHHvQM2 Q7i2+?MQHQ;B+H /2i2`KBMBbKĜ i?2 B/2 i?i i2+?MQHQ;v /`Bp2b ?BbiQ`vX
-