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
# ... | |
djsetup() { | |
if [ -z "$1" ]; then | |
echo "Error: No project name provided." | |
echo "Usage: djsetup project_name" | |
return 1 # Exit the function with an error status | |
fi | |
~/bin/djsetup.zsh "$1" && cd ~/code/python/django/"$1" |
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
-module(ex1). | |
-author("Antonio Cangiano"). | |
-export([area/1, bits/1, bits_tr/1, enclose/1, perimeter/1]). | |
perimeter({circle, {_X, _Y}, R}) -> 2 * math:pi() * R; | |
perimeter({rectangle, {_X, _Y}, H, W}) -> 2 * (H + W); | |
perimeter({triangle, {_X1, _Y1} = A, {_X2, _Y2} = B, {_X3, _Y3} = C}) -> | |
AB = segment(A, B), |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
ROOMS | |
09:00 - 13:00 D1-913 | |
13:00 - 17:00 C1-911 | |
LINKS | |
- https://bigdatauniversity.com/courses/data-science-101/ | |
- https://try.github.io/levels/1/challenges/1 | |
- http://learngitbranching.js.org/ |
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
# Some Ruby code | |
str = "Hello, World!" | |
puts "#{str} is #{str.size} characters long" |
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
<table border="0" width="100%" cellpadding="10" cellspacing="0" style="vertical-align: top;"><tr><td width='130'><a href="http://www.amazon.com/Programming-Elixir-1-2-Functional-Concurrent/dp/1680501666%3FSubscriptionId%3D0BZQ5SJTYZCHFG60RT02%26tag%3Dnosearch-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1680501666"><img src="http://ecx.images-amazon.com/images/I/41lxYskiYXL._SL160_.jpg" border="0" width="120"></a></td> | |
<td><span style="font-size: 18px; color:#C5B358; font-weight: bold; margin-bottom: 5px;">★ Our Staff Pick ★</span><br> | |
<a href="http://www.amazon.com/Programming-Elixir-1-2-Functional-Concurrent/dp/1680501666%3FSubscriptionId%3D0BZQ5SJTYZCHFG60RT02%26tag%3Dnosearch-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1680501666"><strong>Programming Elixir 1.2: Functional |> Concurrent |> Pragmatic |> Fun</strong></a> | |
<br>Stores: <a href="http://www.amazon.com/Programming-Elixir-1-2-Functional-Concurrent/dp/1680501666%3FSu |
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
<form action="" method="post"> | |
<div class="field-group"> | |
<label for="email" style="margin-top:15px">one)</label> | |
<input type="text" id="email" name="would" tabindex="2" value="how often would you use innout mail?" onclick="this.value='';" onblur="if (this.value == '') {this.value = 'how often would you use innout mail?';}" /> | |
</div> | |
<div class="field-group"> | |
<label for="email" style="margin-top:15px">two)</label> | |
<input type="text" id="email" name="much" tabindex="3" value="how much would you pay for this service?" onclick="this.value='';" onblur="if (this.value == '') {this.value = 'how much would you pay for this service?';}" /> | |
</div> | |
<div id="form-button-group"> |
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
select * from EMPLOYEE where LASTNAME = ? |
NewerOlder