<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>mobile apps &#8211; anthro{dendum}</title>
	<atom:link href="/tag/mobile-apps/feed/" rel="self" type="application/rss+xml" />
	<link>/</link>
	<description></description>
	<lastBuildDate>Fri, 06 Apr 2018 02:55:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.5</generator>

<image>
	<url>/wp-content/uploads/2017/11/cropped-brackets-ico-file-32x32.png</url>
	<title>mobile apps &#8211; anthro{dendum}</title>
	<link>/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Text-laundering (Working With Text 3)</title>
		<link>/2018/01/28/text-laundering-working-with-text-3/</link>
		
		<dc:creator><![CDATA[Kerim]]></dc:creator>
		<pubDate>Mon, 29 Jan 2018 03:58:08 +0000</pubDate>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Tools We Use]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[mobile apps]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regular expressions]]></category>
		<category><![CDATA[text files]]></category>
		<category><![CDATA[tools we use]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[working with text]]></category>
		<guid isPermaLink="false">https://anthrodendum.org/?p=602</guid>

					<description><![CDATA[Ever copy and paste something that should be a solid paragraph of text only to have it end up looking a mess? You could fix it using Regular Expressions, or if you prefer not to have to muddle around with code, there are a number of tools out there which can automate this kind of text cleanup for you. ]]></description>
										<content:encoded><![CDATA[<p>Ever copy and paste something that should be a solid paragraph of text, which should look like this:</p>
<blockquote><p>
  Consuetudium lectorum Mirum est notare. Eodem modo typi qui nunc nobis videntur parum clari fiant sollemnes in futurum? Assum Typi non habent claritatem insitam est usus legentis in iis. Claritatem Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius Claritas est etiam. Nam liber tempor cum soluta. Est etiam processus dynamicus qui.
</p></blockquote>
<p>only to have it end up looking like this?</p>
<blockquote><p>
  Consuetudium lectorum Mirum est notare.<br />
  Eodem modo typi qui nunc nobis videntur parum clari fiant sollemnes in futurum? Assum Typi non habent claritatem insitam est usus<br />
  legentis in iis.<br />
  Claritatem Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius Claritas est etiam. Nam liber tempor cum soluta. Est etiam<br />
  processus dynamicus qui.
</p></blockquote>
<p>Most word processors have a command that lets you see invisible markers like spaces (usually represented as a faint dot “•”) and what are still quaintly called “carriage returns,” or “line feeds” (generally shown by the symbols ”¶” or “↵”).<sup id="fnref-602-1"><a href="#fn-602-1" class="jetpack-footnote">1</a></sup> If you turn that feature on, you will see that there are way too many such return symbols in the above text. It might seem like the solution would be to find and replace all those returns with spaces, but then you would have no paragraphs at all in your document. What you want to do is replace all the mid-paragraph returns, but leave those between paragraphs.</p>
<p>Using Regular Expressions (RegEx), as <a href="https://anthrodendum.org/2018/01/24/regex-101-working-with-text-2/">discussed in the last post in this series</a>, what we would want to do is search for every return (or line feed) that is not followed or preceded by a return (or line feed). In addition&#8211;since some paragraphs are separated not by a blank line but by a tab or sequence of spaces at the start of the new paragraph&#8211;we want to look for those as well. I find <a href="https://regex101.com/r/zshq1Q/1">the following search</a> works pretty well for me: <code>(?&lt;=[^\r\n\t ][^\r\n])\R(?=[^\r\n][^\r\n\t ]) </code>  It is easy to find many patterns like this in online forums, <a href="https://stackoverflow.com/questions/10464735/remove-single-line-breaks-keep-empty-lines">as I did</a>, saving you the trouble of having to re-invent the wheel.</p>
<p>If you prefer not to have to muddle around with code, there are a number of tools out there which can automate this kind of text cleanup for you. On macOS my favorite is the package of <a href="http://www.devontechnologies.com/products/freeware.html">free WordService menu extensions</a> from DEVONtechnologies. These are extensions that work with the built-in &#8220;Services&#8221; menu that pops up on macOS whenever you control-click on some selected text. The package offers a number of useful commands to do things like change the capitalization of the selected text (e.g. turn “THE APPLE” into “The Apple,” or “The apple,” etc.), reformat line breaks (or remove them altogether), and one that can give you useful statistics such as the word or character count of the selected text, etc.</p>
<p>Considering that WordService is free and does pretty much the same thing, you might not want to spend $45 for <a href="https://www.unmarked.com/textsoap/%5C">TextSoap</a>, but if you already have a subscription to the <a href="https://setapp.com/">Setapp</a> bundle of macOS apps then TextSoap is included with your subscription. Another option is <a href="http://sociomedia.com/textwell/">Textwell</a> which works on both macOS and iOS and can do much more than just clean text. It has some built in tools, much like those offered in WordService, but (if you aren’t afraid of tweaking the JavaScript in the example code) you also can make your own actions. I really like that these can be synced between the desktop and iOS. <a href="https://www.apimac.com/ios/cleantext/">Clean Text for iOS</a> is even easier to use, but less customizable. Since I don’t use Windows, Linux, or Android, etc. I’ll leave it for others to recommend their favorite text cleanup tools for those platforms in the comments.</p>
<hr />
<h3>List of posts in this series</h3>
<ul>
<li><a href="https://anthrodendum.org/2018/01/18/free-your-mind-the-text-will-follow-working-with-text-1/">Free Your Mind, the Text Will Follow (Working With Text 1)</a></li>
<li><a href="https://anthrodendum.org/2018/01/24/regex-101-working-with-text-2/">RegEx 101 (Working With Text 2)</a></li>
<li><a href="https://anthrodendum.org/2018/01/28/text-laundering-working-with-text-3/">Text-laundering (Working With Text 3)</a></li>
<li><a href="https://anthrodendum.org/2018/02/22/lazy-powerpoint-working-with-text-4/">Lazy PowerPoint (Working With Text 4)</a></li>
<li><a href="https://anthrodendum.org/2018/04/05/roll-your-own-qda-working-with-text-5/">Roll Your Own QDA (Working With Text 5)</a></li>
</ul>
<div class="footnotes">
<hr />
<ol>
<li id="fn-602-1">
Actually, there are significant differences between carriage returns and line feeds, but they aren’t important for this post.&#160;<a href="#fnref-602-1">&#8617;</a>
</li>
</ol>
</div>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author"><div class="saboxplugin-tab"><div class="saboxplugin-gravatar"><img alt='Kerim' src='http://0.gravatar.com/avatar/3f733bd06413af380fcd122e4be08dc4?s=100&#038;d=retro&#038;r=g' srcset='http://0.gravatar.com/avatar/3f733bd06413af380fcd122e4be08dc4?s=200&#038;d=retro&#038;r=g 2x' class='avatar avatar-100 photo' height='100' width='100' itemprop="image"/></div><div class="saboxplugin-authorname"><a href="/author/admin_kerim3916/" class="vcard author" rel="author"><span class="fn">Kerim</span></a></div><div class="saboxplugin-desc"><div itemprop="description"><p><a href="http://kerim.oxus.net/">P. Kerim Friedman</a> is a professor in the Department of Ethnic Relations and Cultures at National Dong Hwa University in Taiwan. His research explores language revitalization efforts among indigenous Taiwanese, looking at the relationship between language ideology, indigeneity, and political economy. An ethnographic filmmaker, he co-produced the Jean Rouch award-winning documentary, &#8216;Please Don&#8217;t Beat Me, Sir!&#8217; about a street theater troupe from one of India&#8217;s Denotified and Nomadic Tribes (DNTs).</p>
</div></div><div class="saboxplugin-web sab-web-position"><a href="http://kerim.oxus.net/" target="_self" >kerim.oxus.net/</a></div><div class="clearfix"></div><div class="saboxplugin-socials "><a title="Twitter" target="_self" href="http://twitter.com/kerim" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"></path></svg></span></a></div></div></div>
<p><a href="/2018/01/28/text-laundering-working-with-text-3/" rel="nofollow">Source</a></p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Mobile Apps for Ethnographic Research &#8211; #RoR2018</title>
		<link>/2018/01/16/mobile-apps-for-ethnographic-research-ror2018/</link>
					<comments>/2018/01/16/mobile-apps-for-ethnographic-research-ror2018/#comments</comments>
		
		<dc:creator><![CDATA[Dick]]></dc:creator>
		<pubDate>Tue, 16 Jan 2018 10:27:52 +0000</pubDate>
				<category><![CDATA[Tools We Use]]></category>
		<category><![CDATA[#ror2018]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[ethnography]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[magicplan]]></category>
		<category><![CDATA[mobile apps]]></category>
		<category><![CDATA[notability]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[onenote]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[scannerpro]]></category>
		<category><![CDATA[todoist]]></category>
		<category><![CDATA[whatsapp]]></category>
		<guid isPermaLink="false">https://anthrodendum.org/?p=455</guid>

					<description><![CDATA[Ethnographic research is difficult. It’s a challenge to find the right assistants, get access, recruit the right people, keep a schedule, make time for note-writing and transcription, and be self-motivated through it all. In Dakar, I depend on a number of mobile apps to help me keep the project together. Some of these apps may &#8230; <p class="read-more"><a class="readmore-btn" href="/2018/01/16/mobile-apps-for-ethnographic-research-ror2018/">+<span class="screen-reader-text"> Read More Mobile Apps for Ethnographic Research &#8211; #RoR2018</span></a></p>]]></description>
										<content:encoded><![CDATA[<p>Ethnographic research is difficult. It’s a challenge to find the right assistants, get access, recruit the right people, keep a schedule, make time for note-writing and transcription, and be self-motivated through it all. In Dakar, I depend on a number of mobile apps to help me keep the project together. Some of these apps may or may not be available on your phone or where you do research, but as I have done with these apps, I recommend finding something and just testing it out. I&#8217;m using an iPhone 6S and an iPad Pro 9.7&#8243;. (And FYI, none of the following links are sponsored.)</p>
<p><img decoding="async" class="wp-image-464 alignleft" src="https://anthrodendum.org/wp-content/uploads/2018/01/todoist-300x300.png" alt="" width="100" height="100" srcset="/wp-content/uploads/2018/01/todoist-300x300.png 300w, /wp-content/uploads/2018/01/todoist-150x150.png 150w, /wp-content/uploads/2018/01/todoist-270x270.png 270w, /wp-content/uploads/2018/01/todoist.png 512w" sizes="(max-width: 100px) 100vw, 100px" /></p>
<p><a href="https://todoist.com/">ToDoist</a> (iOS/Android/Windows): ToDoist is my lifeblood. It helps me keep track of everything I have to do today, tomorrow, eventually. You can organize your tasks into projects, add notes, and bring on collaborators. ToDoist syncs across all devices, and there is even a browser version. The best part, I think, is that ToDoist syncs with Google Calendar, and in both directions: if I add things to Calendar with a certain tag, it adds to ToDoist and vice versa. That way, I can add a meeting to Calendar, and then ToDoist will remind me. Optionally, ToDoist can send you an email every morning with your day’s tasks. ToDoist is basically what keeps my life together.</p>
<p>Social media apps (iOS/Android/Windows): Facebook, Twitter, and Instagram are my go-to social media apps. They help me talk to my colleagues back home who might have experience with this kind of research or in Senegal. They facilitate <a href="https://anthrodendum.org/2017/12/18/the-fieldnotes-ecosystem-of-ror2018/">my live-fieldnotes ecosystem</a> so that I can share what I’m learning in real-time.</p>
<p><img decoding="async" class="wp-image-465 alignleft" src="https://anthrodendum.org/wp-content/uploads/2018/01/whatsapp_PNG4-300x300.png" alt="" width="100" height="100" srcset="/wp-content/uploads/2018/01/whatsapp_PNG4-300x300.png 300w, /wp-content/uploads/2018/01/whatsapp_PNG4-150x150.png 150w, /wp-content/uploads/2018/01/whatsapp_PNG4-270x270.png 270w, /wp-content/uploads/2018/01/whatsapp_PNG4.png 512w" sizes="(max-width: 100px) 100vw, 100px" /></p>
<p><a href="https://www.whatsapp.com/">WhatsApp</a> (iOS/Android/Windows): Like the social media apps, WhatsApp keeps me in contact with colleagues back home, but since WhatsApp is very popular here in Dakar, it also keeps me in contact with my research assistants and peers.</p>
<p><img loading="lazy" decoding="async" class="wp-image-456 alignright" src="https://anthrodendum.org/wp-content/uploads/2018/01/1200px-GoogleMaps.svg_-300x300.png" alt="" width="100" height="100" srcset="/wp-content/uploads/2018/01/1200px-GoogleMaps.svg_-300x300.png 300w, /wp-content/uploads/2018/01/1200px-GoogleMaps.svg_-150x150.png 150w, /wp-content/uploads/2018/01/1200px-GoogleMaps.svg_-768x768.png 768w, /wp-content/uploads/2018/01/1200px-GoogleMaps.svg_-1024x1024.png 1024w, /wp-content/uploads/2018/01/1200px-GoogleMaps.svg_-270x270.png 270w, /wp-content/uploads/2018/01/1200px-GoogleMaps.svg_.png 1200w" sizes="(max-width: 100px) 100vw, 100px" /></p>
<p>GoogleMaps (iOS/Android/Windows): Until recently, the satellite photos of Dakar were a splotchy, pixelated mess, but in the last year they’ve cleared up and become a little more detailed. Some neighborhoods even have street view. So, when I’m learning a new bus route or taking a cab ride, I can follow the little blue dot (me) on my phone and tie specific landmarks that I see out the window to where I am in the city. It helps to add stars on major landmarks – homes or restaurants I’ve visited – so that I have a clearer orientation of where I am. This is a big help in a densely populated city like Dakar, where a lot of things look the same to the uninitiated.</p>
<p><img loading="lazy" decoding="async" class="wp-image-463 alignleft" src="https://anthrodendum.org/wp-content/uploads/2018/01/service_512-300x300.png" alt="" width="100" height="100" srcset="/wp-content/uploads/2018/01/service_512-300x300.png 300w, /wp-content/uploads/2018/01/service_512-150x150.png 150w, /wp-content/uploads/2018/01/service_512-270x270.png 270w, /wp-content/uploads/2018/01/service_512.png 512w" sizes="(max-width: 100px) 100vw, 100px" /></p>
<p><a href="https://www.box.com/">Box</a> (iOS/Android): Box is my cloud-service of choice. It’s encrypted, secure, and the only cloud-service approved for use in research by my institutional review board. I have a free membership through my university, but it would be well worth the price, too.</p>
<p><img loading="lazy" decoding="async" class="wp-image-459 alignright" src="https://anthrodendum.org/wp-content/uploads/2018/01/download.jpg" alt="" width="100" height="100" srcset="/wp-content/uploads/2018/01/download.jpg 225w, /wp-content/uploads/2018/01/download-150x150.jpg 150w" sizes="(max-width: 100px) 100vw, 100px" /></p>
<p><a href="https://www.onenote.com/">Microsoft OneNote</a> (iOS/Android/Windows) or <a href="http://gingerlabs.com/">Notability</a> (iOS): For the iPad, I currently use OneNote for my interviews, though I used to use Notability until it suddenly stopped working right when I needed it. (I should say that Notability has probably had the bugs worked out, so you should give it a shot, but I haven’t looked back since moving to OneNote.) Both apps sync with many cloud-based data storage systems, including Box. After converting my interview instruments to PDF, I load them into OneNote, and that allows me to take notes right on the PDF during the interview. Because OneNote automatically syncs with the cloud, I can access these files instantly on my laptop or iPhone. I’ve even inserted a photo from my phone into a file and then watched it appear on my iPad.</p>
<p><img loading="lazy" decoding="async" class="wp-image-461 alignleft" src="https://anthrodendum.org/wp-content/uploads/2018/01/Notes-icon-300x300.png" alt="" width="100" height="100" srcset="/wp-content/uploads/2018/01/Notes-icon-300x300.png 300w, /wp-content/uploads/2018/01/Notes-icon-150x150.png 150w, /wp-content/uploads/2018/01/Notes-icon-768x768.png 768w, /wp-content/uploads/2018/01/Notes-icon-270x270.png 270w, /wp-content/uploads/2018/01/Notes-icon.png 1024w" sizes="(max-width: 100px) 100vw, 100px" /></p>
<p>Notes (iOS): Notes is an app that comes with iOS. I use it to jot down thoughts, quotes, events, and notes throughout the day.</p>
<p><img loading="lazy" decoding="async" class="wp-image-462 alignright" src="https://anthrodendum.org/wp-content/uploads/2018/01/preview-300x300.jpg" alt="" width="100" height="100" srcset="/wp-content/uploads/2018/01/preview-300x300.jpg 300w, /wp-content/uploads/2018/01/preview-150x150.jpg 150w, /wp-content/uploads/2018/01/preview-270x270.jpg 270w, /wp-content/uploads/2018/01/preview.jpg 512w" sizes="(max-width: 100px) 100vw, 100px" /></p>
<p><a href="http://www.magic-plan.com/">MagicPlan</a> (iOS/Android): Part of my research is about the gendering of space. What kinds of spaces are allowable to which genders, and under what circumstances are genders segregated? To help me map gendered space in large extended family households, I use MagicPlan. MagicPlan is an interior design app used for mapping a home. It uses augmented reality by placing the user in the middle of a room, lining up arrows with corners, and then more-or-less taking a picture. Turn, next corner, snap. Turn, doorway, snap. Finish a room, attach it to the last room, and before you know it, you’ve got a house. Then I export to PDF, take it into Adobe Illustrator CC, and add some color coding. I’ve been using it for five years, and it’s only gotten faster and easier to use. The app is free to use, but exporting PDFs of the plans comes at a premium.</p>
<p><img loading="lazy" decoding="async" class="wp-image-458 alignleft" src="https://anthrodendum.org/wp-content/uploads/2018/01/download-1.jpg" alt="" width="100" height="100" srcset="/wp-content/uploads/2018/01/download-1.jpg 225w, /wp-content/uploads/2018/01/download-1-150x150.jpg 150w" sizes="(max-width: 100px) 100vw, 100px" /></p>
<p><a href="https://readdle.com/products/scannerpro">ScannerPro</a> (iOS): If you’re doing research with funding from a major organization (e.g. Wenner-Gren, National Science Foundation, Fulbright-Hays), receipts are everything. If you’re dealing with a foreign bureaucracy like an ethical review board or ministry, you need to make copies of everything. If you have hand-written notes, interview instruments, or hand-drawn maps, you&#8217;ll want copies of those too. I use ScannerPro, an app that takes photos of documents, converts them to plain black-and-white, and uploads them to Box.</p>
<p>What do you use? Do you have any recommendations?</p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author"><div class="saboxplugin-tab"><div class="saboxplugin-gravatar"><img alt='Dick' src='http://1.gravatar.com/avatar/a46e5932fe510a6dba94ab5521355cfa?s=100&#038;d=retro&#038;r=g' srcset='http://1.gravatar.com/avatar/a46e5932fe510a6dba94ab5521355cfa?s=200&#038;d=retro&#038;r=g 2x' class='avatar avatar-100 photo' height='100' width='100' itemprop="image"/></div><div class="saboxplugin-authorname"><a href="/author/dtpowis3/" class="vcard author" rel="author"><span class="fn">Dick</span></a></div><div class="saboxplugin-desc"><div itemprop="description"><p>Dick Powis is a PhD Candidate in Anthropology at Washington University in St. Louis, and is also pursuing a Graduate Certificate in Women, Gender, and Sexuality Studies. His research interests include men and childbirth, prenatal screening technologies, and reproductive health in urban settings in Senegal. Read more at dickpowis.com.</p>
</div></div><div class="saboxplugin-web sab-web-position"><a href="http://www.dickpowis.com/" target="_self" >www.dickpowis.com</a></div><div class="clearfix"></div></div></div>
<p><a href="/2018/01/16/mobile-apps-for-ethnographic-research-ror2018/" rel="nofollow">Source</a></p>]]></content:encoded>
					
					<wfw:commentRss>/2018/01/16/mobile-apps-for-ethnographic-research-ror2018/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
