This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Linguistic anthropology - Wikipedia | |
**Linguistic anthropology** is the interdisciplinary study of how language influences social life. It is a branch of anthropology that originated from the endeavor to document endangered languages, and has grown over the past century to encompass most aspects of language structure and use. | |
Linguistic anthropology explores how language shapes communication, forms social identity and group membership, organizes large-scale cultural beliefs and ideologies, and develops a common cultural representation of natural and social worlds. | |
## Historical development | |
As Alessandro Duranti has noted, three paradigms have emerged over the history of the subdiscipline: the first, now known as "anthropological linguistics," focuses on the documentation of languages; the second, known as "linguistic anthropology," engages in theoretical studies of language use; the third, developed over the past two or three decades, studies questions related to other subfields of anthropology with the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Source](https://en.wikipedia.org/wiki/Linguistic_anthropology "Permalink to Linguistic anthropology - Wikipedia") | |
# Linguistic anthropology - Wikipedia | |
**Linguistic anthropology** is the [interdisciplinary][1] study of how language influences social life. It is a branch of [anthropology][2] that originated from the endeavor to document [endangered languages][3], and has grown over the past century to encompass most aspects of [language structure][4] and use.[[1]][5] | |
Linguistic anthropology explores how language shapes communication, forms social identity and group membership, organizes large-scale cultural beliefs and ideologies, and develops a common cultural representation of natural and social worlds.[[2]][6] | |
## Historical development[[edit][7]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "TextWrangler" | |
open theFile | |
replace "[FIND TEXT]" using "[REPLACE TEXT]" searching in text 1 of front document options {starting at top:false, wrap around:true, backwards:true, case sensitive:true, match words:true, extend selection:false} | |
replace "[FIND TEXT 2]" using "[REPLACE TEXT 2]" searching in text 1 of front document options {starting at top:false, wrap around:true, backwards:true, case sensitive:true, match words:true, extend selection:false} | |
tell front document | |
save | |
end tell |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hazelProcessFile(theFile) | |
on hazelProcessFile(theFile) | |
tell application "TextWrangler" | |
open theFile | |
tell application "TextWrangler" | |
set theFindResult to find "<outline text=\"(.*)\" >" searching in text document 1 options {search mode:grep, starting at top:true} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="never" page-range-format="chicago"> | |
<!-- This style was edited with the Visual CSL Editor (http://editor.citationstyles.org/visualEditor/) --> | |
<info> | |
<title>Boundary 2 Chicago Manual of Style 16th edition (author-date) No Initials</title> | |
<id>http://www.zotero.org/styles/boundary-2-chicago-manual-of-style-16th-edition-author-date</id> | |
<link href="http://www.zotero.org/styles/boundary-2-chicago-manual-of-style-16th-edition-author-date" rel="self"/> | |
<link href="http://www.chicagomanualofstyle.org/tools_citationguide.html" rel="documentation"/> | |
<author> | |
<name>Julian Onions</name> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="never" page-range-format="chicago"> | |
<!-- This style was edited with the Visual CSL Editor (http://editor.citationstyles.org/visualEditor/) --> | |
<info> | |
<title>Boundary 2 Chicago Manual of Style 16th edition (author-date)</title> | |
<id>http://www.zotero.org/styles/boundary-2-chicago-manual-of-style-16th-edition-author-date</id> | |
<link href="http://www.zotero.org/styles/boundary-2-chicago-manual-of-style-16th-edition-author-date" rel="self"/> | |
<link href="http://www.chicagomanualofstyle.org/tools_citationguide.html" rel="documentation"/> | |
<author> | |
<name>Julian Onions</name> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I recently migrated ( http://keywords.oxus.net/ ) from my own server to GitHub project pages using Jekyll and the Hyde theme ( https://github.com/poole/hyde ). This Gist documents some of the issues I faced and how I solved the problems. | |
1. I tried to follow the instructions found on these sites: | |
http://blog.8thcolor.com/en/2014/05/migrate-from-wordpress/ | |
http://blog.codeinside.eu/2014/09/13/How-We-Moved-From-Wordpress-To-Jekyll-On-Windows/ | |
http://www.nooku.org/blog/2013/03/from-wordpress-to-jekyll/ | |
http://chadfield.org/work/how-i-migrated-wordpress-to-jekyll/ | |
http://www.girliemac.com/blog/2013/12/27/wordpress-to-jekyll/ | |
http://virtuallyhyper.com/2014/05/migrate-from-wordpress-to-jekyll/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Google Chrome" | |
set the clipboard to (the URL of active tab of first window of application "Google Chrome") as text | |
end tell | |
tell application "Sente 6" to activate | |
tell application "System Events" | |
keystroke "t" using command down | |
keystroke "v" using command down | |
keystroke return | |
end tell |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
to searchReplace(thisText, searchTerm, replacement) | |
set AppleScript's text item delimiters to searchTerm | |
set thisText to thisText's text items | |
set AppleScript's text item delimiters to replacement | |
set thisText to "" & thisText | |
set AppleScript's text item delimiters to {""} | |
return thisText | |
end searchReplace | |
on write_to_file(this_data, target_file, append_data) -- (string, file path as string, boolean) |