Skip to content

Instantly share code, notes, and snippets.

View fu-sen's full-sized avatar
🎈
🎈😍

BALLOON | FU-SEN fu-sen

🎈
🎈😍
View GitHub Profile
The MIT License (MIT)
Copyright (c) 2012 Keiichi Shiga (BALLOON | FU-SEN)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The MIT License (MIT)
Copyright (c) 1995 Keiichi Shiga (BALLOON | FU-SEN)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The MIT License (MIT)
Copyright (c) 1995-2015 Keiichi Shiga (BALLOON | FU-SEN)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The MIT License (MIT)
Copyright (c) 1995-2006 Keiichi Shiga (BALLOON | FU-SEN)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The MIT License (MIT)
Copyright (c) 2003 Keiichi Shiga (BALLOON | FU-SEN)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The MIT License (MIT)
Copyright (c) 2003-2015 Keiichi Shiga (BALLOON | FU-SEN)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The MIT License (MIT)
Copyright (c) 1991 Keiichi Shiga (BALLOON | FU-SEN)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The MIT License (MIT)
Copyright (c) 2016 Keiichi Shiga (BALLOON | FU-SEN)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
<?php
/*
IchigoJam web での動作は次の 1 行が必要です。
mj.15j.run は .htaccess でこれを入れています。
header("Access-Control-Allow-Origin: *");
*/
header('Content-Type: text/plain');
@fu-sen
fu-sen / logo.bas
Last active December 18, 2019 14:22
拡大文字サンプル - PC-G850 シリーズ用 https://poke-com.jimdofree.com/
10 CLS
20 PRINT "PC-G850V"
30 FOR Y=6 TO 0 STEP -1
40 FOR X=46 TO 0 STEP -1
50 IF POINT (X,Y)=1 GOTO 80
60 LINE (X*3,Y*6)-(X*3+2,Y*6+5),R,BF
70 GOTO 90
80 LINE (X*3,Y*6)-(X*3+2,Y*6+5),S,BF
90 NEXT X
100 NEXT Y