• Discussion
  • Lecture
  • Blockchain
  • Backend
    • Laravel
    • NodeJS
    • PHP
  • Frontend
    • CSS
    • HTML
    • jQuery
    • React.js
    • UI/UX
    • Vue.js
  • Others
    • 3rd Party Services
    • AI/ML
    • SEO
    • Unity
    • WordPress
    • DigitalGeek
  • DevOps
    • Git
  • Database
    • MongoDB
    • MySql
    • PostgreSQL

HongGuan Blog

Navigation
  • Discussion
  • Lecture
  • Blockchain
  • Backend
    • Laravel
    • NodeJS
    • PHP
  • Frontend
    • CSS
    • HTML
    • jQuery
    • React.js
    • UI/UX
    • Vue.js
  • Others
    • 3rd Party Services
    • AI/ML
    • SEO
    • Unity
    • WordPress
    • DigitalGeek
  • DevOps
    • Git
  • Database
    • MongoDB
    • MySql
    • PostgreSQL
Discussion Featured Javascript

Introduction of Hammer.js

Backend Discussion Featured Laravel NodeJS Others

Ngrok for webhook testing.

CSS Featured Frontend HTML UI/UX

Sorting images automatically in HTML, and implement the gallery module

Discussion Featured

Brief overview of Hacking Attacks

Parallax
Discussion Featured Frontend Javascript UI/UX

Introduction to popular front end js libraries for better UI/UX

Backend Discussion Featured

PHP Traits

Backend Featured Lecture NodeJS

Introduction to Redis

solidity-contract
Blockchain Discussion Featured

Difference of External and Public modifier in Solidity

Backend Discussion Featured Javascript NodeJS

How to check connection status of websocket?

Blockchain Discussion Featured Lecture

Introduction to Hyperledger

Featured Lecture

Progressive Web App

Backend Discussion Featured Frontend

Algolia Search

Discussion Featured Javascript

Introduction of Hammer.js

Backend Discussion Featured Laravel NodeJS Others

Ngrok for webhook testing.

CSS Featured Frontend HTML UI/UX

Sorting images automatically in HTML, and implement the gallery module

Discussion Featured

Brief overview of Hacking Attacks

Parallax
Discussion Featured Frontend Javascript UI/UX

Introduction to popular front end js libraries for better UI/UX

Backend Discussion Featured

PHP Traits

Backend Featured Lecture NodeJS

Introduction to Redis

solidity-contract
Blockchain Discussion Featured

Difference of External and Public modifier in Solidity

Backend Discussion Featured Javascript NodeJS

How to check connection status of websocket?

Blockchain Discussion Featured Lecture

Introduction to Hyperledger

Featured Lecture

Progressive Web App

Backend Discussion Featured Frontend

Algolia Search

prev
next
Discussion Unity

AR comes to Android with the ARCore SDK

by Vladupdated on February 25, 2019February 24, 2019Leave a Comment on AR comes to Android with the ARCore SDK

Unity and Google have a shared vision of democratizing Virtual and Augmented Reality development. Unity’s XR team has been working hand-in-hand with the Immersive Computing team at Google to overcome some of the most difficult challenges AR development presents. One of the biggest hurdles that developers face is ensuring that their apps and experiences are …

Read More
Discussion

javascript reporting server

innovative and unlimited reporting based on javascript templating engines pdf, excel, docx, html, csv Various output formats can be produced just from the html and javascript open source, cross-platform Templating engines for powerful dynamic layouts, custom javasript hooks for data fetching, full support for the latest css and javascript html designer jsreport includes web based …

by Nikita-KICon November 28, 2021November 28, 2021Leave a Comment on javascript reporting server
Angular Discussion

Angular DevTools

Angular DevTools is a Chrome extension that provides debugging and profiling capabilities for Angular applications. Angular DevTools supports Angular v9 and later, with Ivy enabled. You can find Angular DevTools in the Chrome Web Store. After installing Angular DevTools, find the extension under the Angular tab in Chrome DevTools. When you open the extension, you’ll see …

by Ivicaupdated on November 28, 2021November 28, 2021Leave a Comment on Angular DevTools
Backend Database Discussion PHP

persist() and flush() – Symfony

Call $entityManager->persist() and pass the object to save. And then $entityManager->flush(). use Doctrine\ORM\EntityManagerInterface; class QuestionController extends AbstractController { public function new(EntityManagerInterface $entityManager) { $entityManager->persist($question); $entityManager->flush(); } } Yes, you need both lines. The persist() call simply says: Hey Doctrine! Please be “aware” of this Question object. The persist line does not make any queries. The INSERT query happens when we call flush(). The flush() method says: Yo Doctrine! Please look at all of the objects that you are “aware” of and make …

by Apolloon November 14, 2021November 14, 2021Leave a Comment on persist() and flush() – Symfony
Disable keyboard shortcuts in Chrome browser
Discussion

Disable keyboard shortcuts in Chrome browser

In development or personal, sometimes you may need to use some shortcuts in webpages. But if this shortcut is same as default shortcuts in Chrome, there can be problem. For example, if you want to use CTRL + T, it is already used to open new tab in Chrome browser. Unfortunately in Chrome, there is …

by Ivicaupdated on November 14, 2021November 14, 2021Leave a Comment on Disable keyboard shortcuts in Chrome browser
Discussion

SAML & OpenIdConnector Authentication of OneLogin

Overview of SAML OneLogin has implemented and open-sourced SAML toolkits for five web development platforms:   PHP   Python   Ruby   Java   .NET Security Assertion Markup Language (SAML) is a standard for logging users into applications based on their sessions in another context. This single sign-on (SSO) login standard has significant advantages over logging in using a username/password: No need …

by administratorupdated on October 17, 2021October 17, 2021Leave a Comment on SAML & OpenIdConnector Authentication of OneLogin
How to Zip files in Node.js
Discussion

How to Zip files in Node.js

Sometimes you need to zip folder or files in Node.js backend development. Jszip is for creating, reading and editing .zip files with JavaScript, with a lovely and simple API. See https://stuk.github.io/jszip for all the documentation.

by Aslanon September 26, 2021September 26, 2021Leave a Comment on How to Zip files in Node.js
Discussion

API Blueprint to Swagger Converter

API Blueprint is simple and accessible to everybody involved in the API lifecycle. Its syntax is concise yet expressive. With API Blueprint you can quickly design and prototype APIs to be created or document and test already deployed mission-critical APIs. As an example, Apiary also uses API Blueprint. We can convert API Blueprint to Swagger …

by Ivicaupdated on September 19, 2021September 19, 2021Leave a Comment on API Blueprint to Swagger Converter
Frontend Javascript NodeJS

Luxon

Luxon is a library for dealing with dates and times in JavaScript. Features A nice API for working with datetimes Interval support (from time x to time y) Duration support (14 days, 5 minutes, 33 seconds) Parsing and Formatting datetimes, intervals, and durations Internationalization of strings using the Intl API Detailed and unambiguous math operations Built-in handling of time zones Partial support …

by Stanon September 13, 2021September 13, 2021Leave a Comment on Luxon
How to simplify website localization using POEditor
Discussion

How to simplify website localization using POEditor

When you make localization of website, you need language specific configuration files for the supported languages. POEditor is a useful SaaS service to make the configuration files easily. Using POEditor, you can build dictionary of the texts that are used in your website for each supported language. And can export them into a lot of …

by Aslanupdated on September 5, 2021September 5, 2021Leave a Comment on How to simplify website localization using POEditor
Discussion

npm link

A command to symlink a package folder. Synopsis npm link (in package dir)npm link [<@scope>/]<pkg>[@<version>]alias: npm ln Description Package linking is a two-step process. First, npm link in a package folder will create a symlink in the global folder {prefix}/lib/node_modules/<package> that links to the package where the npm link command was executed. It will also link any bins in the package …

by Tapioupdated on September 5, 2021September 5, 2021Leave a Comment on npm link

Posts navigation

Page 1 Page 2 … Page 66

About Our Company

Our developers have strongest web, mobile and hardware development skills that help you greatfully for your real business.

- Joao Barbosa -
June 2025
M T W T F S S
« Nov    
 1
2345678
9101112131415
16171819202122
23242526272829
30  

Recent Posts

  • javascript reporting server November 28, 2021
  • Angular DevTools November 28, 2021
  • persist() and flush() – Symfony November 14, 2021
  • Disable keyboard shortcuts in Chrome browser November 14, 2021
  • SAML & OpenIdConnector Authentication of OneLogin October 17, 2021

Recent Comments

  • buy CBD oil on Introduction to popular front end js libraries for better UI/UX
  • budget denver hotels on D3.js and Basics
  • erotik on D3.js and Basics
  • escort bayan on D3.js and Basics
  • erotik on D3.js and Basics

Categories

  • AWS (3)
  • Backend (136)
    • Laravel (28)
    • NodeJS (48)
    • PHP (21)
    • Ruby On Rails (3)
    • Serverless (3)
  • Blockchain (28)
  • C# (1)
    • ASP.NET Core (1)
  • Database (19)
    • DynamoDB (1)
    • MongoDB (5)
    • MySql (4)
    • PostgreSQL (6)
  • DevOps (60)
    • Git (12)
  • Discussion (422)
  • Featured (12)
  • Flutter (1)
  • Frontend (169)
    • Angular (15)
    • CSS (19)
    • Data Visualization (4)
    • HTML (12)
    • jQuery (14)
    • React.js (71)
    • Svelte (1)
    • UI/UX (13)
    • Vue.js (20)
  • Ionic (2)
  • Javascript (101)
  • Lecture (71)
  • Linux (5)
  • Mobile (4)
    • Android (2)
    • ios (2)
  • Others (94)
    • 3rd Party Services (24)
    • AI/ML (1)
    • DigitalGeek (4)
    • Modular Programming (1)
    • SEO (3)
    • Shopify (1)
    • Unity (1)
    • WordPress (9)
  • Payment Integration (1)
  • Performance (1)
  • Python (3)
    • Django (1)
  • React Native (10)
    • Android (2)
  • Security (11)

Archives

Newsletter

Best Developers for Best Results

Don’t just improve your website. Enhance it, With HongGuan’s talented team.
HongGuan has tools and technology to help global businesses achieve their IT goals, overcome organizational challenges, adapt to rapid changes in technology, and excel in the global marketplace.

New Title

  • Blockchain28 Post(s)
  • Discussion422 Post(s)
  • Featured12 Post(s)
  • Lecture71 Post(s)

Popular Posts

  • BackendDiscussion

    MailSlurper

    November 9, 2020
  • Angular

    About agGrid

    March 24, 2019
  • FeaturedLecture

    Progressive Web App

    January 24, 2019

Contact Us

  • hongguantech@outlook.com
Copyright 2024 Hongguan Technology Co., Ltd - All Rights Reserved
TOP