This file contains hidden or 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> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Twitter Archive Browser</title> | |
<script src="https://unpkg.com/react@16/umd/react.development.js"></script> | |
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> | |
<script src="https://unpkg.com/[email protected]/babel.min.js"></script> | |
<style> |
This file contains hidden or 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
Licensed under the Creative Commons Attribution licence (CC-BY), either | |
version 4.0 or at your option, any later version. See: | |
https://creativecommons.org/licenses/by/4.0/ | |
Author:Usmar A. Padow (amigojapan), contact: [email protected] | |
Written in 2017. | |
8 Basics of Programming |
This file contains hidden or 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
#!/usr/bin/env perl | |
use v5.10; | |
use strict; | |
use warnings; | |
use utf8; | |
use Carp; | |
use Net::GitHub; | |
use List::Util qw/max/; | |
my $org = "dagolden"; |
This file contains hidden or 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
<script type="text/javascript"> | |
var settid = "sitelocked"; | |
var status2 = false; | |
var data = { "sitelocked":true, "officelocked":false, "paging":20 }; | |
if(status2 === true){ | |
console.log('ITS TRUE'); |
This file contains hidden or 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
####################################################################################### | |
# Making screencasts | |
####################################################################################### | |
# NOTE ! => If you have problems with ffmpeg hanging or something like that, just kill | |
# pulseaudio and start it again, perhaps with -vv switch from your user and it'll work fine afterwards. | |
# | |
# screencast_with_cam <screeencast_Title> | |
# | |
# It will delete any existing flv file with the same title. You don't need to add the .flv extension | |
# |
This file contains hidden or 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
$s=shift;print grep[sort/./g]~~[sort$s=~/./g],<> |
This file contains hidden or 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
#!/usr/bin/perl | |
use warnings; | |
use strict; | |
use diagnostics; | |
use IO::Handle; | |
sub input_number | |
{ |