View README.md

This script is one I wrote to dump a PostgreSQL table with a JSONB column into TSV put on your pasteboard (on macOS) such that you can just paste it into a Google Sheet.

I needed this for a client and it was a bit of work, so I thought it might be useful to someone out there.

View keybase.md

Keybase proof

I hereby claim:

  • I am ndintenfass on github.
  • I am ndintenfass (https://keybase.io/ndintenfass) on keybase.
  • I have a public key ASD9DDupzK-W27B50iLMOjZXzrMYlUxILPY1O84TXzyEJwo

To claim this, I am signing this object:

View output_log.txt
Log uploaded on Wednesday, June 27, 2018, 10:43:54 PM
Loaded mods:
Core: (no assemblies)
[sd] advanced powergeneration: sd_adv_powergen(1.0.6572.27121)
Android tiers - 智能人形: 0Harmony(1.0.9.1), AndroidsAtlasTiers(1.0.0.0), CompOversizedWeapon(1.18.0.0)
[A18] Balanced Neutroamine Production: (no assemblies)
Clone Bay: LTF_CloneBay(0.15.1.0)
Locks (DoorsExpanded): 0Harmony(1.0.9.1)
Locks: 0Harmony(1.0.9.1), Locks(1.0.0.0)
[B18]The Mantodean insectoid race - 昆虫人种: 0Harmony(1.0.9.1), MantodeanMeatCategoriser(0.18.0.1)
View .postcssrc
module.exports = {
"plugins": {
"postcss-preset-env":{},
"postcss-px-to-viewport": {
viewportWidth: 750, // (Number) The width of the viewport.
viewportHeight: 1334, // (Number) The height of the viewport.
unitPrecision: 3, // (Number) The decimal numbers to allow the REM units to grow to.
viewportUnit: 'vw', // (String) Expected units.
selectorBlackList: ['.ignore', '.hairlines'], // (Array) The selectors to ignore and leave as px.
minPixelValue: 1, // (Number) Set the minimum pixel value to replace.
View gist:63249f6bbe011851e9065175f9837d30
<!--[if lte IE 9]>
<div class="legacy-warning">
<div class="container">
Seems like your browser is quite outdated.
Why not <a href="http://browsehappy.com/">upgrade to a modern one</a>
for free and improve your experience?
</div>
</div>
<![endif]-->
View rabbitmqreceiver.php
<?
namespace Intervolga\Mybox\Tool\Front\Sku;
use Intervolga\Mybox\Main;
use PhpAmqpLib\Channel\AMQPChannel;
use PhpAmqpLib\Connection\AMQPStreamConnection;
use PhpAmqpLib\Exception\AMQPRuntimeException;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Wire\AMQPTable;
View untrusted-lvl5-solution.js
/******************
* minesweeper.js *
******************
*
* So much for Asimov's Laws. They're actually trying to kill
* you now. Not to be alarmist, but the floor is littered
* with mines. Rushing for the exit blindly may be unwise.
* I need you alive, after all.
*
* If only there was some way you could track the positions
View Challenge ES6 - Partie 1
let city = 'Bordeaux';
let age = 28;
const dateOfBirth = '15 octobre 1989';
let sentence = `J'habite à ${city}, j'ai ${age} ans et je suis né le ${dateOfBirth}`;
console.log(sentence);
View playground.rs
#![feature(box_syntax)]
trait Trait<'a> {
fn bla(&self) -> &'a i32;
}
struct A;
impl<'a> Trait<'a> for A {
fn bla(&self) -> &'a i32 {
View giaxang.php
<?php
/* Code by HTTZIP
* Shared on httzip.com
*/
header("Content-Type: text/plain");
$url = 'http://www.petrolimex.com.vn/';
$content = file_get_contents($url);
$first_step = explode( '<div id="vie_p6_PortletContent">' , $content );
$second_step = explode("</div>" , $first_step[1] );