Skip to content

Instantly share code, notes, and snippets.

View fjzzq2002's full-sized avatar

Ziqian Zhong fjzzq2002

  • Cambridge, MA
  • 06:18 (UTC -04:00)
View GitHub Profile
@tkon99
tkon99 / name.js
Last active April 19, 2024 14:38
Random Name Generator for Javascript
/*
(c) by Thomas Konings
Random Name Generator for Javascript
*/
function capFirst(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
function getRandomInt(min, max) {
@baishuai
baishuai / barber_sync.c
Created April 20, 2014 10:18
Ucore中使用信号量和管程解决理发师问题
#include <stdio.h>
#include <proc.h>
#include <sem.h>
#include <monitor.h>
#include <assert.h>
#define Chair 5
#define SLEEP_TIME 4
//----------理发师问题 使用信号量解法