Example of TnT Tree. Click on the nodes to collapse / uncollapse them
This file contains 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
FROM nvidia/cuda:11.0.3-cudnn8-runtime-ubuntu20.04 | |
RUN apt-get update -y | |
RUN DEBIAN_FRONTEND=noninteractive apt-get -yq install git openjdk-8-jre libidn11 tcsh python3 python3-pip | |
RUN pip3 install scikit-learn==0.23.1 pandas==1.2.2 plotly==4.14.3 tensorflow==2.4.1 keras==2.4.3 protobuf==3.19.6 numpy~=1.19.2 six~=1.15.0 | |
WORKDIR /home | |
RUN git clone https://gitlab.com/sina.ghadermarzi/fldpnn.git | |
ENTRYPOINT ["/bin/bash"] |
This file contains 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
### https://raw.github.com/github/gitignore/9da1b5d8ce4e009ff627c4fe49a4488b2a3f60d4/Global/vim.gitignore | |
# Swap | |
[._]*.s[a-v][a-z] | |
[._]*.sw[a-p] | |
[._]s[a-v][a-z] | |
[._]sw[a-p] | |
# Session | |
Session.vim |
This file contains 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 ruby | |
require "csv" | |
require "json" | |
require "yaml" | |
def help(msg = "") | |
puts msg | |
puts <<-EOF | |
csv2 something converter |
@antipop
技術的負債の分類 (Kruchten et al., 2012)
- コードの負債は見えるので検出し易いけど、アーキテクチャの負債は見えないので大変
- アーキテクチャの再構築、リファクタリング
可能的代替システムとの差異(Schmid, 2013)
- 負債の要因や意図を問わないモデル化
This file contains 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 ruby | |
require "nokogiri" | |
require "excon" | |
require "thor" | |
# Tasks related to maintain my subscriptions. | |
class FeedTask < Thor | |
OPML = <<-EOF | |
<?xml version="1.0" encoding="UTF-8" ?> |
This file contains 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 ruby | |
# | |
# Remove duplicate tracks from iTunes with | |
# (itunes-client)[https://github.com/katsuma/itunes-client/]. | |
# ------------------------------------ | |
# | |
require "itunes-client" | |
include Itunes | |
begin |
This file contains 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 ruby | |
require "uri" | |
require "rubygems" | |
require "sequel" | |
require "optparse" | |
module Mendeley | |
class FolderNotFound < StandardError; end | |
class GroupNotFound < StandardError; end |
This file contains 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
# A sample Gemfile | |
source "https://rubygems.org" | |
gem "neo4j" |
This file contains 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 ruby | |
require 'rubygems' | |
require 'sequel' | |
DB = Sequel.connect('jdbc:sqlite:memory:') | |
DB.create_table :items do | |
primary_key :id | |
String :string_attribute |
NewerOlder