Skip to content

Instantly share code, notes, and snippets.

View renderlife's full-sized avatar
🚀
We flew south

Eugene Koshelev renderlife

🚀
We flew south
  • RenderLife
  • Russia
View GitHub Profile
@BloodCelebration
BloodCelebration / image-slider-with-multiple-controls-and-mobile-swipe-control-javascript.markdown
Created March 11, 2021 08:22
Image slider with multiple controls and mobile swipe control (Javascript)
@tomasevich
tomasevich / nginx_nodejs.md
Last active May 12, 2025 12:14
Сервер в связке Nginx + NodeJs

Сервер в связке Nginx + NodeJs

Данная пошаговая инструкция поможет освоить основы на простом примере

Для справки

Сервер поднимался на Debian 8 c характеристиками:

CPU - 1 ядро x 500 МГц

@xiaogh98
xiaogh98 / download-vimcast-files.sh
Created June 22, 2017 07:49 — forked from floscr/download-vimcast-files.sh
Download Vimcast Video Files
#!/bin/sh
# Downloads all vimcast videos & save a bookmark file in the same name
# Edit the number manually, have not found a way to get this automatically
for (( i = 1; i < 68; i++ )); do
FILE=$(curl -s http://media.vimcasts.org/videos/$i/ | grep m4v | sed 's/.*m4v\">\(.*m4v\)<\/a>.*/\1/g')
URL=http://media.vimcasts.org/videos/$i/$FILE
OUTPUT_VIDEO_FILE="0$i-$FILE"
OUTPUT_BOOKMARK_FILE="$OUTPUT_VIDEO_FILE.webloc"
echo "$URL"
@krambertech
krambertech / Component.jsx
Created July 2, 2016 10:44
ReactJS: Input fire onChange when user stopped typing (or pressed Enter key)
import React, { Component } from 'react';
import TextField from 'components/base/TextField';
const WAIT_INTERVAL = 1000;
const ENTER_KEY = 13;
export default class TextSearch extends Component {
constructor(props) {
super();
@rxaviers
rxaviers / gist:7360908
Last active May 15, 2025 21:36
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@impressiver
impressiver / raven-config.html
Last active October 26, 2024 15:03
Raven.js configuration for logging JavaScript exceptions to Sentry (https://getsentry.com/). Without the added ignore options, you'll quickly find yourself swamped with unactionable exceptions due to shoddy browser plugins and 3rd party script errors.
<!-- Raven.js Config -->
<script src="{{ JS_PATH }}/lib/raven.js" type="text/javascript"></script>
<script type="text/javascript">
// Ignore list based off: https://gist.github.com/1878283
var ravenOptions = {
// Will cause a deprecation warning, but the demise of `ignoreErrors` is still under discussion.
// See: https://github.com/getsentry/raven-js/issues/73
ignoreErrors: [
// Random plugins/extensions
'top.GLOBALS',