
{{ page.title }}
diff --git a/_layouts/post.html b/_layouts/post.html index b4a1ed7..763cb1e 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -18,24 +18,28 @@{{ page.title }}
{{ page.content }}
- - - {% if project.logo %} -{{ project.content }}
-More information about {{ project.name }}: {{ project.website }}
- {% if project.setup_html %} -Set up instructions
- {{ project.setup_html }} + + {% if project.name != "" %} + {% if project.logo != "" %} +{{ project.content }}
+More information about {{ project.name }}: {{ project.website }}
+ {% if project.setup_html %} +Set up instructions
+ {{ project.setup_html }} + {% endif %} {% endif %}Information
Level: {{ page.level }}
Date: {{ page.date | date: "%e %B %Y" }}
Time: {{ page.time }}
-
- Address:
- {{ sponsor.name }}
- {{ sponsor.address }}
-
+ Address:
+ {{ sponsor.name }}
+ {{ sponsor.address }}
+
+Make sure you register via:
+ Please follow the instruction in this link: + + https://docs.djangoproject.com/en/dev/internals/contributing/ + +
+--- +Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of Web development, so you can focus on writing your app without needing to reinvent the wheel. It’s free and open source. diff --git a/_projects/drf-api-tracking.md b/_projects/drf-api-tracking.md new file mode 100644 index 0000000..8d6ce54 --- /dev/null +++ b/_projects/drf-api-tracking.md @@ -0,0 +1,15 @@ +--- +obj_id: drf-api-tracking +name: "DRF API Tracking" +logo: +website: https://github.com/lingster/drf-api-tracking +setup_html: | ++ Fork and clone terminus-client-python from + + https://github.com/lingster/drf-api-tracking + +
+--- + +DRF API Tracking provides a Django model and DRF view mixin that work together to log Django Rest Framework requests to the database. You'll get these attributes for every request/response cycle to a view that uses the mixin. diff --git a/_projects/kedro.md b/_projects/kedro.md new file mode 100644 index 0000000..4e9e90a --- /dev/null +++ b/_projects/kedro.md @@ -0,0 +1,16 @@ +--- +obj_id: kedro +name: "Kedro" +logo: static/images/projects/kedro.png +website: https://kedro.readthedocs.io/ +setup_html: | ++ Please follow the instruction in this link: + + https://github.com/quantumblacklabs/kedro/blob/develop/CONTRIBUTING.md + +
+--- +Kedro is a development workflow framework that implements software engineering best-practice for data pipelines with an eye towards productionising machine learning models. Kedro is built upon our collective best-practice (and mistakes) trying to deliver real-world ML applications that have vast amounts of dirty data. + +It helps structure reproducible, scalable, deployable, robust and versioned data and machine learning pipelines. It is applicable to a wide range of projects, from single user projects running on a local environment, when you want to have an organised way of working, to enterprise-level team projects, when your team needs to work in a structured way and reduce the effort required to take machine learning models into the production environment. diff --git a/_projects/python.org.md b/_projects/python.org.md new file mode 100644 index 0000000..d9440f1 --- /dev/null +++ b/_projects/python.org.md @@ -0,0 +1,21 @@ +--- +obj_id: python.org +name: "www.python.org" +logo: static/images/projects/python.png +website: https://www.python.org/ +setup_html: | +To set up an environment for the sprint, we recommend creating a conda environment:
++
-
+
- Download and install Anaconda +
- Fork the project repository by clicking on the top-right "Fork" button +
git clone your fork git@github.com:/pythondotorg.git
+ - Create a conda environement:
conda create -n pythondotorg_dev python=3.4
+ - Install requirements:
pip install -r /dev-requirements.txt
+ - You'll also need to install PostgreSQL +
- And create a database:
createdb pythondotorg -E utf-8 -l en_US.UTF-8
+
More detailed project instructions are available here.
+--- +www.python.org is the official Python language and community website. The Python Software Foundation is responible for it, but it's mainly developed and maintained by volunteers. Its important is key, and it is usually one of the first websites visited by people new to Python. And it also contains important content such as the official Python installation files, news, events, information about the Python Software Foundation, the community job board, and links to relevant information like the documentation or the list of user groups. diff --git a/_projects/scikit-learn.md b/_projects/scikit-learn.md new file mode 100644 index 0000000..cda98ab --- /dev/null +++ b/_projects/scikit-learn.md @@ -0,0 +1,12 @@ +--- +obj_id: scikit-learn +name: "Scikit-learn" +logo: static/images/projects/scikit-learn.png +website: https://scikit-learn.org/stable/ +setup_html: | ++ Please follow the instruction in the + scikit-learn contributing guide. +
+--- +scikit-learn is an open source machine learning library that supports supervised and unsupervised learning. It also provides various tools for model fitting, data preprocessing, model selection, model evaluation, and many other utilities. diff --git a/_projects/terminusdb.md b/_projects/terminusdb.md new file mode 100644 index 0000000..a8d8893 --- /dev/null +++ b/_projects/terminusdb.md @@ -0,0 +1,23 @@ +--- +obj_id: terminusdb +name: "TerminusDB" +logo: static/images/projects/terminusdb.png +website: https://terminusdb.com/ +setup_html: | ++ Fork and clone terminus-client-python from + + https://github.com/terminusdb/terminus-client-python + +
++ Contribution guide at + + https://github.com/terminusdb/terminus-client-python/blob/master/Contributing.md + +
+--- + +TerminusDB is a database built for data people. Terminus is a model driven graph database designed specifically for the web-age. + +The result is unified, well-structured & refined data - the jet fuel of future business. TerminusDB greatly reduces the time and effort required to build any application that shares, manipulates or edits data. diff --git a/_sass/chapter.scss b/_sass/chapter.scss index 9791aa9..f1fc49e 100644 --- a/_sass/chapter.scss +++ b/_sass/chapter.scss @@ -5,8 +5,12 @@ } } + .chapter__background-img { - @extend .page__background-img; + width: 100%; + height: 60vh; + object-fit: cover; + object-position: 50% 50%; } .chapter__page-title-container { diff --git a/_sass/post.scss b/_sass/post.scss index 72775f8..ac407fb 100644 --- a/_sass/post.scss +++ b/_sass/post.scss @@ -3,6 +3,10 @@ padding: 30px 20px 0; } +.post a { + word-break: break-all; +} + .post__event-info { background-color: $light-white !important; } diff --git a/_sass/style.scss b/_sass/style.scss index b6927d9..36e557d 100644 --- a/_sass/style.scss +++ b/_sass/style.scss @@ -19,7 +19,6 @@ section { padding: 20px 40px; } - .no-scroll { overflow: hidden; } diff --git a/_sponsors/1none.md b/_sponsors/1none.md new file mode 100644 index 0000000..825875c --- /dev/null +++ b/_sponsors/1none.md @@ -0,0 +1,10 @@ +--- +obj_id: 1none +name: "" +logo: "" +link: "" +address: "" +lat: +lng: +--- +< boilerplate for sponsor None > diff --git a/_sponsors/bloomberg.md b/_sponsors/bloomberg.md index 1302ab4..af2a519 100644 --- a/_sponsors/bloomberg.md +++ b/_sponsors/bloomberg.md @@ -6,6 +6,5 @@ link: https://www.bloomberg.com/careers/ address: "3 Queen Victoria StLondon, EC4N 4TQ, UK" lat: 51.5128245 lng: -0.0910801 -permanent: true --- Bloomberg L.P. provides financial software tools such as an analytics and equity trading platform, data services, and news to financial companies and organizations through the Bloomberg Terminal (via its Bloomberg Professional Service), its core revenue-generating product. \ No newline at end of file diff --git a/_sponsors/cytora.md b/_sponsors/cytora.md new file mode 100644 index 0000000..aa1c1f1 --- /dev/null +++ b/_sponsors/cytora.md @@ -0,0 +1,10 @@ +--- +obj_id: cytora +name: "Cytora" +logo: static/images/sponsors/cytora.svg +link: http://www.cytora.com/ +address: "9 Dallington Street, Clerkenwell, EC1V 0LN" +lat: 51.524502 +lng: -0.100597 +--- +Cytora is an artificial intelligence company building a new way for commercial insurers to target, select and price risk. diff --git a/_sponsors/decibel.md b/_sponsors/decibel.md new file mode 100644 index 0000000..4b1e4b5 --- /dev/null +++ b/_sponsors/decibel.md @@ -0,0 +1,12 @@ +--- +obj_id: decibel +name: "Decibel" +logo: static/images/sponsors/decibel.png +link: https://www.decibelinsight.com/ +address: "Aldgate Tower, London E1 8FA, United Kingdom" +lat: 51.5147865 +lng: -0.0722147 +--- +Decibel provides real-time intelligence that enables businesses to measure and improve online customer experiences – at scale. + +Pioneering the world's first technology designed specifically to quantify experiences, Decibel's Digital Experience Intelligence platform captures unique experience data, enriched by machine learning, to reveal digital body language, understand user state of mind and pinpoint problem areas on your website, web applications and native apps. diff --git a/_sponsors/deliveroo.md b/_sponsors/deliveroo.md new file mode 100644 index 0000000..5a7880e --- /dev/null +++ b/_sponsors/deliveroo.md @@ -0,0 +1,16 @@ +--- +obj_id: deliveroo +name: "Deliveroo" +logo: static/images/sponsors/deliveroo.png +link: https://deliveroo.co.uk/ +address: "1 Cousin Ln
London, EC4R 3XJ, UK" +lat: 51.5101095 +lng: -0.0932817 +--- + +Deliveroo is a food delivery company founded in the UK. Their motto is ‘proper food, proper delivery’ +and since then they have grown their offering to over 200 cities world wide. A big proportion of what +they do is driven through great software and a fantastic data team. A lot of this is build on open source +software and they are excited to give something back to the community. + +Check out their engineering blog: https://deliveroo.engineering/ diff --git a/_sponsors/druthers.md b/_sponsors/druthers.md new file mode 100644 index 0000000..70fb228 --- /dev/null +++ b/_sponsors/druthers.md @@ -0,0 +1,10 @@ +--- +obj_id: druthers +name: "Druthers" +logo: static/images/sponsors/druthers.png +link: http://www.drutherssearch.com/ +address: "68-80 Hanbury St, London, E1 5JL, UK" +lat: 51.5200229 +lng: -0.0725788 +--- +At Druthers, we pride ourselves on, and are renowned for sourcing the highest quality mid- to executive-level talent in Tech and Digital. We provide diversity and inclusion-balanced shortlists of remarkable candidates to tech and digital businesses, to help empower organisations to create a diverse and inclusive culture. diff --git a/_sponsors/ecom.md b/_sponsors/ecom.md new file mode 100644 index 0000000..5ad8e98 --- /dev/null +++ b/_sponsors/ecom.md @@ -0,0 +1,10 @@ +--- +obj_id: ecom +name: "Ecom Recruitment" +logo: static/images/sponsors/ecom.png +link: https://www.interquestgroup.com/brands/ecom +address: "Cannon Green, 27 Bush Lane, London, United Kingdom, EC4R 0AA" +lat: 51.510744 +lng: -0.0917458 +--- +ECOM is the digital talent brand of InterQuest Group. We have won the award for being LinkedIn’ most socially engaged staffing agency in 2016, 2017 and 2018. We operate at the forefront of digital transformation. We recruit the in-demand, technical skills that are shaping the new digital economy across analytics, information security, digital, information technology, networks & change management. We look to partner with our clients to bring optimized solutions to help them create opportunities for talented individuals across the verticals we serve. diff --git a/_sponsors/farfetch.md b/_sponsors/farfetch.md new file mode 100644 index 0000000..cc2c374 --- /dev/null +++ b/_sponsors/farfetch.md @@ -0,0 +1,10 @@ +--- +obj_id: farfetch +name: "Farfetch" +logo: static/images/sponsors/farfetch.png +link: https://www.farfetchtechblog.com/en/ +address: "The Bower, 211 Old Street, London EC1V 9NR" +lat: 51.5259343 +lng: -0.0909243 +--- +Farfetch exists for the love of fashion. We operate a modular end-to-end technology platform purpose-built to connect the luxury fashion ecosystem worldwide. We are a bunch of Data and Software Engineers making it happen with Python, Airflow, Kubernetes,BigQuery and Terraform. We love empowering individuals with actionable information in a reliable way, to enrich the Farfetch ecosystem. Be it through self-serve environments delivered in a Google Cloud Platform project or working with our colleagues in Data Science to breathe life into frighteningly cognizant machine learning AIs we provide the data foundations to everything Farfetch does! diff --git a/_sponsors/harvey_nash.md b/_sponsors/harvey_nash.md index af276fd..8a0cb26 100644 --- a/_sponsors/harvey_nash.md +++ b/_sponsors/harvey_nash.md @@ -6,6 +6,5 @@ link: https://www.linkedin.com/in/hamishpitkeathly/ address: "110 Bishopsgate,
London, EC2N 4AY, UK" lat: 51.5162822 lng: -0.0809643 -permanent: true --- Harvey Nash is a global professional recruitment consultancy and IT outsourcing service provider. They are committed to delivering the very best talent and IT solutions to a broad base of international clients. diff --git a/_sponsors/iwoca.md b/_sponsors/iwoca.md new file mode 100644 index 0000000..33f8c2e --- /dev/null +++ b/_sponsors/iwoca.md @@ -0,0 +1,16 @@ +--- +obj_id: iwoca +name: "iwoca" +logo: static/images/sponsors/iwoca.png +link: https://www.iwoca.co.uk/careers/ +address: "247 Tottenham Court Rd, Bloomsbury, London W1T 7QX" +lat: 51.5180404 +lng: -0.1316623 +--- +iwoca offers finance custom-built for small businesses. +iwoca provides loans up to £200,000 through their website, +partner integrations and Lending API; wherever and whenever small businesses need funding. +Their award-winning technology means they can provide faster, +more accurate credit decisions built around the needs of the business. +So far they’ve helped over 50,000 businesses access funds, from cafes to car dealers. + diff --git a/_sponsors/jpmorgan.md b/_sponsors/jpmorgan.md new file mode 100644 index 0000000..354d950 --- /dev/null +++ b/_sponsors/jpmorgan.md @@ -0,0 +1,16 @@ +--- +obj_id: jpmorgan +name: "J.P. Morgan" +logo: static/images/sponsors/jpmorgan.jpeg +link: https://careers.jpmorgan.com/us/en/our-businesses/technology +address: "4 John Carpenter Street, London, EC4Y 0AR" +lat: 51.512109 +lng: -0.1063624 +--- +J.P. Morgan Chase is one of the biggest and most successful Banks in the world, +but equally importantly, J.P. Morgan is one of one of the world’s biggest tech companies. +In 14 technology hubs worldwide, our team of 50,000+ technologists design, build and deploy +everything from enterprise technology initiatives to big data and mobile solutions, +as well as innovations in electronic payments, cybersecurity, machine learning, and cloud development. +Our $10B+ annual investment in technology enables us to hire people to create innovative solutions +that will not only transform the financial services industry, but also change the world. diff --git a/_sponsors/lyst.md b/_sponsors/lyst.md new file mode 100644 index 0000000..2ba7f7e --- /dev/null +++ b/_sponsors/lyst.md @@ -0,0 +1,11 @@ +--- +obj_id: lyst +name: "Lyst" +logo: static/images/sponsors/lyst.jpg +link: https://www.lyst.com/careers/ +address: "7th Floor, The Minster Building, 21 Mincing Lane, London, EC3R 7AG" +lat: 51.5101362 +lng: -0.081569 +--- +Lyst is a Global Fashion Search Platform which connects millions of shoppers globally +with the world’s leading fashion designers and stores, giving them a simpler, more engaging buying experience. diff --git a/_sponsors/man.md b/_sponsors/man.md new file mode 100644 index 0000000..710000c --- /dev/null +++ b/_sponsors/man.md @@ -0,0 +1,10 @@ +--- +obj_id: man +name: "Man Group" +logo: static/images/sponsors/man.png +link: https://www.man.com/ +address: "1 Angel Ln,
London EC4R 3AB" +lat: 51.5098425 +lng: -0.0897962 +--- +Man Group is a global active investment management firm, which runs $112.7 billion (as at 30 September 2019) of client capital in liquid and private markets, managed by investment specialists based around the world. Man Group’s Quant Technology team works at the intersection where open and collaborative technology meets discretionary and systematic trading. We are committed to promoting a flourishing Python ecosystem and growing the community around open source projects. Over the years, Man Quant Technology developers have contributed to many projects (check out github.com/manahl) and we also sponsor the PyData and Machine Learning meet-ups in London. diff --git a/_sponsors/monzo.md b/_sponsors/monzo.md new file mode 100644 index 0000000..b5a3073 --- /dev/null +++ b/_sponsors/monzo.md @@ -0,0 +1,10 @@ +--- +obj_id: monzo +name: "Monzo" +logo: static/images/sponsors/monzo.png +link: https://monzo.com/ +address: "35 Wilson St, EC2A 2ER" +lat: 51.5200705 +lng: -0.0877098 +--- +Monzo is the bank of the future. This isn’t banking as you know it. Monzo is a bank for everyone, that works with you, for you. diff --git a/_sponsors/oakam.md b/_sponsors/oakam.md new file mode 100644 index 0000000..e63569a --- /dev/null +++ b/_sponsors/oakam.md @@ -0,0 +1,10 @@ +--- +obj_id: oakam +name: "Oakam" +logo: static/images/sponsors/oakam.png +link: https://www.oakam.com/ +address: "3rd floor, 31 Great Titchfield St
London W1W 7PA" +lat: 51.5175708 +lng: -0.140728 +--- +Oakam is on a mission to make financial services accessible to millions of people across the UK. diff --git a/_sponsors/quantum_black.md b/_sponsors/quantum_black.md index 6ff5c6e..cd4dc13 100644 --- a/_sponsors/quantum_black.md +++ b/_sponsors/quantum_black.md @@ -1,11 +1,10 @@ --- obj_id: quantum_black -name: "Quantum Black" +name: "QuantumBlack" logo: static/images/sponsors/quantum_black.png link: https://www.quantumblack.com/ -address: "Kinnaird House, 1 Pall Mall
London, SW1Y 5AU, UK" -lat: 51.507954 -lng: -0.130718 -permanent: false +address: "QB/MCKINSEY & CO, The Post Building, 100 Museum Street, London, WC1A 1PB" +lat: 51.5168345 +lng: -0.124556 --- -QuantumBlack is an advanced analytics firm operating at the intersection of strategy, technology & design to improve performance outcomes for organisations. With roots in Formula One, we now work across sector with some of the world's leading organisations in advanced industries, healthcare and finance. \ No newline at end of file +QuantumBlack is an advanced analytics firm operating at the intersection of strategy, technology & design to improve performance outcomes for organisations. With roots in Formula One, we now work across sector with some of the world's leading organisations in advanced industries, healthcare and finance. diff --git a/_sponsors/scigility.md b/_sponsors/scigility.md new file mode 100644 index 0000000..2fe20b6 --- /dev/null +++ b/_sponsors/scigility.md @@ -0,0 +1,10 @@ +--- +obj_id: scigility +name: "Scigility" +logo: static/images/sponsors/scigility.png +link: https://scigility.com +address: "Europaallee 41, 8004 Zürich, Switzerland" +lat: 47.378841 +lng: 8.532023 +--- +As a start-up from the early days of the Big Data scene, we are enthusiastic about data and combine our unique experience with data, advanced analytics, and best practices to implement enterprise data platforms and AI/ML use cases. This and closely maintained partnerships with universities and technology providers enable us to be a leader in these areas on the Swiss and European markets. Our service portfolio includes data architecture and strategy consulting, data science and AI/ML use case implementation, data engineering, and platform engineering, as well as MLOps. diff --git a/_sponsors/teksystems.md b/_sponsors/teksystems.md new file mode 100644 index 0000000..63c68d3 --- /dev/null +++ b/_sponsors/teksystems.md @@ -0,0 +1,10 @@ +--- +obj_id: teksystems +name: "TEKsystems" +logo: static/images/sponsors/teksystems.png +link: https://europe.teksystems.com/en-gb +address: "Floor 3, The Warehouse, 207-211 Old St, London EC1V 9NR" +lat: 51.5259343 +lng: -0.090919 +--- +Through the thousands of client IT initiatives we support globally, our daily interactions with local IT markets and our proprietary research on the state of the IT workforce, we possess a deep and practical understanding of what works, what doesn’t and what’s possible in IT. We harness this understanding to supply our clients with the people they need and the human capital advice required to optimise how work gets done. Based on what we’ve seen work consistently in practice, we also offer a range of select IT services spanning applications, infrastructure, communications and digital and creative needs. By customising and calibrating our service delivery models, we free our clients from owning resources, workflows, functions or complexity that they don’t want or need to manage. Additionally, by ensuring every TEKsystems professional is the absolute best suited for the job at hand, we empower our clients to achieve their business targets better, faster and more cost-effectively.​ diff --git a/_sponsors/touch_surgery.md b/_sponsors/touch_surgery.md index b41e656..aee145e 100644 --- a/_sponsors/touch_surgery.md +++ b/_sponsors/touch_surgery.md @@ -6,6 +6,5 @@ link: https://www.touchsurgery.com/jobs.html address: "230 City Road
London, EC1V 2QY, UK" lat: 51.528401 lng: -0.093104 -permanent: true --- The Touch Surgery platform is an interactive surgical simulator for healthcare professionals; providing a realistic and detailed guide to every step of a procedure. Users can quickly learn surgery, instantly test their knowledge, and rehearse for surgery. \ No newline at end of file diff --git a/_sponsors/zopa.md b/_sponsors/zopa.md index 553ae7b..76fbc03 100644 --- a/_sponsors/zopa.md +++ b/_sponsors/zopa.md @@ -6,6 +6,5 @@ link: https://www.zopa.com/ address: "Cottons Centre, Tooley St
London, SE1 2QG, UK" lat: 51.5060532 lng: -0.0847395 -permanent: false --- Zopa provide loans and offer competitive rates, flexible and intuitive products and award-winning customer service. They strive to make money simple and fair for everyone – to enable people to do more with their money and take control of their finances. \ No newline at end of file diff --git a/browserconfig.xml b/browserconfig.xml index e7986aa..0b951d3 100644 --- a/browserconfig.xml +++ b/browserconfig.xml @@ -2,7 +2,7 @@