Skip to content

Instantly share code, notes, and snippets.

View nonsie's full-sized avatar

Katrin Valdre nonsie

  • Portland, OR
View GitHub Profile

Keybase proof

I hereby claim:

  • I am nonsie on github.
  • I am katvaldre (https://keybase.io/katvaldre) on keybase.
  • I have a public key whose fingerprint is 5E63 8B17 2F52 290C 48D1 505B D86E 593A 5062 2C82

To claim this, I am signing this object:

@nonsie
nonsie / Past-interviews
Last active June 1, 2022 20:23
Past interviews
Companies I interviewed with before landing at REI in January 2022:
- Cribl
- Hinge Health
- Sourcegraph
- Betterment
- Facebook
- Taskrabbit
- Airtable
- Color
- Matterport
[
{
"title": "Tom Hanks 1200x900 @2x",
"fileName": "1200_900_tom_hanks%402x",
"fileExtension": "jpg",
"type": "graphic",
"width": "1200",
"height": "900",
"size": "2 MB",
"tags": [
@nonsie
nonsie / non-tech-interview-questions.md
Created May 13, 2019 19:31
Non-technical interview questions

Behavioral

Learn the STAR format. From Wikipedia:

  • Situation - The interviewer wants you to present a recent challenge and situation in which you found yourself.
  • Task - What were you required to achieve? The interviewer will be looking to see what you were trying to achieve from the situation. Some performance development methods[1] use “Target” rather than “Task”. Job interview candidates who describe a “Target” they set themselves instead of an externally imposed “Task” emphasize their own intrinsic motivation to perform and to develop their performance.
  • Action - What did you do? The interviewer will be looking for information on what you did, why you did it and what the alternatives were.
  • Results - What was the outcome of your actions? What did you achieve through your actions and did you meet your objectives? What did you learn from this experience and have you used this learning since?
@nonsie
nonsie / import.php
Created February 19, 2019 19:51 — forked from crittermike/import.php
Importing Drupal 8 config programmatically
<?php
// Import arbitrary config from a variable.
$config = \Drupal::service('config.factory')->getEditable('filter.format.basic_html');
$config->setData($data)->save();
// Or, re-import the default config for a module or profile, etc.
\Drupal::service('config.installer')->installDefaultConfig('module', 'my_custom_module');
// Or, import YAML config an arbitrary directory.
@nonsie
nonsie / gist:62bbdc4149debe618e8115800d873344
Created July 12, 2018 15:26
Composer out of memory issue
php -d memory_limit=-1 $(which composer) update
@nonsie
nonsie / README.md
Created January 25, 2016 21:32 — forked from signalpoint/README.md
AngularJS Autocomplete with Drupal 8
@nonsie
nonsie / gist:a5aa338088d39ab23c5e
Created September 29, 2014 16:37
D7 custom date format
/**
* Note that the new format won't be visible unless you go save the date formats page or call drupal_static_reset('date_format_type_format')
*/
/**
* Implements hook_date_formats().
*/
function mymodule_date_formats() {
$formats = array();
$formats[] = array(