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
################## | |
### config.yml ### | |
################## | |
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: circleci/python:3.6 | |
steps: |
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
public function postForm(Request $request){ | |
$validator = \Validator::make($request->all(), [ | |
'name' => 'required', | |
'age' => 'required', | |
'email' => 'required|unique:forms', | |
'phone' => 'required|unique:forms', | |
'gender' => 'required', | |
'state.*.name' => 'required', |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace printOut | |
{ | |
class printer |
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
@ECHO OFF | |
ECHO this file was created with a batch program> myfile.txt | |
ECHO THIS TEXT IS TO BE APPENDED TO MY ALREADY CREATED FILE>> myfile.txt | |
cd "E:\music" | |
start Akon_Freedom.mp3 | |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace test_fail_with_grades | |
{ | |
class Program | |
{ |
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
//prompt user to enter coefficients of the quadratic equation | |
Enter value for a | |
Enter value for b | |
Enter value for c | |
square_b= b*b | |
neg_b= b* (-1) | |
two_a= 2*a | |
neg_four_a_c= 4*a*c*(-1) |
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
ALGORITHM | |
read user input from user | |
feet= ReadLine(); | |
cm=feet * 30.48 |