Skip to content

Instantly share code, notes, and snippets.

View bwiernik's full-sized avatar

Brenton M. Wiernik bwiernik

View GitHub Profile
<?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">
<!-- This style was edited with the Visual CSL Editor (http://editor.citationstyles.org/visualEditor/) -->
<info>
<title>American Psychological Association (Conference Papers)</title>
<id>http://www.zotero.org/styles/american-psychological-association-conference-papers</id>
<link href="http://www.zotero.org/styles/american-psychological-association-conference-papers" rel="self"/>
<link href="http://wiernik.workpsy.ch/projects/zotero/" rel="documentation"/>
<author>
<name>Brenton Wiernik</name>
@article{thunnissen_review_2013,
series = {Talent management},
title = {A review of talent management: 'infancy or adolescence?'},
volume = {24},
issn = {0958-5192},
shorttitle = {A review of talent management},
url = {http://dx.doi.org/10.1080/09585192.2013.777543},
doi = {10.1080/09585192.2013.777543},
abstract = {The aim of this paper is to provide a critical review of the academic literature on talent management in search of alternative perspectives. We found three dominant themes: the exploration of the concept of talent (definitions), the intended outcomes or effects of talent management and talent management practices. These themes are explored in more detail, and we discuss possible limitations of the current points of view on talent management. Our main finding was that the current talent management literature has a too narrow and one-dimensional approach. It can be characterized as managerialist and unitarist and has a limited view of the practices and activities of human resources. To broa
@bwiernik
bwiernik / APA Numeric
Created January 17, 2015 03:18
APA CSL Numeric style
<?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">
<!-- This style was edited with the Visual CSL Editor (http://editor.citationstyles.org/visualEditor/) -->
<info>
<title>American Psychological Association (Conference Papers, Numerical, no Issue numbers)</title>
<title-short>APA-Conference-Numerical</title-short>
<id>http://www.wiernik.workpsy.ch/styles/apa-conference-papers-numerical</id>
<link href="http://www.wiernik.workpsy.ch/styles/apa-conference-papers-numeric" rel="self"/>
<link href="http://owl.english.purdue.edu/owl/resource/560/01/" rel="documentation"/>
<author>
@bwiernik
bwiernik / gist:4067ccdb859ce5f997cc
Created February 28, 2015 20:23
Example zotero item
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:z="http://www.zotero.org/namespaces/export#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:bib="http://purl.org/net/biblio#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:link="http://purl.org/rss/1.0/modules/link/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:prism="http://prismstandard.org/namespaces/1.2/basic/">
<bib:Article rdf:about="http://link.springer.com/article/10.1007/s10869-013-9300-2">
@bwiernik
bwiernik / gist:6b770d042e2baa074b4c
Created March 1, 2015 04:46
Gist from Mark Gregory
<?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="sort-only" default-locale="en-GB">
<!-- This style was edited with the Visual CSL Editor (http://editor.citationstyles.org/visualEditor/) -->
<info>
<title>Harvard - Anglia Ruskin with dates in Extra field</title>
<id>http://www.zotero.org/styles/harvard-anglia-ruski-nwith-dates-in-extra-field</id>
<link href="http://www.zotero.org/styles/harvard-anglia-ruskin-with-dates-in-extra-field" rel="self"/>
<link href="http://libweb.anglia.ac.uk/referencing/harvard.htm" rel="documentation"/>
<author>
<name>Steven Singleton</name>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:z="http://www.zotero.org/namespaces/export#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:bib="http://purl.org/net/biblio#"
xmlns:vcard="http://nwalsh.com/rdf/vCard#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:link="http://purl.org/rss/1.0/modules/link/">
<bib:BookSection rdf:about="urn:isbn:1-55798-556-1%20(Paperback)">
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:z="http://www.zotero.org/namespaces/export#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:vcard="http://nwalsh.com/rdf/vCard#"
xmlns:bib="http://purl.org/net/biblio#"
xmlns:link="http://purl.org/rss/1.0/modules/link/"
xmlns:dcterms="http://purl.org/dc/terms/">
<bib:Thesis rdf:about="#item_48324">
@bwiernik
bwiernik / gist:06b3cdd93b7602813aac
Created March 24, 2015 15:41
Batch edit item language to de for German items
var fieldName = "title";
var fieldName2 = "language";
var oldValue = "für";
var newValue = "de";
var fieldID = Zotero.ItemFields.getID(fieldName);
var fieldID2 = Zotero.ItemFields.getID(fieldName2);
var s = new Zotero.Search;
s.addCondition(fieldName, 'contains', oldValue);
s.addCondition("itemType", 'isNot', "attachment");
@bwiernik
bwiernik / zotbear.js
Last active January 19, 2022 15:01 — forked from zuphilip/zotbear.js
/*
How does this work?
0) make a backup copy
1) create a collection of all entries you want to batch edit
(maybe use a smart search or drag and drop, delete individual items)
2) check that you have exactly the items you want to change in your collection
3) choose one example here and adapt it to your needs
4) run the code
5) save the log if needed
*/
@bwiernik
bwiernik / gist:ebe05a5b7017fedec68c
Created April 17, 2015 17:24
Web of Science "Cited references" translator records output
12:12:53 [
"0": [object HTMLDivElement] {
"align": ""
"click": function click() { [native code] }
"focus": function focus() { [native code] }
"blur": function blur() { [native code] }
"title": ""
"lang": ""
"dir": ""
"dataset": [object DOMStringMap] <<Maximum depth reached>>