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
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: [ | |
{ |
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
<?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 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
# 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 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
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 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
https://askubuntu.com/questions/55868/installing-broadcom-wireless-drivers |
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
% G. M. Nazmul Hossain Somrat ASH1201021M | |
start([3,3,left,0,0]). | |
% initial state | |
goal([0,0,right,3,3]). | |
% final state | |
% is this state a legal one? | |
legal(CL,ML,CR,MR) :- |
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
How can i start 3d game development on android ? | |
Which requirement is necessary ? | |
Is this possible to develope a 3d game in android studio ? | |
Java with android | |
C# with windows | |
Xamarian with c# cross platform (iOS+android+windows) | |
Unity 3d support android studio ?? | |
Give me a suggestion with the perception of the world?? | |
Or |
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
#include <stdio.h> | |
#include <math.h> | |
#define MAX 1900000 | |
char prime[MAX]; | |
int digitprime[MAX]; | |
void seive() | |
{ | |
int i,j,k,temp,update,m,d,sum; |
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
#include <iostream> | |
#include <cstdio> | |
using namespace std; | |
int main() | |
{ | |
unsigned long a,b,count,carry,m; | |
while(scanf("%ld%ld",&a,&b)==2 && a!=0 && b!= 0) | |
{ | |
count=0,m=0; | |
while(a||b ) |
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
#include <iostream> | |
#include <cstdio> | |
using namespace std; | |
int main() | |
{ | |
int i=0,k=0,n,j=0; | |
while(cin>>n) | |
{ | |
if(n<2000) | |
break; |
NewerOlder