- IT109G-IT i organisationer - introduktion G1N, 15 hp. Start v.35, Programkurs, 50%, ht 17
- Kurskompendium IT109G och ett antal utvalda vetenskapliga artiklar och bokkapitel. En lista på dessa tillhandahålls av kursansvarig och redovisas för varje kursomgång.
- Grundläggande behörighet (eller motsvarande kunskaper).
- IT112G-Människans kognitiva förmågor och IT G1N, 7,5 hp. Start v.35, Programkurs, 50%, ht 17
- Ware, C. (2008). Visual thinking for design. Burlington, MA: Morgan Kauf. ISBN 978-0-12-370896-0.
- Kompendiematerial som tillhandahålls av kursansvarig.
- Grundläggande behörighet (eller motsvarande kunskaper).
This file contains 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
for (Integer group : new Integer[] { R.id.groupFirstName, R.id.groupLastName, R.id.groupEmail, R.id.groupBirthDate, R.id.groupGender, R.id.groupDefaultLocation }) | |
findViewById(group).setVisibility(View.GONE); | |
button.setImageResource(R.drawable.login_button); |
This file contains 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
View view = ... | |
InputMethodManager inputMethodManager = (InputMethodManager) getApplicationContext().getSystemService(Context.INPUT_METHOD_SERVICE) | |
inputMethodManager.hideSoftInputFromWindow(view.getWindowToken(), 0); | |
inputMethodManager.showSoftInput(view, InputMethodManager.SHOW_IMPLICIT); |
I hereby claim:
- I am danieloskarsson on github.
- I am danieloskarsson (https://keybase.io/danieloskarsson) on keybase.
- I have a public key ASBUngoS-arnyneSKMnFaWlHU7thgfnjRA4t1VjXmVRf2wo
To claim this, I am signing this object:
This file contains 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
#!bin/bash | |
# Syntax: curl -sL https://gist.github.com/danieloskarsson/6eae13217f8eb84954689dc18870ea4e/raw/ | sudo -E bash | |
# Based on: https://docs.ghost.org/v2/docs/install | |
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash | |
RUNLEVEL=1 apt-get install -y nginx | |
rm /etc/nginx/sites-enabled/default | |
service nginx start | |
apt-get install -y nodejs |
This file contains 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
// ==UserScript== | |
// @name ContextFreeGhost | |
// @version 1 | |
// @updateURL https://gist.githubusercontent.com/danieloskarsson/d60a905c1f731fc63316cd61697ed4e3/raw/ | |
// @require https://rawgit.com/danieloskarsson/ContextFreeLib/master/js/contextfreegrammar.js | |
// @match http://localhost:2368/ghost* | |
// @grant GM_xmlhttpRequest | |
// @grant GM_setValue | |
// @grant GM_getValue | |
// ==/UserScript== |
OlderNewer