Skip to content

Instantly share code, notes, and snippets.

View vietduchelo's full-sized avatar

VanKhoa28101996 vietduchelo

View GitHub Profile
In summary, SenseDrill is an excellent choice for any marketers, especially beginners. As I mentioned above, it is not only useful but also easy to use. It is the best time for us to get a real way to build massive profit-pulling, automated AdSense sites without writing articles, SEO, Backlinking or wasting time and cash. And how we can do that is depending on your choice today on SenseDrill.
After the date of the launch event, the price will increase. Moreover, you also have the 30-day money back guarantee to ensure that you only have to pay if you see it is right for you. So, you should decide now instead of hesitating too long.
At the end of my SenseDrill Review, I want to say thank you for your reading. I hope you find something useful for you to support you in decision making. If you can, don’t forget to share your experience with me. Good luck!
Hi ;
I need to update many of my current customer website address details in bulk but the bulk data upload will not actually overwrite existing customer details.
I think that the API is the best way of doing this, using PUT requests to update (overwrite) current customer fields.
I have managed to POST JSON Data to make a new contact in postman, but
a PUT request returns the following error without the contact id in the request url,
{
"status": 404,
// Behavior Subject
// a is an initial value. if there is a subscription
// after this, it would get "a" value immediately
let bSubject = new BehaviorSubject("a");
bSubject.next("b");
bSubject.subscribe((value) => {
console.log("Subscription got", value); // Subscription got b,
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-heroes',
templateUrl: './heroes.component.html',
styleUrls: ['./heroes.component.css']
})
export class HeroesComponent implements OnInit {
constructor() { }
var express = require('express');
var bodyParser = require('body-parser');
var app = express();
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
////////////////////////////////////////////
app.get('/user/:xuay', function (req, res) {
var id = req.params.xuay; // getid truyen vao.
console.log(id);
console.log("Nhan mot GET Request ve Homepage");
{
"name": "code",
"description": "assertion library",
"version": "5.2.0",
"repository": "git://github.com/hapijs/code",
"main": "lib/index.js",
"keywords": [
"test",
"expect",
"assertion"
<div *ngIf="hero">
<h2>{{ hero.name | uppercase }} Details</h2>
<div><span>id: </span>{{hero.id}}</div>
<div>
<label>name:
<input [(ngModel)]="hero.name" placeholder="name"/>
</label>
</div>
var router = require('express').Router();
var authController = require('../controller/auth.controller');
router.post('/login', login);
module.exports = router;
function login(req, res, next) {
var email = req.body.email;
var password = req.body.password;
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
int a,b,c;
cout << "nhap 3 so a,b,c : ";
cin >> a >> b >> c;
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<h1>{{title}}</h1>
<h2>My favorite hero is: {{myHero}}</h2>
`
})
export class AppComponent {