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
diff --git a/node_modules/memfs/lib/node.js b/node_modules/memfs/lib/node.js | |
index d4b5f87..b640837 100644 | |
--- a/node_modules/memfs/lib/node.js | |
+++ b/node_modules/memfs/lib/node.js | |
@@ -287,7 +287,7 @@ class Link extends events_1.EventEmitter { | |
return link; | |
} | |
setChild(name, link = new Link(this.vol, this, name)) { | |
- this.children.set(name, link); | |
+ this.children.set(this.vol.caseSensitive ? name : name.toLowerCase(), link); |
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
# coding: utf-8 | |
"""Cause git to detect a merge conflict when two branches have migrations.""" | |
# myapp/management/commands/makemigrations.py | |
# you'll need myapp/management/commands/__init__.py and myapp/management/__init__.py in PY2, see Django docs | |
from __future__ import absolute_import, unicode_literals | |
import io | |
import os | |
import six |
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
# vim: autoindent et ts=4 sw=4 ft=python | |
import requests | |
import lxml.html | |
import traceback | |
URL = 'https://www.residentadvisor.net/event.aspx?event_id' | |
SLACK_URL = 'https://hooks.slack.com/services/Twebhook_url_herek' | |
def ticket_available(url): |
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
<!doctype html> | |
<html> | |
<!-- | |
a far simpler alternative to pasvaz.bindonce. | |
Use the once directive to remove all watchers from the children and replace | |
them with one. | |
--> | |
<head> | |
<script src="/lib/jquery/jquery.js"></script> | |
<script src="/lib/angular/angular.js"></script> |