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://askubuntu.com/questions/55868/installing-broadcom-wireless-drivers |
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 pfo.id as order_id, oli.id, oli.qty as required_qty, count(assigned_si.id) as assigned_qty, sum(olivs.confirmed_qty) as confirmed_qty | |
from ( | |
select * | |
from orders | |
where status = 5 | |
) as pfo | |
inner join order_line_items as oli on pfo.id = oli.order_id | |
left join ( | |
select * | |
from stock_items |
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
# nginx | |
# php 7.1 & php 5.6 | |
# mysql 5.7 | |
# node js v9 | |
# docker ( ce ) | |
# composer | |
# laravel installer | |
# tld resolver | |
# oh-my-zsh | |
# sublime text 3 |
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
<?php | |
fscanf(STDIN, "%d %d", $number, $time); | |
for ($i = 1; $i <= $time; $i++) { | |
$lastDigit = $number % 10 ; | |
if($lastDigit != 0) { | |
$number -= 1; | |
} else { | |
$number /= 10; |
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
We would like you to create a ToDo REST-Service Application. | |
Technology: Java, SpringBoot, SpringMVC, Hibernate, JPA, H2 Database | |
Todo | |
{ | |
id [mandatory] | |
name [mandatory] | |
description | |
tasks: [ | |
{ |
OlderNewer