ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
http://tinyurl.com/2fhzp5p
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
??(let ((buffer (url-retrieve-synchronously
          "http://tromey.com/elpa/package-install.el")))
??(save-excursion
????(set-buffer buffer)
????(goto-char (point-min))
????(re-search-forward "^$" nil 'move)
????(eval-region (point) (point-max))
????(kill-buffer (current-buffer))))
;;; This was installed by package-install.el.
;;; This provides support for the package system and
;;; interfacing with ELPA, the package archive.
;;; Move this code earlier if you want to reference
;;; packages in your .emacs.
(when
????(load
?????(expand-file-name "~/.emacs.d/elpa/package.el"))
??(package-initialize))
M-x package-install <ret> slime




   (require 'slime)
M-x package-install <ret> slime-repl



  (require 'slime-repl)
  (setq slime-net-coding-system 'utf-8-unix
  ??????slime-protocol-version 'ignore)
  (slime-setup '(slime-repl))
M-x package-install <ret> clojure-mode




  (require 'clojure-mode)
  (add-to-list 'auto-mode-alist
               '(".clj$" . clojure-mode))
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
(defproject sample-program "1.0.0-SNAPSHOT"
??:description "FIXME: write"
??:dependencies [[org.clojure/clojure "1.2.0"]
?????????????????[org.clojure/clojure-contrib "1.2.0"]])




(defproject sample-program "1.0.0-SNAPSHOT"
??:description "FIXME: write"
??:dependencies [[org.clojure/clojure "1.2.0"]
?????????????????[org.clojure/clojure-contrib "1.2.0"]]
??:dev-dependencies [[swank-clojure "1.2.1"]])
$ lein deps




$ lein swank
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
(ns sample-program.core)

(def fib-seq
?????(lazy-cat [0 1] (map + (rest fib-seq) fib-seq)))

(defn fib [n]
??(nth fib-seq n))
¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð
Ad

Recommended

Lamp configuration u buntu 10.04
Lamp configuration u buntu 10.04
mikehie
?
§³§ä§Ñ§Ø§Ú§â§à§Ó§Ü§Ñ 2016-07-27 02 §¥§Ö§ß§Ú§ã §¯§Ö§Ý§ð§Ò§Ú§ß. PostgreSQL §Ú jsonb
§³§ä§Ñ§Ø§Ú§â§à§Ó§Ü§Ñ 2016-07-27 02 §¥§Ö§ß§Ú§ã §¯§Ö§Ý§ð§Ò§Ú§ß. PostgreSQL §Ú jsonb
SmartTools
?
The Magic of Hot Streaming Replication, Bruce Momjian
The Magic of Hot Streaming Replication, Bruce Momjian
Fuenteovejuna
?
Ansible - simple it automation
Ansible - simple it automation
Larry Nung
?
SCALE 15x Minimizing PostgreSQL Major Version Upgrade Downtime
SCALE 15x Minimizing PostgreSQL Major Version Upgrade Downtime
Jeff Frost
?
Refcard en-a4
Refcard en-a4
Arduino Aficionado
?
Puppet
Puppet
?ukasz Jagie??o
?
How to export import a mysql database via ssh in aws lightsail wordpress rizw...
How to export import a mysql database via ssh in aws lightsail wordpress rizw...
AlexRobert25
?
Stacki: Remove Commands
Stacki: Remove Commands
StackIQ
?
? 8? ?? ?? ??? ?? ??????
? 8? ?? ?? ??? ?? ??????
EXEM
?
Move spfile from asm to file system
Move spfile from asm to file system
raviranchi02
?
Lightweight DAS components in Perl
Lightweight DAS components in Perl
guestbab097
?
Haproxy - zastosowania
Haproxy - zastosowania
?ukasz Jagie??o
?
Perl one-liners
Perl one-liners
daoswald
?
Introduction to linux day1
Introduction to linux day1
Gourav Varma
?
I/O, You Own: Regaining Control of Your Disk in the Presence of Bootkits
I/O, You Own: Regaining Control of Your Disk in the Presence of Bootkits
CrowdStrike
?
Shell Script Disk Usage Report and E-Mail Current Threshold Status
Shell Script Disk Usage Report and E-Mail Current Threshold Status
VCP Muthukrishna
?
ATS Internals
ATS Internals
Chao Xu
?
Accumulo Summit 2015: Zookeeper, Accumulo, and You [Internals]
Accumulo Summit 2015: Zookeeper, Accumulo, and You [Internals]
Accumulo Summit
?
Python, Keras, Hello world, Installation, Binary Classification
Python, Keras, Hello world, Installation, Binary Classification
Hamed Shah-Hosseini
?
Centos config
Centos config
Muhammad Abdi
?
How to ride a whale
How to ride a whale
Vincent Vermersh
?
Send mail-oracle11g-det
Send mail-oracle11g-det
Pavel Garc¨ªa Alvarado
?
PGDay.Amsterdam 2018 - Stefan Fercot - Save your data with pgBackRest
PGDay.Amsterdam 2018 - Stefan Fercot - Save your data with pgBackRest
PGDay.Amsterdam
?
11 Things About 11gr2
11 Things About 11gr2
afa reg
?
L.A.M.P Installation Note --- CentOS 6.5
L.A.M.P Installation Note --- CentOS 6.5
William Lee
?
Crack.ba
Crack.ba
Yance Iyai
?
Firebird
Firebird
Chinsan Huang
?
¸é·¡±Ê³¢¥é¥¤¥Õ¤ò¤â¤Ã¤È¿ìÊʤË
¸é·¡±Ê³¢¥é¥¤¥Õ¤ò¤â¤Ã¤È¿ìÊʤË
sohta
?
»áÉç¤Æ?°ä±ô´ÇÂá³Ü°ù±ðʹ¤Ã¤Æ¤ß¤Æ·Ö¤«¤Ã¤¿¤³¤È
»áÉç¤Æ?°ä±ô´ÇÂá³Ü°ù±ðʹ¤Ã¤Æ¤ß¤Æ·Ö¤«¤Ã¤¿¤³¤È
Recruit Technologies
?

More Related Content

What's hot (20)

Stacki: Remove Commands
Stacki: Remove Commands
StackIQ
?
? 8? ?? ?? ??? ?? ??????
? 8? ?? ?? ??? ?? ??????
EXEM
?
Move spfile from asm to file system
Move spfile from asm to file system
raviranchi02
?
Lightweight DAS components in Perl
Lightweight DAS components in Perl
guestbab097
?
Haproxy - zastosowania
Haproxy - zastosowania
?ukasz Jagie??o
?
Perl one-liners
Perl one-liners
daoswald
?
Introduction to linux day1
Introduction to linux day1
Gourav Varma
?
I/O, You Own: Regaining Control of Your Disk in the Presence of Bootkits
I/O, You Own: Regaining Control of Your Disk in the Presence of Bootkits
CrowdStrike
?
Shell Script Disk Usage Report and E-Mail Current Threshold Status
Shell Script Disk Usage Report and E-Mail Current Threshold Status
VCP Muthukrishna
?
ATS Internals
ATS Internals
Chao Xu
?
Accumulo Summit 2015: Zookeeper, Accumulo, and You [Internals]
Accumulo Summit 2015: Zookeeper, Accumulo, and You [Internals]
Accumulo Summit
?
Python, Keras, Hello world, Installation, Binary Classification
Python, Keras, Hello world, Installation, Binary Classification
Hamed Shah-Hosseini
?
Centos config
Centos config
Muhammad Abdi
?
How to ride a whale
How to ride a whale
Vincent Vermersh
?
Send mail-oracle11g-det
Send mail-oracle11g-det
Pavel Garc¨ªa Alvarado
?
PGDay.Amsterdam 2018 - Stefan Fercot - Save your data with pgBackRest
PGDay.Amsterdam 2018 - Stefan Fercot - Save your data with pgBackRest
PGDay.Amsterdam
?
11 Things About 11gr2
11 Things About 11gr2
afa reg
?
L.A.M.P Installation Note --- CentOS 6.5
L.A.M.P Installation Note --- CentOS 6.5
William Lee
?
Crack.ba
Crack.ba
Yance Iyai
?
Firebird
Firebird
Chinsan Huang
?
Stacki: Remove Commands
Stacki: Remove Commands
StackIQ
?
? 8? ?? ?? ??? ?? ??????
? 8? ?? ?? ??? ?? ??????
EXEM
?
Move spfile from asm to file system
Move spfile from asm to file system
raviranchi02
?
Lightweight DAS components in Perl
Lightweight DAS components in Perl
guestbab097
?
Perl one-liners
Perl one-liners
daoswald
?
Introduction to linux day1
Introduction to linux day1
Gourav Varma
?
I/O, You Own: Regaining Control of Your Disk in the Presence of Bootkits
I/O, You Own: Regaining Control of Your Disk in the Presence of Bootkits
CrowdStrike
?
Shell Script Disk Usage Report and E-Mail Current Threshold Status
Shell Script Disk Usage Report and E-Mail Current Threshold Status
VCP Muthukrishna
?
ATS Internals
ATS Internals
Chao Xu
?
Accumulo Summit 2015: Zookeeper, Accumulo, and You [Internals]
Accumulo Summit 2015: Zookeeper, Accumulo, and You [Internals]
Accumulo Summit
?
Python, Keras, Hello world, Installation, Binary Classification
Python, Keras, Hello world, Installation, Binary Classification
Hamed Shah-Hosseini
?
PGDay.Amsterdam 2018 - Stefan Fercot - Save your data with pgBackRest
PGDay.Amsterdam 2018 - Stefan Fercot - Save your data with pgBackRest
PGDay.Amsterdam
?
11 Things About 11gr2
11 Things About 11gr2
afa reg
?
L.A.M.P Installation Note --- CentOS 6.5
L.A.M.P Installation Note --- CentOS 6.5
William Lee
?

Viewers also liked (13)

¸é·¡±Ê³¢¥é¥¤¥Õ¤ò¤â¤Ã¤È¿ìÊʤË
¸é·¡±Ê³¢¥é¥¤¥Õ¤ò¤â¤Ã¤È¿ìÊʤË
sohta
?
»áÉç¤Æ?°ä±ô´ÇÂá³Ü°ù±ðʹ¤Ã¤Æ¤ß¤Æ·Ö¤«¤Ã¤¿¤³¤È
»áÉç¤Æ?°ä±ô´ÇÂá³Ü°ù±ðʹ¤Ã¤Æ¤ß¤Æ·Ö¤«¤Ã¤¿¤³¤È
Recruit Technologies
?
¸ßËÙ£¡Clojure Web é_°kÈëéT
¸ßËÙ£¡Clojure Web é_°kÈëéT
Kazuki Tsutsumi
?
Light Table¤ÇClojureÈëéT
Light Table¤ÇClojureÈëéT
Tokusei Noborio
?
°ä±ô´ÇÂá³Ü°ù±ð¥·¥ó¥¿¥Ã¥¯¥¹¥Ï¥¤¥é¥¤¥¿©`¿ª°k¤«¤é¿¼¤¨¤ë¤³¤ì¤«¤é¤Î±ô¾±²õ±è¤Ë±ØÒª¤Ê¤â¤Î
°ä±ô´ÇÂá³Ü°ù±ð¥·¥ó¥¿¥Ã¥¯¥¹¥Ï¥¤¥é¥¤¥¿©`¿ª°k¤«¤é¿¼¤¨¤ë¤³¤ì¤«¤é¤Î±ô¾±²õ±è¤Ë±ØÒª¤Ê¤â¤Î
sohta
?
Âá²¹±¹²¹-´Ç²Ô±ð¤Î»°
Âá²¹±¹²¹-´Ç²Ô±ð¤Î»°
Recruit Technologies
?
°ä±ô´ÇÂá³Ü°ù±ð¤Ç¤Ï¤¸¤á¤ë³§°Õ²ÑÈëÃÅ
°ä±ô´ÇÂá³Ü°ù±ð¤Ç¤Ï¤¸¤á¤ë³§°Õ²ÑÈëÃÅ
sohta
?
±è²¹¾±³ú²¹¤Î¥ª¥ó¥é¥¤¥ó¥¸¥ã¥Ã¥¸¤òÖ§¤¨¤ë¶Ù´Ç³¦°ì±ð°ù¤È¤½¤ÎÖÜÞx
±è²¹¾±³ú²¹¤Î¥ª¥ó¥é¥¤¥ó¥¸¥ã¥Ã¥¸¤òÖ§¤¨¤ë¶Ù´Ç³¦°ì±ð°ù¤È¤½¤ÎÖÜÞx
paiza
?
œi¹ÈJVM#1 Immutable•r´ú¤Î¥×¥í¥°¥é¥ß¥ó¥°ÑÔÕZ Clojure
œi¹ÈJVM#1 Immutable•r´ú¤Î¥×¥í¥°¥é¥ß¥ó¥°ÑÔÕZ Clojure
Yoshitaka Kawashima
?
¥×¥í¥°¥é¥ß¥ó¥°ÑÔÓï°ä±ô´ÇÂá³Ü°ù±ð¤Î¥Ë¥ã¥ó¥Ñ¥¹¤Ç¤Î»îÓÃÊÂÀý
¥×¥í¥°¥é¥ß¥ó¥°ÑÔÓï°ä±ô´ÇÂá³Ü°ù±ð¤Î¥Ë¥ã¥ó¥Ñ¥¹¤Ç¤Î»îÓÃÊÂÀý
sohta
?
´³´Ç²ú³§³Ù°ù±ð²¹³¾±ð°ù¤Ç¤Ï¤¸¤á¤ë´³²¹±¹²¹µþ²¹³Ù³¦³ó¤Î¥¯¥é¥¦¥É·ÖÉ¢ŒgÐÐ
´³´Ç²ú³§³Ù°ù±ð²¹³¾±ð°ù¤Ç¤Ï¤¸¤á¤ë´³²¹±¹²¹µþ²¹³Ù³¦³ó¤Î¥¯¥é¥¦¥É·ÖÉ¢ŒgÐÐ
Yoshitaka Kawashima
?
¥­¥á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¥­¥á¤ë°ä±ô´ÇÂá³Ü°ù±ð
Yoshitaka Kawashima
?
¥¤¥Þ¥É¥­¤Î·¡³æ³¦±ð±ô¥¹¥¯¥·¥ç¤Î´é¤ê·½
¥¤¥Þ¥É¥­¤Î·¡³æ³¦±ð±ô¥¹¥¯¥·¥ç¤Î´é¤ê·½
Yoshitaka Kawashima
?
¸é·¡±Ê³¢¥é¥¤¥Õ¤ò¤â¤Ã¤È¿ìÊʤË
¸é·¡±Ê³¢¥é¥¤¥Õ¤ò¤â¤Ã¤È¿ìÊʤË
sohta
?
»áÉç¤Æ?°ä±ô´ÇÂá³Ü°ù±ðʹ¤Ã¤Æ¤ß¤Æ·Ö¤«¤Ã¤¿¤³¤È
»áÉç¤Æ?°ä±ô´ÇÂá³Ü°ù±ðʹ¤Ã¤Æ¤ß¤Æ·Ö¤«¤Ã¤¿¤³¤È
Recruit Technologies
?
¸ßËÙ£¡Clojure Web é_°kÈëéT
¸ßËÙ£¡Clojure Web é_°kÈëéT
Kazuki Tsutsumi
?
Light Table¤ÇClojureÈëéT
Light Table¤ÇClojureÈëéT
Tokusei Noborio
?
°ä±ô´ÇÂá³Ü°ù±ð¥·¥ó¥¿¥Ã¥¯¥¹¥Ï¥¤¥é¥¤¥¿©`¿ª°k¤«¤é¿¼¤¨¤ë¤³¤ì¤«¤é¤Î±ô¾±²õ±è¤Ë±ØÒª¤Ê¤â¤Î
°ä±ô´ÇÂá³Ü°ù±ð¥·¥ó¥¿¥Ã¥¯¥¹¥Ï¥¤¥é¥¤¥¿©`¿ª°k¤«¤é¿¼¤¨¤ë¤³¤ì¤«¤é¤Î±ô¾±²õ±è¤Ë±ØÒª¤Ê¤â¤Î
sohta
?
Âá²¹±¹²¹-´Ç²Ô±ð¤Î»°
Âá²¹±¹²¹-´Ç²Ô±ð¤Î»°
Recruit Technologies
?
°ä±ô´ÇÂá³Ü°ù±ð¤Ç¤Ï¤¸¤á¤ë³§°Õ²ÑÈëÃÅ
°ä±ô´ÇÂá³Ü°ù±ð¤Ç¤Ï¤¸¤á¤ë³§°Õ²ÑÈëÃÅ
sohta
?
±è²¹¾±³ú²¹¤Î¥ª¥ó¥é¥¤¥ó¥¸¥ã¥Ã¥¸¤òÖ§¤¨¤ë¶Ù´Ç³¦°ì±ð°ù¤È¤½¤ÎÖÜÞx
±è²¹¾±³ú²¹¤Î¥ª¥ó¥é¥¤¥ó¥¸¥ã¥Ã¥¸¤òÖ§¤¨¤ë¶Ù´Ç³¦°ì±ð°ù¤È¤½¤ÎÖÜÞx
paiza
?
œi¹ÈJVM#1 Immutable•r´ú¤Î¥×¥í¥°¥é¥ß¥ó¥°ÑÔÕZ Clojure
œi¹ÈJVM#1 Immutable•r´ú¤Î¥×¥í¥°¥é¥ß¥ó¥°ÑÔÕZ Clojure
Yoshitaka Kawashima
?
¥×¥í¥°¥é¥ß¥ó¥°ÑÔÓï°ä±ô´ÇÂá³Ü°ù±ð¤Î¥Ë¥ã¥ó¥Ñ¥¹¤Ç¤Î»îÓÃÊÂÀý
¥×¥í¥°¥é¥ß¥ó¥°ÑÔÓï°ä±ô´ÇÂá³Ü°ù±ð¤Î¥Ë¥ã¥ó¥Ñ¥¹¤Ç¤Î»îÓÃÊÂÀý
sohta
?
´³´Ç²ú³§³Ù°ù±ð²¹³¾±ð°ù¤Ç¤Ï¤¸¤á¤ë´³²¹±¹²¹µþ²¹³Ù³¦³ó¤Î¥¯¥é¥¦¥É·ÖÉ¢ŒgÐÐ
´³´Ç²ú³§³Ù°ù±ð²¹³¾±ð°ù¤Ç¤Ï¤¸¤á¤ë´³²¹±¹²¹µþ²¹³Ù³¦³ó¤Î¥¯¥é¥¦¥É·ÖÉ¢ŒgÐÐ
Yoshitaka Kawashima
?
¥­¥á¤ë°ä±ô´ÇÂá³Ü°ù±ð
¥­¥á¤ë°ä±ô´ÇÂá³Ü°ù±ð
Yoshitaka Kawashima
?
¥¤¥Þ¥É¥­¤Î·¡³æ³¦±ð±ô¥¹¥¯¥·¥ç¤Î´é¤ê·½
¥¤¥Þ¥É¥­¤Î·¡³æ³¦±ð±ô¥¹¥¯¥·¥ç¤Î´é¤ê·½
Yoshitaka Kawashima
?
Ad

¤È¤Ë¤«¤¯Ê¼¤á¤ë°ä±ô´ÇÂá³Ü°ù±ð

  • 23. ??(let ((buffer (url-retrieve-synchronously "http://tromey.com/elpa/package-install.el"))) ??(save-excursion ????(set-buffer buffer) ????(goto-char (point-min)) ????(re-search-forward "^$" nil 'move) ????(eval-region (point) (point-max)) ????(kill-buffer (current-buffer))))
  • 24. ;;; This was installed by package-install.el. ;;; This provides support for the package system and ;;; interfacing with ELPA, the package archive. ;;; Move this code earlier if you want to reference ;;; packages in your .emacs. (when ????(load ?????(expand-file-name "~/.emacs.d/elpa/package.el")) ??(package-initialize))
  • 25. M-x package-install <ret> slime (require 'slime)
  • 26. M-x package-install <ret> slime-repl (require 'slime-repl) (setq slime-net-coding-system 'utf-8-unix ??????slime-protocol-version 'ignore) (slime-setup '(slime-repl))
  • 27. M-x package-install <ret> clojure-mode (require 'clojure-mode) (add-to-list 'auto-mode-alist '(".clj$" . clojure-mode))
  • 32. (defproject sample-program "1.0.0-SNAPSHOT" ??:description "FIXME: write" ??:dependencies [[org.clojure/clojure "1.2.0"] ?????????????????[org.clojure/clojure-contrib "1.2.0"]]) (defproject sample-program "1.0.0-SNAPSHOT" ??:description "FIXME: write" ??:dependencies [[org.clojure/clojure "1.2.0"] ?????????????????[org.clojure/clojure-contrib "1.2.0"]] ??:dev-dependencies [[swank-clojure "1.2.1"]])
  • 33. $ lein deps $ lein swank
  • 35. (ns sample-program.core) (def fib-seq ?????(lazy-cat [0 1] (map + (rest fib-seq) fib-seq))) (defn fib [n] ??(nth fib-seq n))