[새티스 팩토리 모드 추천] PROGRAMMABLE ELEVATORS (엘레베이터)
·
새티스팩토리/모드
링크 : https://ficsit.app/mod/Day7R3XBszaJ8j 설명 : 프로그래밍 가능한 엘레베이터를 추가해준다. 영상 : random gamer 리뷰 유튜브 영상 : https://www.youtube.com/watch?v=VhVtUHHTl6s 질문 : Where can I find the elevators? The Mk1 elevator (3 floors/40m) is unlocked in tier 3, and the Mk2 (10 floors/400m) is in tier 5. After unlocking the milestones, they can be found under the Organization tab in the build gun. 어디서 엘레베이터를 찾을 수 있나요? M..
[새티스 팩토리 모드 추천] STORAGE TELEPORTER
·
새티스팩토리/모드
링크 : https://ficsit.app/mod/BZPHaCmFVYcNv3 Storage Teleporter - SMR Teleport your storage from one side of the map to the other ficsit.app 설명 : 자원을 텔레포트 시킨다 긴말 필요없이 사진으로 보여주겠다. 사진 : 리뷰 영상 : (출처 : Random Gamer) https://www.youtube.com/watch?v=QV6uV4Hypss
[Node.js + html/css/js] 웹 서버 만들어 보기
·
제작/웹사이트
node.js 코드 : var express = require('express') , http = require('http') var app = express(); app.set('port',process.env.PORT || 3000); app.use(express.static(__dirname + '/public')); http.createServer(app).listen(3000,function() { console.log('웹 서버가 시작되었습니다. : ' + app.get('port')); }); npm install express --save //express 모듈을 사용을 위해 터미널에 쳐준다. 웹사이트 : https://goormhomepagebackend-qboae.run.goorm.io..
[새티스 팩토리 공식 영상] PAC-IT New feature teaser
·
새티스팩토리/정보
영상 링크 : https://www.youtube.com/watch?v=hvdlZ6e_o5Q 물과 원유(로 추정) 가 들어가는 건물, PAC-IT가 새로 추가될 예정이다.
[새티스 팩토리 공식 영상] Better Jump Pad
·
새티스팩토리/정보
영상 링크 : https://www.youtube.com/watch?v=oZwZtn4RHJg 새로운 점프패드가 나오는 것 같습니다! 각도 조절까지 가능한!
[새티스 팩토리 모드 추천] ExoSuit Mod (엑소슈트 모드)
·
새티스팩토리/모드
링크 : https://ficsit.app/mod/AHRKqyodbBkGG1 ExoSuit Mod - SMR Adds an 'ExoSuit' which functions as the jetpack and blade runners ficsit.app 설명 : This mod adds an 'ExoSuit' which acts like both the jetpack and the blade runners at the same time. 이 모드는 Exo Suit를 추가한다. 제트팩과 블레이드 러너를 합쳐진 모습이다. Great! 영상 : https://www.youtube.com/watch?v=_7c_symNFjY
[자작시 에피소드 7] 강물 위를 뜻없이 걸으며
·
일상/자작시
뜻없이 떠다닌다 강물위를 뜻없이 떠다닌다 생각없이 그저 떠다닌다 끝없이 떠나간다 손잡았던 그날이 생각난다 생각뿐인 이 날 안에서 파란 잎새가 하나 강물 위를 토옥하고 내려앉을 때면 나는 흔들린다 작은 새 한마리가 물을 토옥하고 칠 때면 나는 흔들린다 그래도 나는 제자리 제자리 그 자리 지키며 나를 꼬옥 안는다 그렇게 뜻이 없지도 않았나 보다 이렇게 나를 안아주고 있는 걸 보니 그렇게 맘이 없던 것도 아니었나봐 이렇게 나를 봐주고 있는 걸 보니 아프기만 했던 돌덩이가 어느 샌가 나를 단단하게 해주었네 뜻없이 강물 위를 걸을 때면 한없이 끝없이 걸을 때면 나는 이렇게 앞으로 간다 후련하게 강물 위를 걸을 때면 잊지 않으리 그 날들을 나는 이렇게 앞으로 나간다 [에피소드] [자작시 에피소드 6] 강 아래 [자..
[C#] 행렬 계산기 (6) - 전체 코드
·
제작/기타 프로그램
코드 : using System; namespace matrixNamespace { // Matrix 클래스 class Matrix { //열과 행 변수 int row; int column; // 행렬 변수 (가변 배열로 이루어져있다) int[][] matrix; //생성자 (매개변수가 없는 것) public Matrix() { Console.WriteLine("Matrix Create..."); Console.Write("input the Row, Column (ex. 3 3) : "); string input = Console.ReadLine(); string[] row_column = input.Split(' '); // 행과 열을 입력받아 인스턴스 변수에 할당한다. this.row = Conver..
[C#] 행렬 계산기 (5) - 곱셈 계산
·
제작/기타 프로그램
코드 : static public Matrix Multiplex(Matrix m1, Matrix m2) { //if(m1.row != m2.column) return; Matrix res = new Matrix(m1.row,m1.column); for(int i = 0; i < m1.row; i++) { for(int j = 0; j < m1.column; j++) { for(int k = 0; k < m1.column; k++) { res.matrix[i][j] += m1.matrix[i][k] * m2.matrix[k][j]; } } } return res; }
[C#] 행렬 계산기 (4) - 이차원 배열로 더 간단하게 표현
·
제작/기타 프로그램
코드 : using System; namespace matrixNamespace { class Matrix { int row; int column; static int[][] matrix; public Matrix() { Console.WriteLine("Matrix Create..."); Console.Write("input the Row, Column (ex. 3 3) : "); string input = Console.ReadLine(); string[] row_column = input.Split(' '); this.row = Convert.ToInt32(row_column[0]); this.column = Convert.ToInt32(row_column[1]); matrix = new int[r..