Skip to content

Instantly share code, notes, and snippets.

View bodbdigr's full-sized avatar
💭
🐢

Wal Jodłowski bodbdigr

💭
🐢
  • Kraków
  • 16:33 (UTC +02:00)
View GitHub Profile
<h4>"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit..."</h4>
<Assembler layout="listicle" numeration="{order: 'asc'}">
<Particle id="???" href="???">
<Assembiler layout="slideshow" thumbnails="{position: 'below'}">
<Particle id="1" title="And 1" href="...">
<Image id="19185714" href="https://assets.rbl.ms/19185714/980x.jpg">
<Title><p>some caption...</p></Title>
<Credit><p>some credit...</p></Credit>
</Image>
<p>gsdfdg</p>
This file has been truncated, but you can view the full file.
<blocks data-rm-device-mode="desktop">
<block name="AllPostLayoutIntegratedJwPlayer">
<abtests>
<abtest name="Badge" data-rm-created-by="19305113" data-rm-created-on="Thu Apr 11 2019 00:01:29 GMT+0600 (Bangladesh Standard Time)" query-param="badge" query-value="1" data-rm-show="true">
<jinja data-rm-friendly-name="[JINJA] jwplayer Async or sync , adhesion/nsfw">
<![CDATA[<script>
var adhesionTag,nsfwtag;
/*{{context.post.tags}}*/
{% if '*nsfw' in context.post.tags %}
unbind C-b
set -g prefix C-l
# colors
set -g default-terminal "screen-256color"
#
# unicode
#setw -g utf8 on
# rebind pane tiling
@bodbdigr
bodbdigr / cloudSettings
Created December 4, 2018 19:28
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-12-04T19:27:53.298Z","extensionVersion":"v3.2.2"}
#!/usr/bin/env sh
echo $(for c in 72 97 112 112 121 32 66 105 114 116 104 100 97 121 44 32 74 117 97 110; do printf \\$(printf '%03o' $c); done;){,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,};
#!/usr/bin/env ruby
git_bundles = [
'https://github.com/nvie/vim-pep8.git',
'https://github.com/msanders/snipmate.vim.git',
'https://github.com/tpope/vim-surround.git',
'https://github.com/fholgado/minibufexpl.vim.git',
'https://github.com/vim-scripts/Command-T.git',
'git://github.com/altercation/vim-colors-solarized.git',
'https://github.com/tpope/vim-fugitive.git',
@bodbdigr
bodbdigr / gist:951593
Created May 2, 2011 13:13
defaults for javascript
(function(w) {
w._ = w._ || {};
// Wraps given function with default arguments
//
// example:
//
// var someFunc = function() { return arguments };
//
//extending the object prototype
Object.prototype.newMethod = function() {
return this;
};
//create new Object
var names = {'Jane': 'Joe', 'John': 'Doe'};
//iterating the Object would give: Jane => Doe, John => Doe, newMethod => function();
for(var key in names) {